测试积点老人 发表于 2020-11-24 11:51:41

appium怎么在手机浏览器里输入网址呢

from appium import webdriver
import time

desired_caps = {}
desired_caps['platformName'] = 'Android'
desired_caps['platformVersion'] = '6.0.0'
desired_caps['deviceName'] = 'SangSung_S6'
desired_caps['appPackage'] = 'com.UCMobile.x86'
desired_caps['appActivity'] = 'com.UCMobile.main.UCMobile'

driver = webdriver.Remote('http://localhost:4723/wd/hub', desired_caps)
time.sleep(3)

代码后面写什么能够让uc浏览器打开特定网址呢?

郭小贱 发表于 2020-11-25 10:17:09

1. 如果你想测试H5的话那么请使用chrome浏览器,代码中去掉appPackage和appActivity这两项,增加一项参数Browser='Chrome',
之后代码中要打开某个地址时如下:
driver.get('http://ask.testfan.cn')

2.如果你想测试uc浏览器app,那么目前你这样的做法是对的.

qqq911 发表于 2020-11-25 11:30:49

模拟键盘输入

海海豚 发表于 2020-11-25 11:32:48

https://www.cnblogs.com/MUMO/p/5924410.html看下这个

jingzizx 发表于 2020-11-25 13:27:02

写入跳转就行

bellas 发表于 2020-11-25 14:32:19

一楼说的很详细
页: [1]
查看完整版本: appium怎么在手机浏览器里输入网址呢