selenium-rs icon indicating copy to clipboard operation
selenium-rs copied to clipboard

A Rust Client for the Selenium webdriver (WIP)

Results 13 selenium-rs issues
Sort by recently updated
recently updated
newest added

Hello, I've been using this crate for a while now. It is really great, thank you. However, I've reached a point where I need to run the browser headless. Chrome...

I'm pretty used to the [Ruby gem](https://www.rubydoc.info/gems/selenium-webdriver) which has some pretty ergonomic interfaces. The first one I notice myself reaching for is the [`Find`](https://www.rubydoc.info/gems/selenium-webdriver/0.0.28/Selenium/WebDriver/Find) implementation on the [`Element`](https://www.rubydoc.info/gems/selenium-webdriver/0.0.28/Selenium/WebDriver/Element) class. This...

Hey, first time using selenium-rs, and also I'm a Rust newbie. ```rust fn wait_for_element where F: Fn() -> Result

hello, I'm using the code that is provided in the documentation so this one: ```rust let mut driver = WebDriver::new(Browser::Chrome); driver.start_session(); driver.navigate("http://google.com"); let search_bar = driver.find_element(Selector::CSS, "input[maxlength=\"2048\"]").unwrap(); search_bar.type_text("selenium-rs github"); let...

hi i followed the instructions, selenium server is running ``` $ java -jar selenium-server-standalone-3.141.59.jar 12:34:12.751 INFO [GridLauncherV3.parse] - Selenium server version: 3.141.59, revision: e82be7d358 12:34:12.830 INFO [GridLauncherV3.lambda$buildLaunchers$3] - Launching a...

Thanks for this project! I've found that with the default configuration of recent Selenium versions (`Selenium server version: 3.141.59, revision: e82be7d358`) I seem to have to provide additional `desiredCapabilities` options...

The Selenium project knows different implementations in different languages (Python, Go, Java, ...) of the webdriver, a [W3C recommendation](https://www.w3.org/TR/webdriver1/). In this issue I will cover Selenium 2.0 (based on Selenium...