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.
我使用 Watin 进行自动化工作,它对我来说效果很好。今天,我遇到了一个问题并且不知道它:
我想单击页面中的最后一个单选框。并且所有具有“radio”类型的“input”元素具有相同的“name”和“id”,如下所示。
<input name="rd_addr_id" id="rd_new_addr" type="radio" value="-1"/>
我怎样才能得到约束?提前致谢。
您是否尝试过多个 Find.By 子句,例如:
ie.RadioButton(Find.ByName("rd_addr_id") && Find.ById("rd_new_addr") && Find.ByValue("-1")).Click();
希望能帮助到你