thirtyfour 0.13.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
16
17
version: "3"
services:
  selenium:
    image: selenium/standalone-chrome-debug:latest
    volumes:
      - "/dev/shm:/dev/shm"
    ports:
      - "4444:4444"
      - "5900:5900"
    environment:
      - NODE_MAX_INSTANCES=4
      - NODE_MAX_SESSION=4
  webappdemo:
    build:
      context: webappdemo
    ports:
      - "8000:80"