com.appium.filelocations.FileLocations Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of AppiumTestDistribution Show documentation
Show all versions of AppiumTestDistribution Show documentation
A tool run Android and iOS test in parallel across devices
package com.appium.filelocations;
public interface FileLocations {
String OUTPUT_DIRECTORY = System.getenv("OUTPUT_DIRECTORY") != null
? "/" + System.getenv("OUTPUT_DIRECTORY") + "/" : "/target/";
String PARALLEL_XML_LOCATION = OUTPUT_DIRECTORY + "parallel.xml";
String SCREENSHOTS_DIRECTORY = OUTPUT_DIRECTORY + "screenshot/";
String ANDROID_SCREENSHOTS_DIRECTORY = SCREENSHOTS_DIRECTORY + "android/";
String IOS_SCREENSHOTS_DIRECTORY = SCREENSHOTS_DIRECTORY + "iOS/";
String APPIUM_LOGS_DIRECTORY = OUTPUT_DIRECTORY + "appiumlogs/";
String ADB_LOGS_DIRECTORY = OUTPUT_DIRECTORY + "adblogs/";
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy