Created
June 20, 2019 12:10
-
-
Save MykolaGolubyev/6a977fc8cc633c5f6b9d6864a96e2c86 to your computer and use it in GitHub Desktop.
This file contains 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
def searchBox = $('#search-box') | |
def numberOfResults = searchBox.count | |
scenario('search by specific query') { | |
browser.open('/search') | |
searchBox.setValue('search this') | |
searchBox.sendKeys("\n") | |
numberOfResults.shouldBe > 1 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment