如何使用 HtmlUnit 选择图像输入类型
我必须选择下面的图像按钮。我怎样才能使用 HtmlUnit 做到这一点?
对于其他元素,我正在使用这种方法,但在下面的情况下,我没有名称或 ID。如何使用 HtmlUnit 选择输入类型?
var email = driver.FindElement(By.Name("userName"));
<input type="image" name="" src="https://a248.e.akamai.net/f/248/16813/4h/www-origin.walmart.com/i/buttons/BTN_sign_in_67x25.gif" border="0" class="SignInBtn" alt="Sign In">
I have to select following image button. How can I do that using HtmlUnit?
For other elements, I am using this kind of approach, but in the case below I don't have name either Id. How do I select the input type using HtmlUnit?
var email = driver.FindElement(By.Name("userName"));
<input type="image" name="" src="https://a248.e.akamai.net/f/248/16813/4h/www-origin.walmart.com/i/buttons/BTN_sign_in_67x25.gif" border="0" class="SignInBtn" alt="Sign In">
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
“XPath”是简短的答案。但要注意它的警告。如果您正在测试,我建议您改用 WebDriver
"XPath" is the short answer. But beware of its caveats. If you're testing, I recommend you switch to WebDriver instead