Skip to content

Commit

Permalink
link to user guide
Browse files Browse the repository at this point in the history
  • Loading branch information
MykolaGolubyev committed May 4, 2018
1 parent c1d0924 commit 84c19a4
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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 84c19a4

Please sign in to comment.