如何在gmail注册中选择一个值(https://accounts.google.com/SignUp?)特别是在月份和性别字段中?我注意到它与其他网站不同,我无法使用代码。 这是我在网上找到的代码:
For Each element As HtmlElement In WebBrowser1.Document.GetElementsByTagName ("select")
If element.GetAttribute ("name") = "BirthMonth" Then
Element.SetAttribute ("value", "August")
End If
Next