- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我花了一整天的时间来解决这个问题。我的 selenium 代码与 chromedriver 和 geckodriver 在 Windows 上完美配合,我需要 celery,我最好的选择是切换到我的 ubuntu 操作系统(版本 20)。应该显示抓取的数据的页面显示消息:连接被拒绝。 geckodriver 是 26 版
这是错误。
File "/home/maro/Desktop/crypto/cert/lib/python3.8/site-packages/django/core/handlers/exception.py", line 34, in inner
response = get_response(request)
File "/home/maro/Desktop/crypto/cert/lib/python3.8/site-packages/django/core/handlers/base.py", line 115, in _get_response
response = self.process_exception_by_middleware(e, request)
File "/home/maro/Desktop/crypto/cert/lib/python3.8/site-packages/django/core/handlers/base.py", line 113, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/home/maro/Desktop/crypto/forex/views.py", line 80, in pricelist
driver = webdriver.Firefox(executable_path='/usr/bin/geckodriver')
File "/home/maro/Desktop/crypto/cert/lib/python3.8/site-packages/selenium/webdriver/firefox/webdriver.py", line 170, in __init__
RemoteWebDriver.__init__(
File "/home/maro/Desktop/crypto/cert/lib/python3.8/site-packages/selenium/webdriver/remote/webdriver.py", line 157, in __init__
self.start_session(capabilities, browser_profile)
File "/home/maro/Desktop/crypto/cert/lib/python3.8/site-packages/selenium/webdriver/remote/webdriver.py", line 252, in start_session
response = self.execute(Command.NEW_SESSION, parameters)
File "/home/maro/Desktop/crypto/cert/lib/python3.8/site-packages/selenium/webdriver/remote/webdriver.py", line 321, in execute
self.error_handler.check_response(response)
File "/home/maro/Desktop/crypto/cert/lib/python3.b/site-packages/selenium/webdriver/remote/errorhandler.py", line 242, in check_response
raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.TimeoutException: Message: connection refused
我已将我的 Firefox 从 75 版更新到 80 版,但仍然没有变化。我已经多次更改驱动程序路径,但错误仍然保持不变。
1594416320001 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileS5CJqR"
geckodriver 是可执行的,我还检查了主机以查看 localhost 是否附加到 127.0.... url,是的,它是。我完全糊涂了
import time
import selenium
from django.shortcuts import render
from django.contrib.auth import login, authenticate, logout
from .forms import SignUpForm
from django.shortcuts import render, redirect
from selenium import webdriver
from selenium.webdriver.firefox.options import Options
from selenium.webdriver.common.by import By
def pricelist(request):
driver = webdriver.Firefox(executable_path='/usr/bin/geckodriver')
driver.get('')
data = []
while not data:
for elm in driver.find_elements(By.CSS_SELECTOR, "span[data-field=CPT]"):
if elm.text and elm.text != '-':
data.append(elm.text)
time.sleep(3)
context = {
"price": 123,
"mydata": data
}
return render(request, 'pricelist.html', context)
最佳答案
我已经让它工作了。我切换到 chromedriver,我遇到了类似的问题,发现 chromedriver 使用与我的 Django 应用程序相同的端口。我使用 python manage.py runserver 8001
将我的 Django 应用程序的端口更改为 8001
关于python - geckodriver 没有在 ubuntu 上使用 selenium 和 django 打开 firefox,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62843069/
我正在使用 Gunicorn 为 Django 应用程序提供服务,它工作正常,直到我将其超时时间从 30 秒更改为 900000 秒,我不得不这样做,因为我有一个用例需要上传和处理一个巨大的文件(过程
我有一个带有非常基本的管道的Jenkinsfile,它可以旋转docker容器: pipeline { agent { dockerfile { args '-u root' } } stag
在学习 MEAN 堆栈的过程中,我遇到了一个问题。每当我尝试使用 Passport 验证方法时,它都不会返回任何响应。我总是收到“localhost没有发送任何数据。ERR_EMPTY_RESPONS
在当今的大多数企业堆栈中,数据库是我们存储所有秘密的地方。它是安全屋,是待命室,也是用于存储可能非常私密或极具价值的物品的集散地。对于依赖它的数据库管理员、程序员和DevOps团队来说,保护它免受所
是否可以创建像图片上那样的边框?只需使用 css 边框属性。最终结果将是没 Angular 盒子。我不想添加额外的 html 元素。我只想为每个 li 元素添加 css 边框信息。 假设这是一个 ul
我是一名优秀的程序员,十分优秀!