1
私は次のコマンドを使用しています: browser.scroll( '#login');webdriveriOを使用してappiumで要素をスクロールする方法
このエラーが発生しています - まだ実装されていません。私たちを助けてください:http://appium.io/get-involved.html
私は次のコマンドを使用しています: browser.scroll( '#login');webdriveriOを使用してappiumで要素をスクロールする方法
このエラーが発生しています - まだ実装されていません。私たちを助けてください:http://appium.io/get-involved.html
public void scroll()
{
Dimension dimensions = driver.manage().window().getSize();
System.out.println(dimensions);
Double screenHeightStart = dimensions.getHeight() * 0.5;
int scrollStart = screenHeightStart.intValue();
Double screenHeightEnd = dimensions.getHeight() * 0.2;
int scrollEnd = screenHeightEnd.intValue();
((IOSDriver<MobileElement>) driver).swipe(0, scrollStart, 0, scrollEnd, 1000);
}
次のコマンドを使用します。
browser.execute("mobile: scroll", {direction: 'down'});