appium經過deep links或scheme url實現應用內跳轉

appium中能夠經過設置desired caps啓動應用。app

desire_caps_data = {      'automationName': 'Appium', 
                            'deviceName': 'HT6920203551',
                            #'deviceName': 'NX523JV1',
                            'platformName': 'Android',
                            #'platformVersion': '5.1.1',
                            'platformVersion': '10',
                            'noReset': True
                     }

要實現應用內跳轉,可使用deep links或scheme url.ide

 

deep links或scheme url(遵循scheme協議) 的形式:url

[協議名(能夠自定義)]://[域名][頁面]?[參數(多個參數用&分隔)]spa

如:myorder://www.ycbje.com/yc?id=hello&name=cg
 
 
String urlStr= "myvideo://www.ycbjie.cn:80/yc?id=hello&name=cg";
//url = protocol + authority(host + port) + path + query
//協議protocol= myvideo
//域名authority= www.ycbjie.cn:80
//頁面path= /yc
//參數query= id=hello&name=cg
//authority = host + port
//主機host= www.ycbjie.cn
//端口port= 80
 
 

跳轉方式:code

driver.get(scheme_url)orm

相關文章
相關標籤/搜索