python中使用selenium错误-Firefox浏览器

今天下午学习了一下编写自动化脚本,遇到的问题,记录一下。

解决方法:下载geckodriver.exe,将下载好的geckodriver.exe放入到D:\MyConfiguration\wtt42800\AppData\Local\Programs\Python\Python36-32(python的安装目录)

参考链接:http://jingyan.baidu.com/article/c910274b87b84acd361d2da3.html

https://github.com/mozilla/geckodriver/releases/tag/v0.19.0

https://pypi.python.org/pypi/selenium/

时间: 2024-10-08 21:26:04

python中使用selenium错误-Firefox浏览器的相关文章

python中使用selenium调用Firefox缺少geckodriver解决方法

from selenium import webdriver driver=webdriver.Firefox() 会报错 解决方法: 因为缺少geckodriver.exe,先到https://github.com/mozilla/geckodriver/releases下载对应版本的geckofriver.exe 然后放到python的安装目录与python.exe在同一目录下

解决Selenium与firefox浏览器版本不兼容问题

因为在用java打开firefox浏览器的时候报错 org.openqa.selenium.firefox.NotConnectedException: Unable to connect to host 127.0.0.1 on port 7055 after 45000 ms 在网上查阅了说是兼容问题 然后就开始找selenium版本与对应firefox版本匹配的记录 各firefox版本下载地址 http://ftp.mozilla.org/pub/firefox/releases/ 各s

python中使用selenium的一些注意

#coding:utf-8from selenium import webdriverfrom selenium.webdriver.common.action_chains import ActionChains #引入ActionChains鼠标操作类from selenium.webdriver.common.keys import Keys #引入keys类操作import time def main():    browser = webdriver.Chrome('D:\\phant

[乐意黎原创] 使用Selenium webdriver+Firefox浏览器来登录新浪微博

有个需求测试,需要用webdriver 登录到新浪微博,由于个人比较善长 Webdriver,于是采取了Webdriver+FireFox来实现. 配置环境 a. 必须首先在Eclipse里加载 selenium webdriver 包[[此处我导入的是 selenium-server-standalone-2.45.0.jar] b. 以及安装了 firefox 浏览器. 此篇文章中我用了本人的新浪微博地址来做测试,大家 可以更换为自己的新浪微博帐号和密码. 文中为部分主要的Java 代码.

Selenium驱动Firefox浏览器

用Maven构建Selenium依赖 <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-java</artifactId> <version>3.8.1</version></dependency> import org.openqa.selenium.By;import org.openqa.seleniu

安装selenium操作步骤(python中使用selenium)

前置条件:系统中已经安装好python个pip 第一步:在cmd中进入到pip安装目录,如:D:\python34\scripts 第二步:执行安装命令:pip install selenium 安装完成后进行浏览器驱动配置 第三步:在网上下载浏览器驱动(谷歌.IE.火狐等) 第四步:将下载好的浏览器驱动放在python安装的目录的根目录 第五步:将浏览器驱动的路径配置到环境变量中,如:D:\python34\Chome.exe 完成以上步骤可以输入以下代码进行测试: from selenium

使用python中出现的错误及解决办法

[问题1]在编译安装完Python后,不能正常使用yum,使用yum出现以下错误 [[email protected] bin]# yum  File "/usr/bin/yum", line 30    except KeyboardInterrupt, e:                            ^SyntaxError: invalid syntax [解决办法] 将/usr/bin/yum文件的第一行中的解释器转换回python-2.7 [[email prot

python中通过selenium简单操作及元素定位

浏览器的简单操作 # 导入webdriver模块 # 创建driver对象,指定Chrome浏览器 driver = webdriver.Chrome() # 窗口最大化 driver.maximize_window() # 访问百度 driver.get("http://baidu.com") driver.get("http://sina.com") # 后退 driver.back() # 前进 driver.forward() # 刷新 driver.ref

Selenium之firefox浏览器的启动

1.编写如下代码 import org.openqa.selenium.WebDriver; import org.openqa.selenium.firefox.FirefoxDriver; /** * Created by Administrator on 2018/3/29 0029. */ public class FirefoxTest { public static void main(String[] args){ WebDriver driver; //启动找不到firefox才