Pycharm 오류 보고: ConnectionRefusedError: [WinError 10061] 대상 컴퓨터가 적극적으로 거부하여 연결할 수 없습니다.
2025 단어 Appium
환경: 야신 시뮬레이터 + Appium + Python
Pycharm을 열고 스크립트를 직접 실행합니다.
# coding:utf-8
from appium import webdriver
# desired_caps = {}
desired_caps = dict()
desired_caps['platformName'] = "Android" # ios Android
desired_caps['platformVersion'] = '5.1.1' # Android ,
desired_caps['deviceName'] = '127.0.0.1:62001' #
desired_caps['appname'] = 'kaoyan3.1.0.apk'
desired_caps['noReset'] = 'False'
desired_caps['unicodeKeyboard'] = 'True'
desired_caps['resetKeyboard'] = 'True'
desired_caps['appPackage'] = 'com.tal.kaoyan' # apk
desired_caps['appActivity'] = 'com.tal.kaoyan.ui.activity.SplashActivity' # apk launcherActivity
driver = webdriver.Remote('http://127.0.0.1:4723/wd/hub', desired_caps) # session
print('execute success!')
driver.quit() # session
:
platform win32 -- Python 3.7.4, pytest-5.0.1, py-1.8.0, pluggy-0.12.0 rootdir: E:\MyDOC\Git\AppiumProj\test_case test_demo.py:None(test demo.py)...(약간의 오류 생략)...C:\Python37\lib\urllib3\util\connection.py:70: in create_connection sock.connect(sa) E ConnectionRefusedError: [WinError 10061] 대상 컴퓨터의 적극적인 거부로 인해 연결할 수 없습니다.
During handling of the above exception, another exception occurred:...(약간의 오류 생략)...E urllib3.exceptions.New Connection Error::Failed to establish a new connection: [WinError 10061]타겟 컴퓨터가 적극적으로 거부하여 연결할 수 없습니다.
During handling of the above exception, another exception occurred:...(약간의 오류 생략)...
2. 문제 해결:
1. 야신 시뮬레이터를 켜고 대응하는 앱(kaoyan3.1.0.apk)을 설치한다.
설치 방법:
(1) 야신 시뮬레이터에 직접 끌어넣기;
(2) 야신 시뮬레이터에 로컬 apk 추가하기;
(3) 야신 시뮬레이터의 응용 상점에서 다운로드하기;
2、단축키 "win+r"에서 cmd를 열고 appium을 입력:
C:\Users\Administrator>appium [Appium] Welcome to Appium v1.14.2 [Appium] Appium REST http interface listener started on 0.0.0.0:4723
오케이~
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Appium - Execute 드라이버 스 크 립 트 (드라이버 스 크 립 트 실행)Run a WebdriverIO script against the current session, allowing execution of many commands in one Appium request./현재 세 션 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.