thirtyfour 0.4.1

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:3.141.59-zinc
    volumes:
      - "/dev/shm:/dev/shm"
    ports:
      - "4444:4444"
    environment:
      - NODE_MAX_INSTANCES=1
      - NODE_MAX_SESSION=1
  webappdemo:
    image: stevepryde/webappdemo:v0.2.3
    ports:
      - "8000:80"