移动空手道 fw 中的向下滚动方法
Scroll down method in mobile karate fw
在空手道框架中有Web UI测试的向下滚动方法,但在移动框架中不起作用。您能告诉我们如何使用移动空手道框架中的向下滚动功能吗?
提前致谢
您可以尝试其他选项,例如 mobile command 和 driver.script()
例如:
driver.script("mobile: scroll", { "direction" : "down"})
对于iOS参考:https://github.com/appium/appium-xcuitest-driver#mobile-scroll
对于android参考:https://github.com/appium/appium-uiautomator2-driver#mobile-scroll
如果你需要 elementId
试试:
def locatorElementId = driver.elementId('<locator>')
在空手道框架中有Web UI测试的向下滚动方法,但在移动框架中不起作用。您能告诉我们如何使用移动空手道框架中的向下滚动功能吗?
提前致谢
您可以尝试其他选项,例如 mobile command 和 driver.script()
例如:
driver.script("mobile: scroll", { "direction" : "down"})
对于iOS参考:https://github.com/appium/appium-xcuitest-driver#mobile-scroll
对于android参考:https://github.com/appium/appium-uiautomator2-driver#mobile-scroll
如果你需要 elementId
试试:
def locatorElementId = driver.elementId('<locator>')