Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
MykolaGolubyev committed May 4, 2018
2 parents 4e9a583 + 84c19a4 commit 0f255af
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions README.md
@@ -1 +1,27 @@
# webtau

Web Test Automation [User Guide](https://opensource.twosigma.com/webtau/guide/)

Simple REST tests

```groovy
scenario("simple get") {
http.get("/weather") {
temperature.should == 88
}
}
```

Robust UI test

```groovy
scenario("""# Search facts
Enter a fact in a search box and
information will be displayed in a special box
""") {
search.open()
search.submit(query: "search this")
search.numberOfResults.should == 2
}
```

0 comments on commit 0f255af

Please sign in to comment.