Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save MykolaGolubyev/6a977fc8cc633c5f6b9d6864a96e2c86 to your computer and use it in GitHub Desktop.
Save MykolaGolubyev/6a977fc8cc633c5f6b9d6864a96e2c86 to your computer and use it in GitHub Desktop.
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