I am using Selenium and I would like to be able to click on the following
<a ng-click="download()">download</a>'
This is an 'a' tag. I am not sure how the code would be like to click onto an 'a' tag that has got ng-click in it.
Dim d As WebDriver
Set d = New ChromeDriver
Const URL = "url of the website - not public"
With d
.Start "Chrome"
.get URL
.Window.Maximize
.FindElementById("Search").SendKeys "information to search"
.Wait 1000
.FindElementById("Submit").Click
.Wait 1000
'then I need to click the following <a ng-click="download()">download</a>
End With
Only step I am missing is to be able to click on that last bit. Thank you for the help in advance :)