<img src="/images/skip/en.png" alt="Skip" height="39" id="skip">
I tried this code:
Dim theElementCollection As HtmlElementCollection = Bot.Document.GetElementsByTagName("img")
For Each curElement As HtmlElement In theElementCollection
Dim controlName As String = curElement.GetAttribute("name").ToString
controlName = "skip"
curElement.InvokeMember("click")
So pretty much I need to click the image to pass to the next page.