菜鸟一枚,实在不知道自己错在哪里了~~麻烦帮忙看下
android_contact.py 在 c 盘根目录下
1、用 npm 安装的 appium
2、把 ContactManager.apk 放在了 E:\test 路径:E:\test\ContactManager.apk
3、启动了 appium 如图:
4、脚本 android_contact.py 如图:
#-*- coding:utf-8 -*-
import os
from selenium import webdriver
# Returns abs path relative to this file and not cwd
PATH = lambda p: os.path.abspath(
os.path.join(os.path.dirname(__file__), p)
)
desired_caps = {}
desired_caps['device'] = 'Android'
desired_caps['browserName'] = ''
#版本对应手机版本
desired_caps['version'] = '4.2.2'
#路径改了
desired_caps['app'] = PATH('E:\test\ContactManager.apk')
desired_caps['app-package'] = 'com.example.android.contactmanager'
desired_caps['app-activity'] = '.ContactManager'
driver = webdriver.Remote('http://localhost:4723/wd/hub', desired_caps)
el = driver.find_element_by_name("Add Contact")
el.click()
textfields = driver.find_elements_by_tag_name("textfield")
textfields[0].send_keys("My Name")
textfields[2].send_keys("someone@somewhere.com")
driver.find_element_by_name("Save").click()
driver.quit()
5、报错:如图