I try to login on a webpage. On the webpage are two forms with inputs, the inputs have the same Id("username").
How can i get the right inputs to set my text?
This is my wrong Code:
browser.TextField(Find.ByName("username")).TypeText("test123");
or
browser.Form(Find.ByName("form_login")).TextField(Find.ByName("username")).TypeText("test123");