기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.
AWS Device Farm의 Appium Java TestNG 웹 애플리케이션 문제 해결
다음 항목에서는 Appium Java TestNG 웹 응용 프로그램 테스트를 업로드하는 동안 발생하는 오류 메시지를 나열하고 각 오류를 해결하기 위한 해결 방법을 권장합니다.
APPIUM_WEB_JAVA_TESTNG_TEST_PACKAGE_UNZIP_FAILED
다음 메시지가 표시되면 다음 단계에 따라 문제를 해결하세요.
주의
테스트 ZIP 파일을 열 수 없습니다. 파일이 유효한지 확인하고 다시 시도하세요.
오류 없이 테스트 패키지의 압축을 풀 수 있는지 확인하세요. 다음 예제에서 패키지의 이름은 zip-with-dependencies.zip 입니다.
-
작업 디렉터리에 테스트 패키지를 복사한 후 다음 명령을 실행합니다.
$ unzip zip-with-dependencies.zip
-
패키지 압축을 성공적으로 푼 후에는 다음 명령을 실행하여 작업 디렉터리 트리 구조를 찾을 수 있습니다.
$ tree .
유효한 Appium Java JUnit 패키지는 다음과 같은 출력을 생성해야 합니다.
. |— acme-android-appium-1.0-SNAPSHOT.jar (this is the JAR containing everything built from the ./src/main directory) |— acme-android-appium-1.0-SNAPSHOT-tests.jar (this is the JAR containing everything built from the ./src/test directory) |— zip-with-dependencies.zip (this .zip file contains all of the items) `— dependency-jars (this is the directory that contains all of your dependencies, built as JAR files) |— com.some-dependency.bar-4.1.jar |— com.another-dependency.thing-1.0.jar |— joda-time-2.7.jar `— log4j-1.2.14.jar
자세한 내용은 Appium 테스트 및 AWS Device Farm 단원을 참조하십시오.
APPIUM_WEB_JAVA_TESTNG_TEST_PACKAGE_DEPENDENCY_DIR_MISSING
다음 메시지가 표시되면 다음 단계에 따라 문제를 해결하세요.
주의
테스트 패키지 내에서 dependency-jars 디렉터리를 찾을 수 없습니다. 테스트 패키지의 압축을 풀고 dependency-jars 디렉터리가 패키지 내에 있는지 확인한 다음 다시 시도하세요.
다음 예제에서 패키지의 이름은 zip-with-dependencies.zip 입니다.
-
작업 디렉터리에 테스트 패키지를 복사한 후 다음 명령을 실행합니다.
$ unzip zip-with-dependencies.zip
-
패키지 압축을 성공적으로 푼 후에는 다음 명령을 실행하여 작업 디렉터리 트리 구조를 찾을 수 있습니다.
$ tree .
Appium Java JUnit 패키지가 유효하면
dependency-jars
작업 디렉터리 내의 디렉터리입니다.. |— acme-android-appium-1.0-SNAPSHOT.jar (this is the JAR containing everything built from the ./src/main directory) |— acme-android-appium-1.0-SNAPSHOT-tests.jar (this is the JAR containing everything built from the ./src/test directory) |— zip-with-dependencies.zip (this .zip file contains all of the items) `—
dependency-jars
(this is the directory that contains all of your dependencies, built as JAR files) |— com.some-dependency.bar-4.1.jar |— com.another-dependency.thing-1.0.jar |— joda-time-2.7.jar `— log4j-1.2.14.jar자세한 내용은 Appium 테스트 및 AWS Device Farm 단원을 참조하십시오.
APPIUM_WEB_JAVA_TESTNGTEST_PACKAGE__JARMISSING_IN_DEPENDENCY_DIR
다음 메시지가 표시되면 다음 단계에 따라 문제를 해결하세요.
주의
dependency-jars 디렉터리 트리에서 JAR 파일을 찾을 수 없습니다. 테스트 패키지의 압축을 푼 다음 dependency-jars 디렉터리를 열고 디렉터리에 JAR 파일이 하나 이상 있는지 확인한 다음 다시 시도하세요.
다음 예제에서 패키지의 이름은 zip-with-dependencies.zip 입니다.
-
작업 디렉터리에 테스트 패키지를 복사한 후 다음 명령을 실행합니다.
$ unzip zip-with-dependencies.zip
-
패키지 압축을 성공적으로 푼 후에는 다음 명령을 실행하여 작업 디렉터리 트리 구조를 찾을 수 있습니다.
$ tree .
Appium Java JUnit 패키지가 유효한 경우 하나 이상의
jar
내 파일dependency-jars
디렉터리.. |— acme-android-appium-1.0-SNAPSHOT.jar (this is the JAR containing everything built from the ./src/main directory) |— acme-android-appium-1.0-SNAPSHOT-tests.jar (this is the JAR containing everything built from the ./src/test directory) |— zip-with-dependencies.zip (this .zip file contains all of the items) `— dependency-jars (this is the directory that contains all of your dependencies, built as JAR files) |—
com.some-dependency.bar-4.1.jar
|—com.another-dependency.thing-1.0.jar
|—joda-time-2.7.jar
`—log4j-1.2.14.jar
자세한 내용은 Appium 테스트 및 AWS Device Farm 단원을 참조하십시오.
APPIUM_WEB_JAVA_TESTNG_TEST_PACKAGE_TESTS_JAR_FILE_MISSING
다음 메시지가 표시되면 다음 단계에 따라 문제를 해결하세요.
주의
테스트 패키지에서 *-tests.jar 파일을 찾을 수 없습니다. 테스트 패키지의 압축을 풀고 패키지에 *-tests.jar 파일이 하나 이상 있는지 확인한 다음 다시 시도하세요.
다음 예제에서 패키지의 이름은 zip-with-dependencies.zip 입니다.
-
작업 디렉터리에 테스트 패키지를 복사한 후 다음 명령을 실행합니다.
$ unzip zip-with-dependencies.zip
-
패키지 압축을 성공적으로 푼 후에는 다음 명령을 실행하여 작업 디렉터리 트리 구조를 찾을 수 있습니다.
$ tree .
Appium Java JUnit 패키지가 유효한 경우 하나 이상의
jar
파일 형식acme-android-appium-1.0-SNAPSHOT-tests.jar
이 예제에서는 파일 이름은 다를 수 있지만 다음으로 끝나야 합니다.–tests.jar
.. |— acme-android-appium-1.0-SNAPSHOT.jar (this is the JAR containing everything built from the ./src/main directory) |—
acme-android-appium-1.0-SNAPSHOT-tests.jar
(this is the JAR containing everything built from the ./src/test directory) |— zip-with-dependencies.zip (this .zip file contains all of the items) `— dependency-jars (this is the directory that contains all of your dependencies, built as JAR files) |— com.some-dependency.bar-4.1.jar |— com.another-dependency.thing-1.0.jar |— joda-time-2.7.jar `— log4j-1.2.14.jar자세한 내용은 Appium 테스트 및 AWS Device Farm 단원을 참조하십시오.
APPIUM_WEB_JAVATESTNG_TEST__PACKAGE_CLASS_FILEMISSING_IN_TESTS_JAR
다음 메시지가 표시되면 다음 단계에 따라 문제를 해결하세요.
주의
테스트 파일에서 클래스 JAR 파일을 찾을 수 없습니다. 테스트 패키지의 압축을 푼 다음 테스트 JAR 파일의 jar를 해제JAR하고 파일 내에 클래스 파일이 하나 이상 있는지 확인한 다음 다시 시도하세요.
다음 예제에서 패키지의 이름은 zip-with-dependencies.zip 입니다.
-
작업 디렉터리에 테스트 패키지를 복사한 후 다음 명령을 실행합니다.
$ unzip zip-with-dependencies.zip
-
패키지 압축을 성공적으로 푼 후에는 다음 명령을 실행하여 작업 디렉터리 트리 구조를 찾을 수 있습니다.
$ tree .
다음과 같은 jar 파일을 하나 이상 찾아야 합니다.
acme-android-appium-1.0-SNAPSHOT-tests.jar
이 예제에서는 파일 이름은 다를 수 있지만 다음으로 끝나야 합니다.–tests.jar
.. |— acme-android-appium-1.0-SNAPSHOT.jar (this is the JAR containing everything built from the ./src/main directory) |—
acme-android-appium-1.0-SNAPSHOT-tests.jar
(this is the JAR containing everything built from the ./src/test directory) |— zip-with-dependencies.zip (this .zip file contains all of the items) `— dependency-jars (this is the directory that contains all of your dependencies, built as JAR files) |— com.some-dependency.bar-4.1.jar |— com.another-dependency.thing-1.0.jar |— joda-time-2.7.jar `— log4j-1.2.14.jar -
jar 파일에서 파일을 추출하려면 다음 명령을 실행합니다.
$ jar xf acme-android-appium-1.0-SNAPSHOT-tests.jar
-
파일을 성공적으로 추출한 후 다음 명령을 실행합니다.
$ tree .
작업 디렉토리 트리에서 하나 이상의 클래스를 찾아야 합니다.
. |— acme-android-appium-1.0-SNAPSHOT.jar (this is the JAR containing everything built from the ./src/main directory) |— acme-android-appium-1.0-SNAPSHOT-tests.jar (this is the JAR containing everything built from the ./src/test directory) |-
one-class-file.class
|- folder | `—another-class-file.class
|— zip-with-dependencies.zip (this .zip file contains all of the items) `— dependency-jars (this is the directory that contains all of your dependencies, built as JAR files) |— com.some-dependency.bar-4.1.jar |— com.another-dependency.thing-1.0.jar |— joda-time-2.7.jar `— log4j-1.2.14.jar자세한 내용은 Appium 테스트 및 AWS Device Farm 단원을 참조하세요.