appium案例
Posted 七月的尾巴
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了appium案例相关的知识,希望对你有一定的参考价值。
import unittest from time import sleep from appium import webdriver import desired_capabilities class ChromeTests(unittest.TestCase): def setUp(self): desired_caps = { ‘platformName‘: ‘android‘, ‘platformVersion‘: ‘4.2‘, ‘deviceName‘: ‘Android Emulator‘, ‘browserName‘: ‘Chrome‘ } self.driver = webdriver.Remote(‘http://localhost:xxx/wd/hub‘, desired_caps) def tearDown(self): self.driver.quit() def test_find_single_element(self): self.driver.get(‘http://xx.x.x.x:xxx/xxx/xxxx‘) self.driver.find_element_by_link_text(‘i am a link‘).click() self.assertTrue(‘I am some other page content‘ in self.driver.page_source) if __name__ == "__main__": suite = unittest.TestLoader().loadTestsFromTestCase(ChromeTests) unittest.TextTestRunner(verbosity=2).run(suite)
以上是关于appium案例的主要内容,如果未能解决你的问题,请参考以下文章
爬虫学习笔记(二十三)—— Appium+Mitmproxy
Express实战 - 应用案例- realworld-API - 路由设计 - mongoose - 数据验证 - 密码加密 - 登录接口 - 身份认证 - token - 增删改查API(代码片段