1

The link that I want to click I am new to Selenium. Spent almost an hour on this. What is the correct way to click on this link with Selenium?

1 Answers1

0

Use the below xpath using text() or title

  • Xpath=//a[text()='Annual Report']
  • Xpath=//a[@title='Annual Report ']
  • Xpath=//a[contains(@title,'Annual Report')]