webdriver.dart icon indicating copy to clipboard operation
webdriver.dart copied to clipboard

Dart WebDriver client

Results 32 webdriver.dart issues
Sort by recently updated
recently updated
newest added

In DartPad, webdriver tests are failing unless an artificial delay is added: ```dart setUp(() async { // Connect to it with the webdriver package driver = await createDriver( uri: Uri.parse('http://localhost:4444/wd/hub/'),...

Bumps [dart-lang/setup-dart](https://github.com/dart-lang/setup-dart) from 1.6.0 to 1.6.2. Release notes Sourced from dart-lang/setup-dart's releases. v1.6.2 Switch to running the workflow on node20 from node16. See also Transitioning from Node 16 to Node...

dependencies

Uses the W3C "Get Timeouts" API: https://www.w3.org/TR/webdriver1/#get-timeouts There is no such API in the JSON API: https://www.selenium.dev/documentation/legacy/json_wire_protocol/#command-summary Rationale: Allows sync clients to temporarily change a timeout and then restore it...

We're seeing around 70 failures; here's an example: ``` test/firefox_timeouts_test.dart: TimeOuts set all timeouts (failed) SessionNotCreatedException (500): Session is already started package:webdriver/src/handler/w3c/utils.dart 81:9 parseW3cResponse package:webdriver/src/handler/w3c/session.dart 19:21 W3cSessionHandler.parseCreateResponse package:webdriver/src/common/request_client.dart 46:32 SyncRequestClient.send...

Starting from the Selenium version 4.6 there is a Selenium Manager tool which is designed to remove the burden of manual browser/chromedriver management from developers. They state that major language...

The W3C API supports it: https://www.w3.org/TR/webdriver1/#get-timeouts The goal is to be able to modify and restore timeouts with the sync driver. I have a pull request in the works.

I've been trying to use appium-flutter-driver to interact with dart vm using appium commands based on a webdriver protocol and to be honest this is a nice idea, however, very...

This package will be discontinued. We could consider adding an API based on `checks`, but I think it would be better to use `bool Function(T)` and we can (in some...

Bumps [dart-lang/setup-dart](https://github.com/dart-lang/setup-dart) from 1.6.4 to 1.6.5. Release notes Sourced from dart-lang/setup-dart's releases. v1.6.5 Fix zip path handling on Windows 11 (#118[]) #118: dart-lang/setup-dart#118 Changelog Sourced from dart-lang/setup-dart's changelog. v1.6.5 Fix...

dependencies

I am trying to run the selenium webdriver tests using Selenium Grid but unable to create the driver by pointing the Grid URL. Please let me know if the dart...