- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
正如标题所示,现在,firefox 打开,似乎什么也没做,然后就消失了!
(是的,我已经升级到最新的selenium等,如下: Selenium 3.141.0 split 0.10.0六1.12.0urllib3 1.25.3)现在,geckodriver.log 显示以下内容:
1559646629845 geckodriver INFO Listening on 127.0.0.1:60172
1559646630836 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.5DqFww40mZ6W
1559646630851 geckodriver::marionette INFO Starting browser /usr/bin/firefox
1559646630857 geckodriver::marionette INFO Connecting to Marionette on localhost:46681
1559646631959 addons.webextension.screenshots@mozilla.org WARN Loading extension 'screenshots@mozilla.org': Reading manifest: Invalid extension permission: mozillaAddons
1559646631960 addons.webextension.screenshots@mozilla.org WARN Loading extension 'screenshots@mozilla.org': Reading manifest: Invalid extension permission: resource://pdf.js/
1559646631960 addons.webextension.screenshots@mozilla.org WARN Loading extension 'screenshots@mozilla.org': Reading manifest: Invalid extension permission: about:reader*
1559646637156 Marionette INFO Listening on port 2828
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: NetworkError when attempting to fetch resource..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:190:13
JavaScript error: jar:file:///usr/lib/firefox/omni.ja!/components/nsUrlClassifierListManager.js, line 329: NS_ERROR_NOT_INITIALIZED: Component returned failure code: 0xc1f30001 (NS_ERROR_NOT_INITIALIZED) [nsIUrlClassifierDBService.getTables]
JavaScript error: jar:file:///usr/lib/firefox/omni.ja!/components/nsUrlClassifierListManager.js, line 329: NS_ERROR_NOT_INITIALIZED: Component returned failure code: 0xc1f30001 (NS_ERROR_NOT_INITIALIZED) [nsIUrlClassifierDBService.getTables]
1559646742440 Marionette INFO Stopped listening on port 2828ss
我还在远程 ubuntu-16.04 VM(没有 GUI)上尝试过此操作,控制台显示相同的“连接被拒绝”消息,但这次 geckodriver.log 显示不同的问题,如下所示:( Selenium 3.141.0六1.12.0 split 0.10.0urllib3 1.25.3)
1559563047915 geckodriver INFO geckodriver 0.18.0
1559563047918 geckodriver INFO Listening on 127.0.0.1:51758
1559563049045 geckodriver::marionette INFO Starting browser /usr/bin/firefox with args ["-marionette"]
MobaXterm X11 proxy: Unsupported authorisation protocol
Failed to connect to Mir: Failed to connect to server socket: No such file or directory
Unable to init server: Broadway display type not supported: localhost:11.0
Error: cannot open display: localhost:11.0
1559644244502 geckodriver INFO geckodriver 0.18.0
1559644244506 geckodriver INFO Listening on 127.0.0.1:53086
1559644245634 geckodriver::marionette INFO Starting browser /usr/bin/firefox with args ["-marionette"]
MobaXterm X11 proxy: Unsupported authorisation protocol
Failed to connect to Mir: Failed to connect to server socket: No such file or directory
Unable to init server: Broadway display type not supported: localhost:10.0
Error: cannot open display: localhost:10.0
我的测试代码是:
from splinter import Browser
browser = Browser()
browser.visit( 'https://www.google.com' )
browser.fill( 'q', 'splinter - python acceptance testing for web application' )
browser.quit()
我很感激有类似的问题发布到“连接被拒绝”类型的问题与 Selenium ...我希望找到一个特定于Python的解决方案,在我看来是“网络问题”或“显示问题”。 ..
最佳答案
此错误消息...
1559646629845 geckodriver INFO Listening on 127.0.0.1:60172
1559646630836 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.5DqFww40mZ6W
1559646630851 geckodriver::marionette INFO Starting browser /usr/bin/firefox
1559646630857 geckodriver::marionette INFO Connecting to Marionette on localhost:46681
1559646631959 addons.webextension.screenshots@mozilla.org WARN Loading extension 'screenshots@mozilla.org': Reading manifest: Invalid extension permission: mozillaAddons
1559646637156 Marionette INFO Listening on port 2828
console.error: BroadcastService:
receivedBroadcastMessage: handler for
remote-settings/monitor_changes
threw error:
Message: Error: Polling for changes failed: NetworkError when attempting to fetch resource..
Stack:
remoteSettingsFunction/remoteSettings.pollChanges@resource://services-settings/remote-settings.js:190:13
JavaScript error: jar:file:///usr/lib/firefox/omni.ja!/components/nsUrlClassifierListManager.js, line 329: NS_ERROR_NOT_INITIALIZED: Component returned failure code: 0xc1f30001 (NS_ERROR_NOT_INITIALIZED) [nsIUrlClassifierDBService.getTables]
1559646742440 Marionette INFO Stopped listening on port 2828s
...暗示 GeckoDriver 无法启动/生成新的 WebBrowsing session ,即 Firefox 浏览器 session 。
您的主要问题是您使用的二进制文件版本之间不兼容,如下所示:
因此,GeckoDriver v0.18.0 Selenium Client v3.141.0 之间存在明显的不匹配。
<小时/>tearDown(){}
方法中调用 driver.quit()
来关闭和销毁 WebDriver 和 Web Client 优雅地实例化。Note: Always maintain the following GeckoDriver, Selenium and Firefox Browser compatibility matrix
<小时/>You can find a relevant detailed discussionin Which Firefox browser versions supported for given Geckodriver version?
关于python - 连接被拒绝且轮询更改失败 : NetworkError when attempting to fetch resource error with Selenium GeckoDriver and Firefox,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56446337/
我已经尝试使用这两种方法(“标准结帐”和“一体化 SDK”)来实现 Paytm,但是我的交易页面或 Paytm 应用程序永远不会为付款打开,并且我在 onActivityResult 中收到 netw
我发现这个案例很有趣whatwg规范: If evaluationStatus is an abrupt completion, then: If rethrow errors is true and
总体而言,我在 javascript 和 Web 开发方面缺乏经验。我正在从事的项目是一般公司培训计划的一部分。我们已被指示使用 Google Chrome 作为主要测试浏览器。 本质上,我正在编写一
当我使用aurelia-fetch-client将json数据发布到服务器时,出现此错误“尝试获取资源时出现TypeError:NetworkError”。我认为您的回答对我非常有用。 post.ht
我有基于枚举 NetworkError 打印网络错误的基本功能。看起来像这样: void HttpClient::HandleNetworkError(QNetworkReply::NetworkEr
我正在用 Elm 构建我的第一个网络应用程序,我遇到了一个问题,当我向本地服务器发出获取请求时,Elm 说它是“NetworkError”,即使浏览器控制台说它有效。 我做了一个最小的例子如下: 服务
我有相当多的使用 React 构建网络应用程序的经验,但我想学习 Elm。几天来,我一直在努力解决 HTTP 请求问题。 我在 localhost:8080 运行一个 Elm 应用程序,在 local
在 Chrome 的 JavaScript 控制台中,如果我运行这个: var that = new XMLHttpRequest(); that.open('GET', 'http://this_i
我正在使用 jquery 和 javascript 以及使用 jquery 插件开发一个客户端项目。我们的教授为我们提供了一个 proxy.php 文件,用于提取运行 Web 应用程序所需的数据。我使
我发现了很多与我的问题类似的问题,但我没有得到解决方案,这就是我在这里问的原因。 我刚刚开始学习使用 React 进行前端开发。我为在不同端口运行的前端和后端制作了单独的应用程序。 后端:运行于 in
我想研究一下使用 haskell 进行后端和 elm 进行前端的 Web 开发。所以我写了这两个简单的“hello world”代码代码片段 榆树: import Html exposing (..)
我在 firebug 中遇到错误: “NetworkError: 404 Not Found - (removed)/style.css” 这是什么意思,我需要做什么? 谢谢! 最佳答案 HTTP 4
我遇到了这个问题: Response { type: "cors", url: "http://localhost:3000/api/marks", redirected: false, status
我正在尝试通过 javascript 删除 Google 联系人。根据我定义的 Google Contacts api v3: scope to https://www.google.com/m8/f
我正在创建一个 Android React Native 应用程序,一切似乎都运行良好,除非我尝试调试该程序。当我尝试执行此操作时,该应用会变成空白屏幕,并且 Chrome 控制台会出现此错误: 未捕
下面是我们的 Rails 3.2 应用程序中的 js 代码,用于响应 id 以“order_order_items_attributes”开头的字段的更改: $(function (){ $(
我正在使用 express、fetch 和 firefox。这是代码 async updateTutorial() { const requestOptions = { method:
我正在使用 express、fetch 和 firefox。这是代码 async updateTutorial() { const requestOptions = { method:
问题: [NetworkError] 在 Angular SSR 控制台中没有附加信息。 image of console output 注:它似乎没有破坏代码 环境信息: Angular 8.1 S
我编写了一个使用 getJSON 的代码(见下文)。 FireBug 返回以下错误消息: "NetworkError: 500 Internal Server Error - http://local
我是一名优秀的程序员,十分优秀!