0

How to find Xpath of invisible element in IE as my web page doesn't work in firefox. I want to click "Select' link which is available in table format . Class name and href are not unique

Mukesh Takhtani
  • 852
  • 5
  • 15
Sneha
  • 11
  • 2

1 Answers1

1

Selenium is designed in a way not to allow interaction with hidden elements.(if a user can't click, why should Selenium?).

What you can try is to make Selenium execute a script (Java/Python/Javascript/etc.) as described here or here

Community
  • 1
  • 1
Andrejs
  • 10,803
  • 4
  • 43
  • 48