2017-11-06 9 views
0

아래의 오류가 발생하는 python appium 클라이언트를 사용하여 이름, 전자 메일 및 기타 세부 사항을 android app에 채우려합니다. Appium 서버 버전 -1.4.16.1 파이썬 appium 클라이언트 = 0.22 및 0.24 개미로 해결되지 않는 오류가 발생했습니다.element.set_value가 파이썬 appium에서 작동하지 않습니다. 응용 프로그램 양식을 채우십시오.

element.set_value('Test_Uder') 
    File "build\bdist.win-amd64\egg\appium\webdriver\webelement.py", line 123, in set_value 
    self._execute(Command.SET_IMMEDIATE_VALUE, data) 
    File "D:\vikas_python_venv\my_appium\lib\site-packages\selenium-3.7.0-py2.7.egg\selenium\webdriver\remote\webelement.py", line 501, in _execute 
    return self._parent.execute(command, params) 
    File "D:\vikas_python_venv\my_appium\lib\site-packages\selenium-3.7.0-py2.7.egg\selenium\webdriver\remote\webdriver.py", line 308, in execute 
    self.error_handler.check_response(response) 
    File "build\bdist.win-amd64\egg\appium\webdriver\errorhandler.py", line 29, in check_response 
    raise wde 

WebDriverException : 메시지 : 아직 구현되지 않았습니다. 제발 도와주세요 : http://appium.io/get-involved.html

답변

0

"send_keys"를 사용 하시겠습니까? 이 같은

뭔가 "com.matchbook.client는"패키지 이름

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

self.driver.find_element_by_id(   
'com.matchbook.client:id/editTextUsername').send_keys("username_here") 

, 당신은 요소 ID 찾을 수 있습니다 (com.matchbook.client : ID/editTextUsername를) Appium 관리자를 사용하여 포함되어 있습니다 Appium 데스크탑 응용 프로그램에서.