有人可以帮助解决看起来很简单但又堆积如山的复选框问题。 即,未单击的复选框类似于HTML:
<label class="mt-checkbox mt-checkbox-outline"> Bonus la aniversare
<input type="checkbox"
name="bonus_aniversare" value="1">
<span></span>
</label>
点击后仅添加差异 ::之后,只需检查以下HTML:
<label class="mt-checkbox mt-checkbox-outline"> Bonus la aniversare
<input type="checkbox"
name="bonus_aniversare" value="1">
<span>
::after
</span>
</label>
轻松找到元素(跨度),但是单击复选框后如何添加选项?
String chosenSelection2 = driver.findElement(By.xpath("//div[@id='tab_promotii']/div/div[4]/div/label/span"))
到目前为止,仅添加 :: after 并没有其他情况。 预先谢谢你