Unhandled error: TypeError: Cannot read property 'maxBuffer' of undefined
来源:1-3 Appium环境搭建

慕九州7298273
2019-07-16
老师 我的demo一直跑不起来,针对报错网上查询也没查到原因,麻烦老师帮我排查下,报错见截图
写回答
2回答
-
慕九州7298273
提问者
2019-07-16
# coding=utf-8
from appium import webdriver
import time
desired_caps = {
'platformName': 'Android',
'deviceName': 'CLB0219320000437',
'app':'D:\\vipkid_v2.18.0_34734081_default_2019-06-28_debug.apk',
'platformVersion': '23', #5.1.1
'noReset':'true',
'automationName': 'uiautomator2',
'androidDeviceReadyTimeout' : '20'
#'sessionOverride':True
}
driver = webdriver.Remote('http://127.0.0.1:4723/wd/hub', desired_caps)
time.sleep(5)
driver.quit()00 -
Mushishi
2019-07-16
代码发一下呀
022019-07-17
相似问题