Reputation: 171
I am new with ruby but familiar with selenium and I want to verify the title of the page (for example we use assertEquals
with java). I tried finding everywhere but couldn't find anything suitable for ruby.
verify_title = driver.title
assertEquals("Page Title" , driver.getTitle()); //want to change this line in ruby
P.S. I want to use it without the help of cucumber.
Upvotes: 0
Views: 3000