I have this logic which gets the current page\'s title first clicks on next button, fetches the title again and if both the titles are the same, meaning navigation has not m
If the element has two xpath, then you can write two xpaths like below
xpath1 | xpath2
Eg: //input[@name="username"] | //input[@id="wm_login-username"]
It will choose any one xpath
You can use or
, like below:
//tr[@class='alternateRow' or @class='itemRow']
You can use or
operator like
(.//span[@class='g-title'])[2] or .//span[@class='g-title']
For more details : Two conditions using OR in XPATH