我有一个包含 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");
任何帮助都会很棒!