gpt4 book ai didi

java - 在 Java 中使用 Selenium 选择随机值

转载 作者:行者123 更新时间:2023-12-01 17:27:14 25 4
gpt4 key购买 nike

我有一个页面,其中包含 10 个下拉选项,每个下拉选项都有一个值列表。我希望 Selenium 运行脚本,选择一个随机下拉列表,然后选择该下拉列表中的随机值。有人知道如何选择随机值吗?

目前,我有代码设置来选择第一个可用的下拉列表,然后选择该列表中的第一个值。代码如下所示:

// Selects the first drop down
selenium.click("css=div.dropdown");
// Selected the first value in the first drop down
selenium.click("css=td.dijitMenuItemLabel");

任何帮助都会很棒!

最佳答案

这是选择随机下拉值的代码

String []options = selenium.getSelectOptions("locator");
int index = (int)( Math.random() * options.length);
selenium.select("locator" , "index="+index);

关于下拉列表,您可以将它们的定位器存储在数组中并选择随机值

关于java - 在 Java 中使用 Selenium 选择随机值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13981049/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com