使用正则表达式选择硒中的动态复选框
我试图选择一个其 id 动态生成的复选框,但无法解决它。
尝试了以下
Selenium.check("id=regexp:ctl00_cphMain_cbx_[a-zA-Z0-9_,]*")
Selenium.check("xpath=(//input[@type='checkbox'])[position()=1]")
此外,此复选框只有动态 ID,没有名称等。知道我做错了什么。
问候
I am trying to select a checkbox whose ids are generated dynamically but couldn't solve it.
Tried following
Selenium.check("id=regexp:ctl00_cphMain_cbx_[a-zA-Z0-9_,]*")
Selenium.check("xpath=(//input[@type='checkbox'])[position()=1]")
Also this check box has only dynamic id, no name etc. any idea what I am doing wrong.
Regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过
selenium.check('xpath=//input[@type='checkbox' andstarts-with(@id,'ctl00_cphMain_cbx_')])
这应该得到您想要的
have you tried
selenium.check('xpath=//input[@type='checkbox' and starts-with(@id,'ctl00_cphMain_cbx_')])
That should get what you are after