单击后的复选框只有:: after

时间:2018-07-22 15:42:47

标签: java selenium-webdriver xpath

有人可以帮助解决看起来很简单但又堆积如山的复选框问题。 即,未单击的复选框类似于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 并没有其他情况。 预先谢谢你

0 个答案:

没有答案