thirtyfour 0.21.0

Thirtyfour is a Selenium / WebDriver library for Rust, for automated website UI testing. It supports the full W3C WebDriver spec.
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"