当前位置:网站首页 > Python编程 > 正文

python由于目标计算机积极拒绝 无法连接(selenium由于目标计算机积极拒绝,无法连接)



直接上代码

E:Panda_testvenvScriptspython.exe D:/test_auto/run.py
Active code page: 65001
============================= test session starts =============================
platform win32 -- Python 3.7.0, pytest-5.4.3, py-1.9.0, pluggy-0.13.1 -- E:Panda_testvenvScriptspython.exe
cachedir: .pytest_cache
rootdir: D: est_auto
collecting ... collected 2 items

self =

:return: New socket connection.
"""
extra_kw = {}
if self.source_address:
extra_kw["source_address"] = self.source_address

E:Panda_testvenvlibsite-packagesb3connection.py:160:


def create_connection(
address,
timeout=socket._GLOBAL_DEFAULT_TIMEOUT,
source_address=None,
socket_options=None,
):
"""Connect to address and return the socket object.

Convenience function. Connect to address (a 2-tuple ) and return the socket object. Passing the optional
timeout parameter will set the timeout on the socket instance
before attempting to connect. If no timeout is supplied, the
global default timeout setting returned by :func:
is used. If source_address is set it must be a tuple of (host, port)
for the socket to bind as a source address before making the connection.
An host of '' or port 0 tells the OS to use the default.
"""

host, port = address
if host.startswith("["):
host = host.strip("[]")
err = None

# Using the value from allowed_gai_family() in the context of getaddrinfo lets
# us select whether to work with IPv4 DNS records, IPv6 records, or both.
# The original create_connection function always returns all records.
family = allowed_gai_family()

for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
af, socktype, proto, canonname, sa = res
sock = None
try:
sock = socket.socket(af, socktype, proto)

if timeout is not socket._GLOBAL_DEFAULT_TIMEOUT:
sock.settimeout(timeout)
if source_address:
sock.bind(source_address)
sock.connect(sa)
return sock

except socket.error as e:
err = e
if sock is not None:
sock.close()
sock = None

if err is not None:

raise err

E:Panda_testvenvlibsite-packagesb3յconnection.py:84:


def create_connection(
address,
timeout=socket._GLOBAL_DEFAULT_TIMEOUT,
source_address=None,
socket_options=None,
):
"""Connect to address and return the socket object.

Convenience function. Connect to address (a 2-tuple ) and return the socket object. Passing the optional
timeout parameter will set the timeout on the socket instance
before attempting to connect. If no timeout is supplied, the
global default timeout setting returned by :func:
is used. If source_address is set it must be a tuple of (host, port)
for the socket to bind as a source address before making the connection.
An host of '' or port 0 tells the OS to use the default.
"""

host, port = address
if host.startswith("["):
host = host.strip("[]")
err = None

# Using the value from allowed_gai_family() in the context of getaddrinfo lets
# us select whether to work with IPv4 DNS records, IPv6 records, or both.
# The original create_connection function always returns all records.
family = allowed_gai_family()

for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
af, socktype, proto, canonname, sa = res
sock = None
try:
sock = socket.socket(af, socktype, proto)

if timeout is not socket._GLOBAL_DEFAULT_TIMEOUT:
sock.settimeout(timeout)
if source_address:
sock.bind(source_address)

E:Panda_testvenvlibsite-packagesb3յconnection.py:74: ConnectionRefusedError

During handling of the above exception, another exception occurred:

self =
method = 'POST', url = '/session/9555d23d-401f-43f3-a4cc-a05a2104a3a1/url'
body = '{"url": "https://www.baidu.com"}'
headers = {'Accept': 'application/json', 'Connection': 'keep-alive', 'Content-Type': 'application/json;charset=UTF-8', 'User-Agent': 'selenium/3.141.0 (python windows)'}
retries = Retry(total=0, connect=None, read=None, redirect=None, status=None)
redirect = False, assert_same_host = False
timeout = , pool_timeout = None
release_conn = True, chunked = False, body_pos = None
response_kw = {'request_url': 'http://127.0.0.1:51773/session/9555d23d-401f-43f3-a4cc-a05a2104a3a1/url'}
conn = None, release_this_conn = True, err = None, clean_exit = False
timeout_obj = Timeout(connect=, read=, total=None)
is_new_proxy_conn = False

def urlopen(
self,
method,
url,
body=None,
headers=None,
retries=None,
redirect=True,
assert_same_host=True,
timeout=_Default,
pool_timeout=None,
release_conn=None,
chunked=False,
body_pos=None,
response_kw
):
"""
Get a connection from the pool and perform an HTTP request. This is the
lowest level call for making a request, so you'll need to specify all
the raw details.

.. note::

.. note::

will only behave as expected if
because we want to make
the default behaviour someday soon without
breaking backwards compatibility.

:param body:
Data to send in the request body (useful for creating
POST requests, see HTTPConnectionPool.post_url for
more convenience).

:param headers:
Dictionary of custom headers to send, such as User-Agent,
If-None-Match, etc. If None, pool headers are used. If provided,
these headers completely replace any pool-specific headers.

:param retries:
Configure the number of retries to allow before raising a
:class: exception.

Pass to retry until you receive a response. Pass a
:class: object for fine-grained control
over different types of retries.
Pass an integer number to retry connection errors that many times,
but no other types of errors. Pass zero to never retry.

If , then retries are disabled and any exception is raised
immediately. Also, instead of raising a MaxRetryError on redirects,
the redirect response will be returned.

:type retries: :class:, False, or an int.

:param redirect:
If True, automatically handle redirects (status codes 301, 302,
303, 307, 308). Each redirect counts as a retry. Disabling retries
will disable redirect, too.

:param assert_same_host:
If , will make sure that the host of the pool requests is
consistent else will raise HostChangedError. When False, you can
use the pool on an HTTP proxy and request foreign hosts.

:param timeout:
If specified, overrides the default timeout for this one
request. It may be a float (in seconds) or an instance of
:class:.

:param pool_timeout:
If set and the pool is set to block=True, then this method will
block for seconds and raise EmptyPoolError if no
connection is available within the time period.

:param release_conn:
If False, then the urlopen call will not release the connection
back into the pool once a response is received (but will release if
you read the entire contents of the response such as when
). This is useful if you're not preloading
the response's content immediately. You will need to call
on the response to return the connection
back into the pool. If None, it takes the value of
.

:param chunked:
If True, urllib3 will send the body using chunked transfer
encoding. Otherwise, urllib3 will send the body using the standard
content-length form. Defaults to False.

:param int body_pos:
Position to seek to in file-like body in the event of a retry or
redirect. Typically this won't need to be set because urllib3 will
auto-populate the value when needed.

:param response_kw:
Additional parameters are passed to
:meth:
"""
if headers is None:
headers = self.headers

# Check host
if assert_same_host and not self.is_same_host(url):
raise HostChangedError(self, url, retries)

# Ensure that the URL we're connecting to is properly encoded
if url.startswith("/"):
url = six.ensure_str(_encode_target(url))
else:
url = six.ensure_str(parse_url(url).url)

conn = None

# Track whether needs to be released before
# returning/raising/recursing. Update this variable if necessary, and
# leave constant throughout the function. That way, if
# the function recurses, the original value of will be
# passed down into the recursive call, and its value will be respected.
#
# See issue #651 [1] for details.
#
# [1] https://github.com/urllib3/urllib3/issues/651
release_this_conn = release_conn

# Merge the proxy headers. Only do this in HTTP. We have to copy the
# headers dict so we can safely change it without those changes being
# reflected in anyone else's copy.
if self.scheme == "http":
headers = headers.copy()
headers.update(self.proxy_headers)

# Must keep the exception bound to a separate variable or else Python 3
# complains about UnboundLocalError.
err = None

# Keep track of whether we cleanly exited the except block. This
# ensures we do proper cleanup in finally.
clean_exit = False

# Rewind body position, if needed. Record current position
# for future rewinds in the event of a redirect/retry.
body_pos = set_file_position(body, body_pos)

try:
# Request a connection from the queue.
timeout_obj = self._get_timeout(timeout)
conn = self._get_conn(timeout=pool_timeout)

conn.timeout = timeout_obj.connect_timeout

is_new_proxy_conn = self.proxy is not None and not getattr(
conn, "sock", None
)
if is_new_proxy_conn:
self._prepare_proxy(conn)

# Make the request on the httplib connection object.
httplib_response = self._make_request(
conn,
method,
url,
timeout=timeout_obj,
body=body,
headers=headers,

E:Panda_testvenvlibsite-packagesb3connectionpool.py:677:


self =
conn =
method = 'POST', url = '/session/9555d23d-401f-43f3-a4cc-a05a2104a3a1/url'
timeout = Timeout(connect=, read=, total=None)
chunked = False
httplib_request_kw = {'body': '{"url": "https://www.baidu.com"}', 'headers': {'Accept': 'application/json', 'Connection': 'keep-alive', 'Content-Type': 'application/json;charset=UTF-8', 'User-Agent': 'selenium/3.141.0 (python windows)'}}
timeout_obj = Timeout(connect=, read=, total=None)

def _make_request(
self, conn, method, url, timeout=_Default, chunked=False, httplib_request_kw
):
"""
Perform a request on a given urllib connection object taken from our
pool.

:param timeout:
Socket timeout in seconds for the request. This can be a
float or integer, which will set the same timeout value for
the socket connect and the socket read, or an instance of
:class:, which gives you more fine-grained
control over your timeouts.
"""
self.num_requests += 1

timeout_obj = self._get_timeout(timeout)
timeout_obj.start_connect()
conn.timeout = timeout_obj.connect_timeout

# Trigger any extra validation we need to do.
try:
self._validate_conn(conn)
except (SocketTimeout, BaseSSLError) as e:
# Py2 raises this as a BaseSSLError, Py3 raises it as socket timeout.
self._raise_timeout(err=e, url=url, timeout_value=conn.timeout)
raise

# conn.request() calls httplib.*.request, not the method in
# urllib3.request. It also calls makefile (recv) on the socket.
if chunked:
conn.request_chunked(method, url, httplib_request_kw)
else:

conn.request(method, url, httplib_request_kw)

E:Panda_testvenvlibsite-packagesb3connectionpool.py:392:


self =
method = 'POST', url = '/session/9555d23d-401f-43f3-a4cc-a05a2104a3a1/url'
body = '{"url": "https://www.baidu.com"}'
headers = {'Accept': 'application/json', 'Connection': 'keep-alive', 'Content-Type': 'application/json;charset=UTF-8', 'User-Agent': 'selenium/3.141.0 (python windows)'}

def request(self, method, url, body=None, headers={}, *,
encode_chunked=False):
"""Send a complete request to the server."""

self._send_request(method, url, body, headers, encode_chunked)

C:UsersAdministratorAppDataLocalProgramsPythonPython37libhttpclient.py:1229:


self =
method = 'POST', url = '/session/9555d23d-401f-43f3-a4cc-a05a2104a3a1/url'
body = b'{"url": "https://www.baidu.com"}'
headers = {'Accept': 'application/json', 'Connection': 'keep-alive', 'Content-Type': 'application/json;charset=UTF-8', 'User-Agent': 'selenium/3.141.0 (python windows)'}
encode_chunked = False

def _send_request(self, method, url, body, headers, encode_chunked):
# Honor explicitly requested Host: and Accept-Encoding: headers.
header_names = frozenset(k.lower() for k in headers)
skips = {}
if 'host' in header_names:
skips['skip_host'] = 1
if 'accept-encoding' in header_names:
skips['skip_accept_encoding'] = 1

self.putrequest(method, url, skips)

# chunked encoding will happen if HTTP/1.1 is used and either
# the caller passes encode_chunked=True or the following
# conditions hold:
# 1. content-length has not been explicitly set
# 2. the body is a file or iterable, but not a str or bytes-like
# 3. Transfer-Encoding has NOT been explicitly set by the caller

if 'content-length' not in header_names:
# only chunk body if not explicitly set for backwards
# compatibility, assuming the client code is already handling the
# chunking
if 'transfer-encoding' not in header_names:
# if content-length cannot be automatically determined, fall
# back to chunked encoding
encode_chunked = False
content_length = self._get_content_length(body, method)
if content_length is None:
if body is not None:
if self.debuglevel > 0:
print('Unable to determine size of %r' % body)
encode_chunked = True
self.putheader('Transfer-Encoding', 'chunked')
else:
self.putheader('Content-Length', str(content_length))
else:
encode_chunked = False

for hdr, value in headers.items():
self.putheader(hdr, value)
if isinstance(body, str):
# RFC 2616 Section 3.7.1 says that text default has a
# default charset of iso-8859-1.
body = _encode(body, 'body')

self.endheaders(body, encode_chunked=encode_chunked)

C:UsersAdministratorAppDataLocalProgramsPythonPython37libhttpclient.py:1275:


This method sends the request to the server. The optional message_body
argument can be used to pass a message body associated with the
request.
"""
if self.state == _CS_REQ_STARTED:
self.
state = _CS_REQ_SENT
else:
raise CannotSendHeader()

self._send_output(message_body, encode_chunked=encode_chunked)

C:UsersAdministratorAppDataLocalProgramsPythonPython37libhttpclient.py:1224:


Appends an extra to the buffer.
A message_body may be specified, to be appended to the request.
"""
self._buffer.extend((b"", b""))
msg = b" ".join(self._buffer)
del self._buffer[:]

self.send(msg)

C:UsersAdministratorAppDataLocalProgramsPythonPython37libhttpclient.py:1016:


def send(self, data):
"""Send ` can be a string object, a bytes object, an array object, a
file-like object that supports a .read() method, or an iterable object.
"""

self.connect()

C:UsersAdministratorAppDataLocalProgramsPythonPython37libhttpclient.py:956:


self =

def connect(self):

conn = self._new_conn()

E:Panda_testvenvlibsite-packagesb3connection.py:187:


self =

:return: New socket connection.
"""
extra_kw = {}
if self.source_address:
extra_kw["source_address"] = self.source_address

try:
conn = connection.create_connection(
(self._dns_host, self.port), self.timeout, extra_kw
)

except SocketTimeout:
raise ConnectTimeoutError(
self,
"Connection to %s timed out. (connect timeout=%s)"
% (self.host, self.timeout),
)

self, "Failed to establish a new connection: %s" % e
)
E urllib3.exceptions.NewConnectionError: : Failed to establish a new connection: [WinError 10061] 由于目标计算机积极拒绝,无法连接。

E:Panda_testvenvlibsite-packagesb3connection.py:172: NewConnectionError

During handling of the above exception, another exception occurred:

self =

def test_2(self):

self.driver.get('https://www.baidu.com')

cases登录模块 est_登录.py:32:


E:Panda_testvenvlibsite-packagesseleniumwebdriver emotewebdriver.py:333: in get
self.execute(Command.GET, {'url': url})
E:Panda_testvenvlibsite-packagesseleniumwebdriver emotewebdriver.py:319: in execute
response = self.command_executor.execute(driver_command, params)
E:Panda_testvenvlibsite-packagesseleniumwebdriver emote emote_connection.py:374: in execute
return self._request(command_info[0], url, body=data)
E:Panda_testvenvlibsite-packagesseleniumwebdriver emote emote_connection.py:397: in _request
resp = self._conn.request(method, url, body=body, headers=headers)
E:Panda_testvenvlibsite-packagesb3 equest.py:80: in request
method, url, fields=fields, headers=headers, urlopen_kw
E:Panda_testvenvlibsite-packagesb3 equest.py:171: in request_encode_body
return self.urlopen(method, url, extra_kw)
E:Panda_testvenvlibsite-packagesb3poolmanager.py:336: in urlopen
response = conn.urlopen(method, u.request_uri, kw)
E:Panda_testvenvlibsite-packagesb3connectionpool.py:765: in urlopen
response_kw
E:Panda_testvenvlibsite-packagesb3connectionpool.py:765: in urlopen
response_kw
E:Panda_testvenvlibsite-packagesb3connectionpool.py:765: in urlopen
response_kw
E:Panda_testvenvlibsite-packagesb3connectionpool.py:725: in urlopen
method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]


self = Retry(total=0, connect=None, read=None, redirect=None, status=None)
method = 'POST', url = '/session/9555d23d-401f-43f3-a4cc-a05a2104a3a1/url'
response = None
error = NewConnectionError(': Failed to establish a new connection: [WinError 10061] 由于目标计算机积极拒绝,无法连接。')
_pool =
_stacktrace =

def increment(
self,
method=None,
url=None,
response=None,
error=None,
_pool=None,
_stacktrace=None,
):
""" Return a new Retry object with incremented retry counters.

:param response: A response object, or None, if the server did not
return a response.
:type response: :class:
:param Exception error: An error encountered during the request, or
None if the response was received successfully.

:return: A new object.
"""
if self.total is False and error:
# Disabled, indicate to re-raise the error.
raise six.reraise(type(error), error, _stacktrace)

total = self.total
if total is not None:
total -= 1

connect = self.connect
read = self.read
redirect = self.redirect
status_count = self.status
cause = "unknown"
status = None
redirect_location = None

if error and self._is_connection_error(error):
# Connect retry?
if connect is False:
raise six.reraise(type(error), error, _stacktrace)
elif connect is not None:
connect -= 1

elif error and self._is_read_error(error):
# Read retry?
if read is False or not self._is_method_retryable(method):
raise six.reraise(type(error), error, _stacktrace)
elif read is not None:
read -= 1

elif response and response.get_redirect_location():
# Redirect retry?
if redirect is not None:
redirect -= 1
cause = "too many redirects"
redirect_location = response.get_redirect_location()
status = response.status

else:
# Incrementing because of a server error like a 500 in
# status_forcelist and a the given method is in the whitelist
cause = ResponseError.GENERIC_ERROR
if response and response.status:
if status_count is not None:
status_count -= 1
cause = ResponseError.SPECIFIC_ERROR.format(status_code=response.status)
status = response.status

history = self.history + (
RequestHistory(method, url, error, status, redirect_location),
)

new_retry = self.new(
total=total,
connect=connect,
read=read,
redirect=redirect,
status=status_count,
history=history,
)

if new_retry.is_exhausted():

E:Panda_testvenvlibsite-packagesb3յretry.py:439: MaxRetryError
------------------------------ Captured log call ------------------------------
WARNING urllib3.connectionpool:connectionpool.py:750 Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError(': Failed to establish a new connection: [WinError 10061] 由于目标计算机积极拒绝,无法连接。')': /session/9555d23d-401f-43f3-a4cc-a05a2104a3a1/url
WARNING urllib3.connectionpool:connectionpool.py:750 Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError(': Failed to establish a new connection: [WinError 10061] 由于目标计算机积极拒绝,无法连接。')': /session/9555d23d-401f-43f3-a4cc-a05a2104a3a1/url
WARNING urllib3.connectionpool:connectionpool.py:750 Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError(': Failed to establish a new connection: [WinError 10061] 由于目标计算机积极拒绝,无法连接。')': /session/9555d23d-401f-43f3-a4cc-a05a2104a3a1/url
=========================== short test summary info ===========================
FAILED cases/登录模块/test_登录.py::Test_登录::test_2 - urllib3.exceptions.Ma...
======================== 1 failed, 1 passed in 22.83s =========================

Process finished with exit code 0

到此这篇python由于目标计算机积极拒绝 无法连接(selenium由于目标计算机积极拒绝,无法连接)的文章就介绍到这了,更多相关内容请继续浏览下面的相关 推荐文章,希望大家都能在编程的领域有一番成就!

版权声明


相关文章:

  • python怎么编写函数(Python怎么编写函数)2025-05-08 14:09:08
  • python函数大全及详解下载(python函数代码大全)2025-05-08 14:09:08
  • py文件怎么用python打开(用python运行py文件)2025-05-08 14:09:08
  • python中的函数怎么用(python &函数)2025-05-08 14:09:08
  • ubuntu源代码下载方法(ubuntu源码安装python)2025-05-08 14:09:08
  • python执行pyc文件(python执行py文件代码)2025-05-08 14:09:08
  • python函数如何定义,举例说明(python的函数定义规范)2025-05-08 14:09:08
  • 免费源代码网站(python网站免费)2025-05-08 14:09:08
  • python文件打开后闪退(python执行后闪退)2025-05-08 14:09:08
  • Python函数调用(python函数调用函数代码)2025-05-08 14:09:08
  • 全屏图片