Relative XPath Expressions – Part 4
https://omayo.blogspot.com/
Finding the hyperlink on the page
//a[@id='selenium143']
Finding textbox field on the page
//input[@name='q']
Finding Search button on the page
//input[@value='Search']
Finding male radio button on the page
//input[@id='radio1']
Finding text area field on the page
//textarea[@id]
Finding the button on the page
//button[@id='but2']
Finding the checkbox field on the page
//input[@value='blue']
//input[@id='checkbox2']
Finding the dropdown field on the page
//select[@id='drop1']