HOW TO VERIFY TITLE OF EACH PAGE VISITED WHEN SEARCHING AND VISITING A ITEM In GOOGLE USING SELENIUM IDE?

  • Open Firefox browser.
  • Open selenium IDE from Tools in browser.
  • Verify the RECORD button is ON in selenium IDE window. 
  • Navigate the browser to www.google.co.in
  • Verify the title of the page


  • Type “helloselenium blog” in Search textbox.
  • Click on Search button. 
  • Verify the title of the page.
  • Verify the search result present for “Hello Selenium” blog.
  • Click on search result of “Hello Selenium” blog. 
  • Verify the title of the page. 
  • Verify the recorded script in selenium IDE window



Command
Target
Value
open
/
type
id=gbqfq
helloselenium blog
click
id=gbqfb

clickAndWait
css=em

* Base URL:
http://www.google.co.in/



  • Modify the recorded script in selenium IDE window. 
Command
Target
Value
open
/
verifyTitle
Google

type
id=gbqfq
helloselenium blog
click
id=gbqfb

verifyTitle
helloselenium blogspot - Google Search

clickAndWait
//a//em[text()="Hello Selenium"]

verifyTitle
Hello Selenium

* Base URL:
http://www.google.co.in/
  • Save the recorded script.
  • Run the recorded script.
In the above script we have added some new rows to verify the title of the each page.


Post a Comment

0 Comments