当Appium中遇到alert(python篇)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了当Appium中遇到alert(python篇)相关的知识,希望对你有一定的参考价值。

当Appium中遇到alert,可以使用switch_to_alert(),以下是微信登录切换登录方式的代码示例:

技术分享
 1 #coding=utf-8
 2 from appium import webdriver
 3 from time import sleep
 4 import unittest
 5 
 6 class WxTestsCase(unittest.TestCase):
 7     def setUp(self):
 8         desired_cups={}
 9         desired_cups[platformName]=Android
10         desired_cups[platformVersion]=4.4.2
11         desired_cups[deviceName]=DU2SSE15A9032675
12         desired_cups[appPackage]=com.tencent.mm
13         desired_cups[appActivity]=com.tencent.mm.ui.LauncherUI
14         self.dr=webdriver.Remote("http://localhost:4725/wd/hub",desired_cups)
15         sleep(10)
16     def login(self):
17         self.dr.find_element_by_id(com.tencent.mm:id/ba_).click()
18         self.dr.switch_to_alert() #切换到alert窗口
19         self.dr.find_element_by_id(com.tencent.mm:id/et).click() #点击弹窗上的切换账号选项
20 
21 if __name__ == __main__:
22     suite = unittest.TestSuite()
23     suite.addTest(WxTestsCase(login))
24      # suite.addTest(cleanTestsCase(‘youhua‘))
25     # suite.addTest(cleanTestsCase(‘usual‘))
26     unittest.TextTestRunner(verbosity=2).run(suite)
View Code
技术分享
 1 #coding=utf-8
 2 from appium import webdriver
 3 from time import sleep
 4 import unittest
 5 
 6 class WxTestsCase(unittest.TestCase):
 7     def setUp(self):
 8         desired_cups={}
 9         desired_cups[platformName]=Android
10         desired_cups[platformVersion]=4.4.2
11         desired_cups[deviceName]=DU2SSE15A9032675
12         desired_cups[appPackage]=com.tencent.mm
13         desired_cups[appActivity]=com.tencent.mm.ui.LauncherUI
14         self.dr=webdriver.Remote("http://localhost:4725/wd/hub",desired_cups)
15         sleep(10)
16     def login(self):
17         self.dr.find_element_by_id(com.tencent.mm:id/ba_).click()
18         self.dr.switch_to_alert() #切换到alert窗口
19         self.dr.find_element_by_id(com.tencent.mm:id/et).click() #点击弹窗上的切换账号选项
20 
21 if __name__ == __main__:
22     suite = unittest.TestSuite()
23     suite.addTest(WxTestsCase(login))
24      # suite.addTest(cleanTestsCase(‘youhua‘))
25     # suite.addTest(cleanTestsCase(‘usual‘))
26     unittest.TextTestRunner(verbosity=2).run(suite)
View Code

 

以上是关于当Appium中遇到alert(python篇)的主要内容,如果未能解决你的问题,请参考以下文章

Appium-处理系统弹窗

Appium环境搭建python篇(mac系统)

Python+Appium学习篇之WebView处理

Python+Appium学习篇之WebView处理

搭建python+appium环境的时候遇到 'could not find adb.exe!'的问题

Python+Appium学习篇之WebView处理