thirtyfour_sync 0.22.1

Thirtyfour is a Selenium / WebDriver library for Rust, for automated website UI testing. This crate is the synchronous version only. For async, see the `thirtyfour` crate instead.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
version: "3"
services:
  selenium:
    image: selenium/standalone-chrome:latest
    volumes:
      - "/dev/shm:/dev/shm"
    ports:
      - "4444:4444"
    environment:
      - NODE_MAX_INSTANCES=4
      - NODE_MAX_SESSION=4
  webappdemo:
    image: stevepryde/thirtyfour_testapp:0.1.0
    ports:
      - "8000:80"