根据硒中动态索引从下拉列表中选择一个值

发布于 2024-11-09 14:46:23 字数 112 浏览 0 评论 0原文

是否可以通过从另一个函数返回的动态索引来选择下拉列表的值 而 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

方圜几里 2024-11-16 14:46:23

在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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文