You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In DartPad, webdriver tests are failing unless an artificial delay is added:
setUp(() async {
// Connect to it with the webdriver package
driver =awaitcreateDriver(
uri:Uri.parse('http://localhost:4444/wd/hub/'),
desired:Capabilities.chrome);
awaitFuture.delayed(Duration(milliseconds:2000));
// Go to your pageawait driver.get('http://localhost:8000/');
awaitwaitForPageToStabilize();
});
In DartPad, webdriver tests are failing unless an artificial delay is added:
dart-lang/dart-pad#2360
dart-lang/dart-pad#2361
The text was updated successfully, but these errors were encountered: