Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我用 Gauge 和 Seleneide (Java) 测试了一个 Ember 网站。 -> 我想在 Ember Power-Select 组件中选择一些值。我怎样才能做到这一点?
我能够将 Power-Select 组件作为一个SelenideElement对象,但设置一个值setValue是没有用的。一旦我选择了一个值, Power-Select 似乎使用了一个input转换为列表的字段。ul,li老实说,我完全迷路了。 谢谢。
SelenideElement
setValue
input
ul,li
试着表现得像一个真正的用户。
如果它是一个选择,您需要以下内容:
SelenideElement powerSelectComponent = $(xpath); powerSelectComponent.click(); $(By.text("text of option you want to click to")).click