Cannot swipe from bottom to top on ios - appium

前端 未结 3 1489
南笙
南笙 2021-01-25 09:40

I would like to set the wifi status on ios and in order to do that, I need to to swipe up from the bottom the Control Center.

    dimension = driverWrapper.getIo         


        
3条回答
  •  伪装坚强ぢ
    2021-01-25 10:28

    JavascriptExecutor executor = driver;
    
    executor.executeScript(
        "target.frontMostApp().mainWindow().dragInsideWithOptions({startOffset:{x:0.5, y:0.1}, endOffset:{x:0.5, y:0.7}, duration:0.8});");
    

    Check if this works .. if not try to reduce the y:0.01 further.

提交回复
热议问题