*** Analysis of capabilities parameters

1. Sample script from appium import webdriver # After starting appium service, execute on appium service: start snowball app with caps parameter driver = webdriver.Remote(command_executor="http://localhost:4723/wd/hub", # command_executor source code is the default local 4723 interface. If we run appium locally, it can be deleted in ...

Posted by kaeRock on Mon, 07 Mar 2022 17:52:25 +0100

Writing Appium tests with Kotlin

Kotlin Is a modern programming language that focuses on simplicity, clarity and code security. Google officially adopted Kotlin by adding support to Android Studio in 2017, and then announced it as the preferred language for Android developers on Google I/O 2019. Perhaps your Android application team has gradually added Kotlin code to your pr ...

Posted by varun_146100 on Tue, 04 Jan 2022 15:42:17 +0100

How appium +pycharm controls App page sliding

When we operate the app, we will slide the page. How can we implement this process in python?   How to slide We all know very well how we manually slide on the app, and then automation is only implemented by imitating the manual method. We analyze it through a graph     When sliding from top to bottom, we usually press the coordinate (X1, Y1 ...

Posted by bbristow on Tue, 23 Nov 2021 13:58:11 +0100