根据硒中动态索引从下拉列表中选择一个值
是否可以通过从另一个函数返回的动态索引来选择下拉列表的值 而 selectindex = 2 (动态生成)
selenium.Select(Id, "index = SelectIndex")
Is it possible to select a value of a drop down by its dynamic index that is returning from another function
whereas selectindex = 2 (generated dynamically)
selenium.Select(Id, "index = SelectIndex")
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在java中,您可以使用selenium.Select(id,"index = "+selectindex),其中selectIndex是保存动态值的字符串。如果它是整数,则需要将其转换为字符串
In java you can use
selenium.Select(id,"index = "+selectindex)
where selectIndex is a string which holds the dynamic value. If its an integer you need to convert it to a String