How do I check the value inside a text feild while using ruby selenium testing? -


I'm running Selenium test using Ruby and wondering how I can say values ​​within a text field ?

I have a page where once loaded, it has text within the editable text field and I was wondering how the text exists, how can I check it?

  assert_equal "myValue", @ selenium.get_value ("id = myField")  

Comments