我想滑动到 find/locate 一个出现在 IOS 应用中的元素
I want to swipe to find/locate an element that is present down in an IOS App
我有一个 Ios 应用程序,我正在对其进行 UI 自动化。我有一个 element/button 向下滚动页面。我已经看到 appium 已经贬值了大部分功能,如滚动、移动和滑动。因为所有的帮助都与此有关。我正在使用 Appium 版本 1.13.0 (1.13.0.20190505.5)
使用该方法代替 appium 方法:
JavascriptExecutor js = (JavascriptExecutor) driver;
HashMap<String, String> scrollObject = new HashMap<>();
scrollObject.put("direction", "down");
js.executeScript("mobile: swipe", scrollObject);
如果要向上滑动,请将 direction
更改为向上
我有一个 Ios 应用程序,我正在对其进行 UI 自动化。我有一个 element/button 向下滚动页面。我已经看到 appium 已经贬值了大部分功能,如滚动、移动和滑动。因为所有的帮助都与此有关。我正在使用 Appium 版本 1.13.0 (1.13.0.20190505.5)
使用该方法代替 appium 方法:
JavascriptExecutor js = (JavascriptExecutor) driver;
HashMap<String, String> scrollObject = new HashMap<>();
scrollObject.put("direction", "down");
js.executeScript("mobile: swipe", scrollObject);
如果要向上滑动,请将 direction
更改为向上