forked from appium/java-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTestResources.java
More file actions
31 lines (23 loc) · 849 Bytes
/
TestResources.java
File metadata and controls
31 lines (23 loc) · 849 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package io.appium.java_client;
import java.nio.file.Path;
import static io.appium.java_client.TestUtils.resourcePathToLocalPath;
public class TestResources {
public static Path apiDemosApk() {
return resourcePathToLocalPath("apps/ApiDemos-debug.apk");
}
public static Path testAppZip() {
return resourcePathToLocalPath("apps/TestApp.app.zip");
}
public static Path uiCatalogAppZip() {
return resourcePathToLocalPath("apps/UICatalog.app.zip");
}
public static Path vodQaAppZip() {
return resourcePathToLocalPath("apps/vodqa.zip");
}
public static Path intentExampleApk() {
return resourcePathToLocalPath("apps/IntentExample.apk");
}
public static Path helloAppiumHtml() {
return resourcePathToLocalPath("html/hello appium - saved page.htm");
}
}