我们在Web应用程序中使用Selenium IDE测试工具。我很困惑使用select命令;我需要使用select命令从下拉列表中选择一个值。
在select(selectLocator,optionLocator)中,我们可以用什么来代替selectLocator和optionLocator从下拉列表中选择一个选项?
答案 0 :(得分:2)
在命令select(selectLocator,optionLocator)中,'selectLocator'是从中选择值的下拉列表的Id,'optionLocator'是被选中的值。
例如:假设Id="//select[@id='type'"
下拉的值为'TypeA,TypeB,TypeC,......'。如果您从下拉列表中选择“TypeA”,则命令应如下所示:
selenium.select("//select[@id='type']", "label=TypeA");
我希望这能解决你的问题。 :)