- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有一个问题:我想测试“select”和“input”。我可以像下面的代码那样写吗:原始代码:
12 class Sinaselecttest(unittest.TestCase):
13
14 def setUp(self):
15 binary = FirefoxBinary('/usr/local/firefox/firefox')
16 self.driver = webdriver.Firefox(firefox_binary=binary)
17
18 def test_select_in_sina(self):
19 driver = self.driver
20 driver.get("https://www.sina.com.cn/")
21 try:
22 WebDriverWait(driver,30).until(
23 ec.visibility_of_element_located((By.XPATH,"/html/body/div[9]/div/div[1]/form/div[3]/input"))
24 )
25 finally:
26 driver.quit()
# #测试select功能
27 select=Select(driver.find_element_by_xpath("//*[@id='slt_01']")).select_by_value("微博")
28 element=driver.find_element_by_xpath("/html/body/div[9]/div/div[1]/form/div[3]/input")
29 element.send_keys("杨幂")
30 driver.find_element_by_xpath("/html/body/div[9]/div/div[1]/form/input").click()
31 driver.implicitly_wait(5)
32 def tearDown(self):
33 self.driver.close()
我想测试Selenium的“选择”功能。所以我选择新浪网站选择一个选项并在textarea中输入文本。然后搜索它。但是当我运行此测试时,出现错误:
Traceback (most recent call last):
File "test_sina_select.py", line 32, in tearDown
self.driver.close()
File "/usr/lib/python2.7/site-packages/selenium/webdriver/remote/webdriver.py", line 688, in close
self.execute(Command.CLOSE)
File "/usr/lib/python2.7/site-packages/selenium/webdriver/remote/webdriver.py", line 319, in execute
response = self.command_executor.execute(driver_command, params)
File "/usr/lib/python2.7/site-packages/selenium/webdriver/remote/remote_connection.py", line 376, in execute
return self._request(command_info[0], url, body=data)
File "/usr/lib/python2.7/site-packages/selenium/webdriver/remote/remote_connection.py", line 399, in _request
resp = self._conn.request(method, url, body=body, headers=headers)
File "/usr/lib/python2.7/site-packages/urllib3/request.py", line 68, in request
**urlopen_kw)
File "/usr/lib/python2.7/site-packages/urllib3/request.py", line 81, in request_encode_url
return self.urlopen(method, url, **urlopen_kw)
File "/usr/lib/python2.7/site-packages/urllib3/poolmanager.py", line 247, in urlopen
response = conn.urlopen(method, u.request_uri, **kw)
File "/usr/lib/python2.7/site-packages/urllib3/connectionpool.py", line 617, in urlopen
release_conn=release_conn, **response_kw)
File "/usr/lib/python2.7/site-packages/urllib3/connectionpool.py", line 617, in urlopen
release_conn=release_conn, **response_kw)
File "/usr/lib/python2.7/site-packages/urllib3/connectionpool.py", line 617, in urlopen
release_conn=release_conn, **response_kw)
File "/usr/lib/python2.7/site-packages/urllib3/connectionpool.py", line 597, in urlopen
_stacktrace=sys.exc_info()[2])
File "/usr/lib/python2.7/site-packages/urllib3/util/retry.py", line 271, in increment
raise MaxRetryError(_pool, url, error or ResponseError(cause))
MaxRetryError: HTTPConnectionPool(host='127.0.0.1', port=51379): Max retries exceeded with url: /session/2e64d2a1-3c7f-4221-96fe-9d0b1c102195/window (Caused by ProtocolError('Connection aborted.', error(111, 'Connection refused')))
----------------------------------------------------------------------
Ran 1 test in 72.106s
谁能告诉我为什么?谢谢
最佳答案
此错误消息...
MaxRetryError: HTTPConnectionPool(host='127.0.0.1', port=51379): Max retries exceeded with url: /session/2e64d2a1-3c7f-4221-96fe-9d0b1c102195/window (Caused by ProtocolError('Connection aborted.', error(111, 'Connection refused')))
...意味着调用 self.driver.close()
方法失败,引发 MaxRetryError。
有几件事:
首先也是最重要的,根据讨论 max-retries-exceeded exceptions are confusing 回溯有点误导。为了用户的方便,请求包装了异常。原始异常是显示消息的一部分。
请求从不重试(它为 urllib3 的 HTTPConnectionPool
设置了 retries=0
),因此如果没有 MaxRetryError,错误会更加规范 和 HTTPConnectionPool 关键字。因此,理想的回溯应该是:
ConnectionError(<class 'socket.error'>: [Errno 1111] Connection refused)
但是@sigmavirus24又在他的comment中提到...包装这些异常可以提供一个很棒的 API,但调试体验很差...
接下来的计划是尽可能向下遍历到最低级别的异常并使用它。
最后,通过重新措辞一些与实际连接拒绝错误无关的异常,解决了这个问题。
即使在调用 tearDown(self)
中的 self.driver.close()
之前, 中的 try{} block test_select_in_sina(self)
包含您调用 driver.quit()
的finally{},该函数用于调用/shutdown端点以及随后的网络驱动程序和客户端实例被完全销毁,关闭所有页面/选项卡/窗口。因此不再存在连接。
You can find a couple of relevant detailed discussion in:
在这种情况下,当您调用 self.driver.close()
时 python客户端无法找到任何事件连接来发起关闭。因此您会看到错误。
因此,一个简单的解决方案是删除 driver.quit()
行,即删除 finally
block 。
根据 Selenium 3.14.1 的发行说明:
* Fix ability to set timeout for urllib3 (#6286)
合并是:repair urllib3 can't set timeout!
<小时/>升级到Selenium 3.14.1后,您将能够设置超时并查看规范的回溯,并能够采取所需的操作。
<小时/>一些相关引用:
关于python - MaxRetryError : HTTPConnectionPool: Max retries exceeded (Caused by ProtocolError ('Connection aborted.' ,错误(111, 'Connection refused'))),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54175357/
当我尝试使用 requests 下载一些图像时遇到了这个奇怪的错误,代码如下, import requests import StringIO r = requests.get(image_url,
这个问题在这里已经有了答案: 关闭 11 年前。 Possible Duplicate: Perplexing Ruby/MySQL Error: "invalid packet: sequence
我在我的 RPI 上安装了 sphinx 和 Jasper。当我尝试启动 Jasper 时 - 我得到了这个: Traceback (most recent call last): F
最近我在使用 pip 时遇到困难,每当我尝试发出 pip 命令时,我都会收到以下错误消息。 File "/usr/bin/pip", line 9, in load_entry_point(
我是 python 新手,所以我真的可以在这里使用一些帮助。 我在 Google 和 SA 上搜索过,但找不到任何东西。反正我用的是python库Wordpress XMLRPC . myblog ,
尝试使用 Puppetter 打印 PDF 时出现以下错误。我无法在网上找到有关此错误的更多信息。这是否意味着这个特定页面不支持 PDF,或者我的代码中是否有可以修改它的设置?任何帮助,将不胜感激。
我们围绕 Magento 的 XML-RPC API 构建了一个广泛的中间件系统。我们已经用 Python 封装了端点并进行了大量的多重调用。 API 以看似随机的间隔响应 ProtocolError
使用 python 时,我在导入 twython 时遇到问题。安装似乎没问题,但由于某种原因,我收到以下错误。第一次尝试导入时,出现错误“ImportError:无法导入名称 ProtocolErro
使用 tweepy 运行一个 python 脚本,它在英语推文的随机样本中流式传输(使用 twitter 流式 API)一分钟,然后交替搜索(使用 twitter 搜索 API)一分钟,然后返回。我发
我正在使用 Python 从比特币区 block 链收集数据(交易量、挖矿费用等)。为此,我尝试使用 JSON 查询 blockchain.info 上的各个页面。 导入 json、requests
我在我的 Django 项目中使用 Django-Allauth。我添加了一些社交服务提供商(Facebook、谷歌),效果非常好! 但是我在尝试使用 OpenID 提供商时遇到了问题。到目前为止,我
我在 TASK: nginx container 上遇到错误: failed: [localhost] => {"changed": false, "failed": true} msg: Conne
我有一个问题:我想测试“select”和“input”。我可以像下面的代码那样写吗:原代码: 12 class Sinaselecttest(unittest.TestCase): 13 14
我使用 pip 安装了 virtualenv,但收到此错误: [root@szlnginx_proxy bin]# ./pip install virtualenv Collecting virtua
我有一个问题:我想测试“select”和“input”。我可以像下面的代码那样写吗:原始代码: 12 class Sinaselecttest(unittest.TestCase): 13 14
我有一个问题:我想测试“select”和“input”。我可以像下面的代码那样写吗:原始代码: 12 class Sinaselecttest(unittest.TestCase): 13 14
设置: Selenium : 3.141.0 python : 3.6.7 heroku-stack : heroku-18 headless Chrome : v71.0.3578.80 build
我正在尝试使用 Python Selenium chromedriver 在 chrome 上打开一个网站。 Chrome 浏览器正在打开(带有警告),但 url 未打开。 版本详细信息:Chrome
我正在尝试使用 Python Selenium chromedriver 在 chrome 上打开一个网站。 Chrome 浏览器正在打开(带有警告)但 url 未打开。 版本详情:Chrome:68
我是一名优秀的程序员,十分优秀!