Skip to content
Advertisement

Using selenium to click on link not working despite correct xpath

So I have the following setup

JavaScript

I then navigate to a certain page – I have attached the inspect part below and want to click on the part highlighted in red

enter image description here

The code to implement this is below:

JavaScript

When I run this – it does not open up this link and I get a TimeoutException (from the wait).

I don’t understand what the issue is here – I did the exact same thing on previous parts of the code to navigate the webpage and it worked. I also made sure the xpath matches exactly the attached inspect.

Please see href text below:

JavaScript

Advertisement

Answer

try this instead :

JavaScript

or

probably try this also :

JavaScript

Please refer official docs

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement