Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Appium Desktop record test cases

2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/03 Report--

The recorded script can be copied to a file and opened with Pycharm

An implicit wait has been added

This sample code uses the Appium python clientpip install Appium-Python-ClientThen you can paste this into a file and simply run with Python

From appium import webdriver

Caps = {}

Caps ["platformName"] = "android"

Caps ["deviceName"] = "noblank"

Caps ["autoGrantPermissions"] = "true"

Caps ["appActivity"] = ".view.WelcomeActivityAlias"

Caps ["appPackage"] = "com.xueqiu.android"

Driver = webdriver.Remote ("http://localhost:4723/wd/hub", caps)

Driver.implicitly_wait (10)

El1 = driver.find_element_by_id ("com.xueqiu.android:id/tv_skip")

El1.click ()

El2 = driver.find_element_by_xpath ("/ hierarchy/android.widget.FrameLayout/android.view.ViewGroup/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.LinearLayout [1] / android.widget.LinearLayout/android.widget.TextView")

El2.click ()

El3 = driver.find_element_by_xpath ("/ hierarchy/android.widget.FrameLayout/android.view.ViewGroup/android.widget.FrameLayout [1] / android.view.ViewGroup/android.widget.EditText")

El3.send_keys ("alibaba")

Driver.quit ()

As long as you start Appium Server, you can run successfully!

You can use Appium Desktop to run server

Or run appium directly from the command line to start server

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report