当您想在空手道 UI 自动操作期间检查按钮是否存在时使用哪种方法

Which method to use when you want to check the button is present or not during Karate UI autoamtion

我对使用空手道 ui 自动化使用哪种方法给出关于是否存在按钮的结果感到困惑。我对使用 exists() 和 optional() 感到困惑。谁能帮忙!!

这在文档中有解释:https://github.com/intuit/karate/tree/master/karate-core#optional

如果您需要做的只是检查按钮是否存在,请像这样使用 exists()

* def flag = exists('#myButton')
# now you can use the value of flag to perform logic

如果需要,请提出一个新问题并提供具体信息。