I am trying to find, select and click on a specific Hyperlink in Firefox using Powershell.
I have been able to find all the Hyperlinks available through .Links I am unsure of how to select the one that I want and how to click on it.
$azr = Invoke-WebRequest -uri "https://Website/" -SessionVariable sbv
$sbv
$azr.Links
This is for a typing test website. There is a link that says start typing test, and that's what I'm trying to click on. I'm just not sure of how to select that within all of the HTML that is produced with .Links and how to click on it.