简体   繁体   中英

How can I do validate that a checkbox is selected in KARATE UI testing?

  • def scr = scriptAll('assert(await driver.findElement(By.xpath("//div[5]/div/p-checkbox/div/div[2]/span")).isSelected())')
  • match scr == true

I tried this way but I think logic is wrong.

I have no idea what all that assert / await stuff is for. Karate is NOT Selenium. Please read the documentation: https://github.com/karatelabs/karate/tree/master/karate-core#locators

I think JS should work for you:

* def checked = script('someLocator', '_.checked')
* print 'checked:', checked

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM