Skip to content

Instantly share code, notes, and snippets.

@valenso
Created July 13, 2014 15:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save valenso/19386fd42c8f8e669bbf to your computer and use it in GitHub Desktop.
Save valenso/19386fd42c8f8e669bbf to your computer and use it in GitHub Desktop.
code = @wait.until {
element = @browser.find_element(:name, "secretcode")
element if (element.text.size == 4)?
}
next_step = @wait.until {
element = @browser.find_element(:id, "next")
element if element.displayed?
}
next_step.click
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment