We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a731668 commit 145bc4fCopy full SHA for 145bc4f
src/e2eFlutterTest/java/io/appium/java_client/android/BaseFlutterTest.java
@@ -50,11 +50,11 @@ public static void beforeClass() {
50
@BeforeEach
51
void startSession() throws MalformedURLException {
52
FlutterDriverOptions flutterOptions = new FlutterDriverOptions()
53
- .setFlutterServerLaunchTimeout(Duration.ofSeconds(30))
+ .setFlutterServerLaunchTimeout(Duration.ofMinutes(2))
54
+ .setFlutterSystemPort(9999)
55
.setFlutterElementWaitTimeout(Duration.ofSeconds(3));
56
if (IS_ANDROID) {
57
driver = new FlutterAndroidDriver(service.getUrl(), flutterOptions
- .setFlutterSystemPort(9999)
58
.setUiAutomator2Options(new UiAutomator2Options()
59
.setApp(System.getProperty("flutterApp"))
60
.eventTimings())
0 commit comments