第一段自动化测试代码详解编程语言

import unittest 
from appium import webdriver 
 
class HelloWorld(unittest.TestCase): 
    def test_addContact(self): 
        desired_caps = {} 
        desired_caps['platformName'] = 'Android' 
        desired_caps['platformVersion'] = '8.0.0' 
        desired_caps['appPackage'] = 'com.android.contacts' 
        desired_caps['appActivity'] = 'com.android.contacts.activities.PeopleActivity' 
        desired_caps['deviceName'] = 'N8K7N17606003031' 
        self.driver = webdriver.Remote('http://localhost:4724/wd/hub', desired_caps) 
 
if __name__ == '__main__': 
    suite = unittest.TestLoader().loadTestsFromTestCase(HelloWorld) 
    unittest.TextTestRunner(verbosity=2).run(suite) 

上面的这段代码,实现了打开Android手机联系人应用的功能。其中,需要注意的几个点是:

1、”platformVersion”可通过”adb shell getprop ro.build.version.release”来获取;

2、”appPackage”和”appActivity”可通过”adb shell dumpsys window | grep mCurrentFocus”来获取(Mac OS X系统);

3、”deviceName”可通过”adb devices”来获取;

4、”self.driver = webdriver.Remote(‘http://localhost:4724/wd/hub‘, desired_caps)”,这段代码中,端口号(Port)切记与Appium运行的端口号保持一致。

这是我写的第一段自动化测试的代码。

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/16386.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论