Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 597 Bytes

README.md

File metadata and controls

35 lines (26 loc) · 597 Bytes

webtau

Web Test Automation User Guide

logo

Simple REST tests

scenario("simple get") {
    http.get("/weather") {
        temperature.shouldBe < 100
    }
}
{
  "temperature": 88
}

Robust UI tests

scenario("search by specific query") {
    search.submit("search this")
    search.numberOfResults.should == 2
}

Precise Reporting

report-image

Full Documentation