Selenium IDE: Click on a particular item by name (not the XPath) Selenium IDE: Click on a particular item by name (not the XPath) selenium selenium

Selenium IDE: Click on a particular item by name (not the XPath)


You can do

xpath=//span[text()='Keith Duggan: Sideline Cut']

or

css=span:contains('Keith Duggan: Sideline Cut')

That will always find that blog


There are also many ways to construct an xpath, for example you could do

//span[@name='MySpanName']


Take a look on selenese documentation for possible selectors.