Types of xpath
1. Absoulte : xpath starts with single / or starting from Html tag.
2. Relative : xpath starts from //
Absolute
/html/h1/h2/bodyinput/div = login id
/html/h1/h2/body/div/div = password
/html/h1/h2/body/div/div/a = login
//div[1]
Relative:
//div[@id=’uname’]
Read More