Crates.io docs.rs Build Status codecov

Thirtyfour is a Selenium / WebDriver library for Rust, for automated website UI testing.

It supports the full W3C WebDriver spec. Tested with Chrome and Firefox although any W3C-compatible WebDriver should work.

UPDATE ANNOUNCEMENT - v0.30.0

A number of methods in the thirtyfour API have been renamed to more closely align with fantoccini, as part of the move towards greater compatibility. The existing method names remain but have been deprecated.

The deprecated methods will remain for the time being, however you should aim to migrate code away from the deprecated methods as soon as is practical.

UPDATE ANNOUNCEMENT - v0.29.0

The thirtyfour crate has switched to fantoccini as the WebDriver client backend from Version 0.29 and onwards, with the goal of reducing duplication of effort and creating a more stable ecosystem around Web Browser automation in Rust.

The update aims to maintain broad API compatibility with previous versions, however there are some breaking changes (see the section on breaking changes for v0.29.x below).

Features

Why 'thirtyfour' ?

It is named after the atomic number for the Selenium chemical element (Se).

Feature Flags

Examples

The examples assume you have chromedriver running on your system.

You can use Selenium (see instructions below) or you can use chromedriver directly by downloading the chromedriver that matches your Chrome version, from here: https://chromedriver.chromium.org/downloads

Then run it like this:

chromedriver

Example (async):

To run this example:

cargo run --example tokio_async

```rust use thirtyfour::prelude::*;

[tokio::main]

async fn main() -> WebDriverResult<()> { let caps = DesiredCapabilities::chrome(); let driver = WebDriver::new("http://localhost:9515", caps).await?;

 // Navigate to https://wikipedia.org.
 driver.goto("https://wikipedia.org").await?;
 let elem_form = driver.find(By::Id("search-form")).await?;

 // Find element from element.
 let elem_text = elem_form.find(By::Id("searchInput")).await?;

 // Type in the search terms.
 elem_text.send_keys("selenium").await?;

 // Click the search button.
 let elem_button = elem_form.find(By::Css("button[type='submit']")).await?;
 elem_button.click().await?;

 // Look for header to implicitly wait for the page to load.
 driver.find(By::ClassName("firstHeading")).await?;
 assert_eq!(driver.title().await?, "Selenium - Wikipedia");

 // Always explicitly close the browser.
 driver.quit().await?;

 Ok(())

} ```

The browser will not close automatically

Rust does not have async destructors, which means there is no reliable way to execute an async HTTP request on Drop and wait for it to complete. This means you are in charge of closing the browser at the end of your code, via a call to WebDriver::quit() as in the above example.

If you do not call WebDriver::quit() then the browser will stay open until it is either explicitly closed later outside your code, or the session times out.

Advanced element queries

ElementQuery

The WebDriver::query() and WebElement::query() methods return an ElementQuery struct.

Using ElementQuery, you can do things like:

rust let elem_text = driver.query(By::Css("match.this")).or(By::Id("orThis")).first().await?;

This will execute both queries once per poll iteration and return the first one that matches. You can also filter on one or both query branches like this:

rust driver.query(By::Css("branch.one")).with_text("testing") .or(By::Id("branchTwo")).with_class("search").and_not_enabled() .first().await?;

The all() method will return an empty Vec if no elements were found. In order to return an error in this scenario, use the all_required() method instead.

ElementQuery also allows the use of custom predicates that take a &WebElement argument and return a WebDriverResult<bool>.

As noted above, the query() method is also available on WebElement structs as well for querying elements in relation to a particular element in the DOM.

ElementWaiter

The WebElement::wait_until() method returns an ElementWaiter struct.

Using ElementWaiter you can do things like this:

```rust elem.waituntil().displayed().await?; // You can optionally provide a nicer error message like this. elem.waituntil().error("Timed out waiting for element to disappear").not_displayed().await?;

elem.waituntil().enabled().await?; elem.waituntil().clickable().await?; ```

And so on. See the ElementWaiter docs for the full list of predicates available.

ElementWaiter also allows the use of custom predicates that take a &WebElement argument and return a WebDriverResult<bool>.

A range of pre-defined predicates are also supplied for convenience in the thirtyfour::query::conditions module.

```rust use thirtyfour::query::conditions;

elem.waituntil().conditions(vec![ conditions::elementisdisplayed(true), conditions::elementis_clickable(true) ]).await?; ```

These predicates (or your own) can also be supplied as filters to ElementQuery.

Breaking changes in v0.29

If there are other changes I've missed that should be on this list, please let me know and I'll add them.

Running against selenium

NOTE: To run the selenium example, start selenium server and then run:

cargo run --example selenium_example

Below you can find my recommended development environment for running selenium tests.

Essentially you need 3 main components as a minimum:

  1. Selenium standalone running on some server, usually localhost at port 4444.

    For example, http://localhost:4444

  2. The webdriver for your browser somewhere in your PATH, e.g. chromedriver (Chrome) or geckodriver (Firefox)

  3. Your code, that imports this library

If you want you can download selenium and the webdriver manually, copy the webdriver to somewhere in your path, then run selenium manually using java -jar selenium.jar.

However, this is a lot of messing around and you'll need to do it all again any time either selenium or the webdriver gets updated. A better solution is to run both selenium and webdriver in a docker container, following the instructions below.

Setting up Docker and Selenium

To install docker, see https://docs.docker.com/install/ (follow the SERVER section if you're on Linux, then look for the Community Edition)

Once you have docker installed, you can start the selenium server, as follows:

docker run --rm -d -p 4444:4444 -p 5900:5900 --name selenium-server -v /dev/shm:/dev/shm selenium/standalone-chrome:4.1.0-20211123

For more information on running selenium in docker, visit docker-selenium

Running the tests for thirtyfour

You generally only need to run the tests if you plan on contributing to the development of thirtyfour. If you just want to use the crate in your own project, you can skip this section.

Make sure selenium is not still running (or anything else that might use port 4444 or port 9515).

To run the tests, you need to have an instance of geckodriver and an instance of chromedriver running in the background, perhaps in separate tabs in your terminal.

Download links for these are here:

In separate terminal tabs, run the following:

LICENSE

This work is dual-licensed under MIT or Apache 2.0. You can choose either license if you use this work.

See the NOTICE file for more details.

SPDX-License-Identifier: MIT OR Apache-2.0