Hi guys, I guess this one is for our HTML expert users...
I have this input field in a form:
<input type="text" name="name" placeholder="Email address / account name">
I can interact with it by using
Dim LoginForm As Object = Selenium.FindByClassName("","formV2") 'this is my form
Dim Login As Object = Selenium.FindByClassName(LoginForm, "input") 'this works, but why???
Selenium.WebElementSendKeys(Login, "pendrush")
I need to next interact with
<input type="password" name="password" placeholder="Password">
which is part of the same form... but I just can't "find" it!!
Any hints??