使用 ruby 检查下拉菜单中的所有元素是否都存在于硒测试中?
您好,
如何使用硒测试检查我创建的数组中的所有元素是否都存在于下拉菜单中?
我有类似的东西,但似乎不起作用
ANIMALS = ["snake","cat","dog"]
def validate_all_animals_exist(selenium)
ANIMALS.each { |animal| assert selenium.is_element_present(animal), "Expected category [#{animal}] to be present" }
end
提前感谢
HI
how can i check if all elements in an array i created are present in a drop down menu using selenium testing?
i have something like this but dosent seem to work
ANIMALS = ["snake","cat","dog"]
def validate_all_animals_exist(selenium)
ANIMALS.each { |animal| assert selenium.is_element_present(animal), "Expected category [#{animal}] to be present" }
end
thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使用 verifySelectOptions 调用
所以会这样
You need to use the verifySelectOptions call
So it would be