We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 44b67fb + 02aa03d commit e456f49Copy full SHA for e456f49
src/main/java/io/appium/java_client/service/local/flags/AndroidServerFlag.java
@@ -43,7 +43,11 @@ public enum AndroidServerFlag implements ServerArgument {
43
/**
44
* ChromeDriver executable full path.
45
*/
46
- CHROME_DRIVER_EXECUTABLE("--chromedriver-executable");
+ CHROME_DRIVER_EXECUTABLE("--chromedriver-executable"),
47
+ /*
48
+ * Reboot emulator after each session and kill it at the end. Default: false
49
+ */
50
+ REBOOT("--reboot");
51
52
private final String arg;
53
0 commit comments