关于在from selenium import webdrive的时候报错

这篇具有很好参考价值的文章主要介绍了关于在from selenium import webdrive的时候报错。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

首先,我pip selenium的地方是anaconda的 Anaconda prompt 内,并且成功导入

pip install selenium 

出现Successfully installed selenium-4.5.0  

from selenium import webdriver报错,爬虫任务,大数据平台运维,selenium,python,测试工具

另外,版本号是可以指定的,个人建议直接pip,因为会自动选择你的python版本能兼容的最高版本,有其他要求的忽略此条

pip install selenium==4.5.0

在提示成功导入之后,你就可以去编译器里面尝试,使用相关的导入命令:

from selenium import webdrive

如果在这一步的时候你的webdrive不能tab出来或者有红色的波浪下划线,那么这时候不要慌张,请你最高py文件对应的文件名是不是被你设置为了selenium.py,如果是的话,那么恭喜你,你给自己挖的坑被你找到了,因为你在from selenium import webdrive  的时候系统会去找selenium,然后就找到你刚刚创建的这哥文件名,但是在这个文件下面并没有webdrive,所以才会出现报错,并且你按住CTRL再去点击selenium也会是空的:

解决办法:

只需要把你的这个文件名换掉就好了&文章来源地址https://www.toymoban.com/news/detail-586697.html

到了这里,关于关于在from selenium import webdrive的时候报错的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • ImportError: cannot import name 'Keys' from 'selenium.webdriver' (E:\ProgramData\Anaconda3\lib\site-...

    这个错误提示表明你正在尝试从 selenium.webdriver 包中导入名为 \\\"Keys\\\" 的模块,但是在 selenium.webdriver 的初始化文件 init .py 中找不到这个模块。 你可以尝试以下步骤来解决这个问题: 确保你安装的 selenium 版本是最新的,并且与你使用的 Python 版本兼容。 尝试重新安装 selenium 包

    2024年02月13日
    浏览(45)
  • Web自动化测试:selenium的使用以及关于driver=webdriver.Firefox()无驱动报错问题

    Selenium是一个用于Web应用程序测试的工具。 主流的自动化测试工具有: web自动化测试:selenium、robot framework App端自动化测试:Appium、Monkeyrunner、UIautomation PC客户端(win32)自动化测试:QTP 接口自动化测试:Jmeter、Postman、httpUnit、RESTClient 云测平台:Testin Testbird 性能测试:Jm

    2024年02月09日
    浏览(71)
  • 安装Selenium报错解决&webdriver下载

    一、安装Selenium报错解决 在安装Selenium模块的时候就报错 ERROR: Cannot uninstall \\\'certifi\\\'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall. 就试了一下pip install certifi --ignore-installed  然后就成功了(pip install Selenium #这个

    2024年02月04日
    浏览(48)
  • python使用selenium webDriver时 报错

    可能原因和解决: 1. python 解释器 ---- 设置 2. 浏览器 版本 与 浏览器驱动 版本不一致 ---- 安装同一版本的 (下载chromedriver  |  谷歌驱动更高版本的测试版)   参考:Python使用Selenium WebDriver的入门介绍及安装教程-CSDN博客 Selenium安装WebDriver最新Chrome驱动(含116/117/118/119)_chromedri

    2024年02月04日
    浏览(41)
  • 关于selenium库浏览器webdriver不能被找到的问题

    报错提示: selenium.common.exceptions.NoSuchDriverException: Message: Unable to obtain driver for firefox using Selenium Manager.; For documentation on this error, please visit: https://www.selenium.dev/documentation/webdriver/troubleshooting/errors/driver_location 意思就是找不到驱动火狐浏览器的webdriver,网络上回答的方法一般是:

    2024年02月08日
    浏览(55)
  • pyinstaller打包selenium报错找不到webdriver

    遇到的情况: 使用pyinstaller -w -F打包selenium 在大部分机器上运行正常 但是少数机器上运行报错 selenium版本:3.141.0 报错内容: Message: ‘chromedriver.exe’ executable needs to be in PATH. Please see https://sites.google.com/a/chromium.org/chromedriver/home 关键代码: 在网上查了许多方法,比如将chromedriver和e

    2024年02月16日
    浏览(100)
  • 解决selenium使用webdriver.Chrome()报错的问题

    谷歌驱动下载地址: https://sites.google.com/a/chromium.org/chromedriver/home   运行成功(打开浏览器显示chrome正在受自动化软件测试的控制就代表成功):  找到def __init__(self, executable_path=\\\"chromedriver\\\", port=0, 修改executable_path=\\\"chromedriver\\\" 为executable_path=\\\"chromedriver驱动的路径\\\"   修改成功后

    2024年02月11日
    浏览(55)
  • 报错 ‘selenium.webdriver‘ has no attribute ‘Chrome‘

    小白在搭建python环境并创建第一个selenium项目后,调用chromedriver插件时,代码报错: ‘selenium.webdriver‘ has no attribute ‘Chrome‘    前提条件:已安装selenium,chromedriver插件放在正确路径下并添加到环境变量。 解决方法:参考调用chrome插件失败 当前项目虚拟环境下的解释器环

    2024年02月12日
    浏览(46)
  • selenium使用 webdriver.Chrome() 报错,找不到执行文件的解决方法(一)

    使用 driver = webdriver.Chrome() 时,遇到以下报错: selenium.common.exceptions.WebDriverException: Message: \\\'chromedriver\\\' executable needs to be in PATH. 两种解决方法: (1)在webdriver.Chrome()中添加executable_path参数,参数value = chromedriver.exe文件所在路径,示例: from selenium import webdriver chrome_driver_path

    2024年02月11日
    浏览(79)
  • 3.解决Pycharm报错Unresolved reference ‘selenium‘ Unresolved reference ‘webdriver‘

    目录 问题 解决方案 出现该问题可能是由于编辑器中没有找到Selenium的路径,把路径添加上去就可以解决问题 1.打开编辑器中的setting 2.点击+Add Content Root   3.找到安装selenium的路径  4.点击Apply之后再点击Sources 5.最后点击Apply然后点击OK返回主界面,报错解决

    2024年02月13日
    浏览(45)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包