value in their list is difficult.
Go to www.ebay.in you will see there is drop down along with search text box.
How to veify a specific value "Collectibles" is in drop down list.
Using Xpath:
verifyTrue(selenium.isElementPresent("//select[@id='_sacat']/option[contains(text(),'Collectibles')]"));
Using CSS:
verifyTrue(selenium.isElementPresent("css=select#_sacat>option:contains(\"Fun\")"));
No comments:
Post a Comment