Reputation: 1054
I have the c# syntax for finding an id:
[FindsBy(How = How.Id, Using = "email")]
private IWebElement emailAddressTextField;
But what is the VB.NET equivalent? There is not much information with Selenium and VB...
Cheers!
Upvotes: 0
Views: 165
Reputation: 26
I used this to convert the code:
<FindsBy(How := How.Id, [Using] := "email")> _
Private emailAddressTextField As IWebElement
HTH
Upvotes: 1