Shilpa
Shilpa

Reputation: 85

Unable to click on the webelement in IE10 in selenum webdriver

I am facing issue in clicking on a webelement in IE 10, the web element can be identified only by linktext or using xpath as //b[text()='abc']

The length of the text is more than 15 characters, I tried using partial link text.

In console it displayed as 'clicked on the element' but actually it does not click.

Upvotes: 0

Views: 67

Answers (1)

alecxe
alecxe

Reputation: 474191

I doubt the b element would be really clickable. Most likely it is the parent of b:

//*[b[contains(.,'abc')]]

or:

//b[contains(.,'abc')]/..

Upvotes: 2

Related Questions