This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package pages | |
class Pages { | |
static final def search = new SearchPage() | |
static final def calculation = new CalculationPage() | |
static final def form = new FormPage() | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import static pages.Pages.* | |
scenario("search by specific query") { | |
search.submit("search this") | |
search.numberOfResults.shouldBe > 1 | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import static pages.Pages.* | |
scenario("search by specific query") { | |
search.submit("search this") | |
search.numberOfResults.waitToBe > 1 | |
} |
OlderNewer