今天用火狐浏览器来做自动化,才启动就报错,提示不能创建新的session,不能启动浏览器 问题原因: 火狐driver与火狐浏览器与selenium版本的不兼容 我使用的火狐driver是0.21.0 版本,下载地址:https://github.com/mozilla/geckodriver/releases 使用的火狐浏览器版本是60,下载地址:http://www.firefox.com.cn/download/ 使用selenium-java的版本是3.12.0,因为是使用的maven,…
Cannot find firefox binary in PATH. Make sure firefox is installed. OS appears to be: VISTA Build info: version: '3.8.1', revision: '6e95a6684b', time: '2017-12-01T19:05:14.666Z' 解决方法: package my_automation; import org.openqa.selenium.WebDriver; impo…
首次在利用python中的selenium启动FireFox浏览器时可能碰到如下问题 当输入如下代码时: from selenium import webdriver brower=webdriver.Firefox() #首次调用时可能此处代码会报错 然后运行,如出现以下情况时 selenium.common.exceptions.WebDriverException: Message: 'geckodriver' executable needs to be in PATH. 可以用以下方法…
selenium 启动ie 浏览器 var driver = new InternetExplorerDriver(@"IEDriverServer.exe路径"); driver.Navigate().GoToUrl("http://www.baidu.com"); port每次启动的时候都不一样 很多人遇到说无法跳转到指定页面的情况,有些解说是ie浏览器安全设置问题,但是我的浏览器并没有去掉启用保护模式的勾选,也能启动成功…
使用无头浏览器,可以避免掉不确定的弹出框对脚本稳定性的影响,还能在脚本执行过程中省略掉了css 加载的时间. 以下是Selenium 启动无头浏览器的方法,只有chrome 和 firefox的. public static void startBrowser(String string) { switch(string.toLowerCase()){ case "chrome": System.setProperty("webdriver.chrome.driver&quo…
排错:Unable to create a new session key. It is likely that the cache is unavailable. 问题 登录openstack页面,报错,如下: 查看dashboard 的日志: vim /var/log/httpd/horizon_error.log 原因 查看 memcached发现是down的,启动 memcached解决 如果还不行: 1.修改配置文件 vim /usr/lib/python2.7/site-packag…
openstack按照官网docs部署horizon后,使用admin账号密码登录,但网页提示未知错误. 查看/var/log/httpd/error_log 提示这个:RuntimeError: Unable to create a new session key. It is likely that the cache is unavailable. 缓存有问题,在外国网站找到解决方案: 将 /etc/openstack-dashboard/local_settings 里的 SESSION…
环境是centos7,直接跑在服务器上. 按照官网一步步安装openstack,到验证dashborad时出错. 登录http://192.168.1.73/dashboard ,输入域名,用户名,密码,出现错误,无法进入界面 tail -40 /etc/httpd/logs/error_log 查看打印 发现 [Sat Aug 12 19:42:16.701521 2017] [:error] [pid 10885] Could not process panel theme_preview:…
[Mon Apr 15 01:02:31.654247 2019] [:error] [pid 19433:tid 139790082479872] Login successful for user "admin".[Mon Apr 15 01:02:33.645839 2019] [:error] [pid 19433:tid 139790082479872] Internal Server Error: /horizon/auth/login/[Mon Apr 15 01:02:…
安装了python2,使用pip安装了selenium,但是在使用时,报了“selenium.common.exceptions.WebDriverException: Message: 'geckodriver' executable needs to be in PATH.” 网上查了一下解决办法,此处做下记录: 原因:使用pip安装selenium,默认安装的是最新版本的selenium,使用pip list查了一下我的selenium版本,是3.5.0的,firefox版本,是47.0.…
启动ie代码: System.setProperty("webdriver.ie.driver", "bin/IEDriverServer.exe"); WebDriver driver = new InternetExplorerDriver(); String url = "http://www.baidu.com"; driver.get(url); 启动ie报错: Started InternetExplorerDriver server…
安装了python selenium,运行下面代码: 1 from selenium import webdriver 2 3 browser = webdriver.Chrome() 4 browser.get('http://www.baidu.com/') # 启动Chrome浏览器打开百度网址 报错: 1 Traceback (most recent call last): 2 File "I:/python/c ip/go.py", line 4, in <module…
1 火狐浏览器 (1).先在地址栏输入about:config,然后单击“我了解此风险”. (2).找到security.fileuri.strict_origin_policy,然后在值下面的true右键单击,选择切换,修改其参数:true改为false. (3).重启浏览器,跨域问题解决! 2.谷歌浏览器 右击谷歌浏览器快捷方式,属性—目标—在"C:\Program Files(x86)\Google\Chrome\Application\chrome.exe"后面加--allow…
两种类型的Out of Memory java.lang.OutOfMemoryError: Java heap space error 当JVM尝试在堆中分配对象,堆中空间不足时抛出.一般通过设定JAVA启动参数-Xmx最小可用内存解决. java.lang.OutOfMemoryError: Unable to create new native thread 当JVM向OS申请创建线程,而OS不能分配一个本地线程时抛出. 了解系统参数 系统级最大进程ID $ sysctl -a | gre…
环境准备 前言 selenium在windows机器上运行,每次会启动界面,运行很不稳定.于是想到用chrome来了的headless无界面模式,确实方便了不少. 为了提高自动化运行的效率和稳定性,于是把selenium自动化环境部署到linux服务器上,这样更方便. 环境: centons 7.6 python 3.6 chrome 77.0.3865.90 chromedriver 77.0.3865.40 selenium 3.14 安装最新版chrome 方法一:下载到本地后安装 先下载…
python 3.7 pycharm 1.安装selenium pip3 install selenium 2.下载与chrome匹配的chromdriver.exe,放到项目的解释器路径下,跟python.exe同一个路径 随笔最后附上匹配列表和下载链接 注:如果chromedriver.exe与chrome不匹配,启动会出现各种错误,比如启动不了,或者启动后不能正常访问网址 3.程序: from selenium import webdriver from time import sleep…
解决此问题的方法就是查看自己的浏览器是否没有放大至100%,如下 如果不是100%就会报错…
1.启动Chrome "webdriver.chrome.driver" System.setProperty("webdriver.chrome.driver", "files\\chromedriver.exe"); //指定驱动路径 WebDriver driver = new ChromeDriver(); 加载插件及使用用户默认浏览器配置 System.setProperty("webdriver.chrome.driver&…
要把ChromeDriver放到代码中的文件夹中c://*******Application public static WebDriver WebDriverRun(WebDriver driver){//            System.setProperty(Dom4jXml.getValue("chromeDriverName"), Dom4jXml.getValue("chromeDriverPath"));            // 设置 chro…
安装完MySQL之后,它每天凌晨启动一个Intaller任务,甚是烦人:   这是一个Windows的计划服务,在这里删除即可,开始/附件/系统工具/任务计划程序,把mysql的定时任务计划取消/删除就可以了 来自为知笔记(Wiz)…
raise exception_class(message, screen, stacktrace)selenium.common.exceptions.SessionNotCreatedException: Message: Unable to find a matching set of capabilities selenium3.0之后的版本的就不支持直接打开火狐浏览器,启动火狐浏览器报错,如下图,要想运行就需要我们单独装上驱动. 3.0之前的版本,是可以直接打开火狐浏览器的.火狐版本不…
selenium webdriver 启动三大浏览器Firefox,Chrome,IE 1.安装selenium 在联网的情况下,在Windows命令行(cmd)输入pip install selenium即可自动安装selenium,安装完成后,输入pip show selenium可查看当前的selenium版本. 2.安装三大浏览器驱动driver 1.chromedriver的驱动chromedriver 2.Firefox的驱动geckodriver 3.IE的驱动IEdriver 下…
之前在用selenium(火狐浏览器)打开一个https网站时,总是弹出不受信任,修改配置后,每次加载的浏览器都是还原了配置,无法加载出页面,这里给出解决办法:让浏览器去加载我们修改后的配置,具体如下: from selenium import webdriver #加载配置根据实际情况决定是否需要使用用户自定义的配置 profile_directory = r"C:\Users\cs\AppData\Roaming\Mozilla\Firefox\Profiles\oa2kgie8.defau…
在自动化测试过程中,通过selenium启动浏览器时,可能需要加载插件(如测试用的firebug.或产品中要求必须添加某插件等).读取用户数据(自己浏览器的配置文件/别人直接给的浏览器配置文件).设置浏览器(不加载图片等). 由于我们通过selenium启动的浏览器页面,是完全干净的页面,如果想要让该页面带上我们需要的信息,则需要自己设置. 下面讲一下Firefox和Chrome浏览器的各种启动方式: 一:Firefox 1.启动浏览器,使用浏览器上保存的所有用户数据. 用户数据是从Firefo…
:环境 java1.8+ieda 直接上代码 pom.xml <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http:/…
selenium3.4.0-java,启动谷歌浏览器和火狐浏览器-------------------------------------------------------------------------------- 启动谷歌浏览器 @Before public void setUp() throws Exception { System.setProperty("webdriver.chrome.driver","D:\\Configuration\\chromed…
本文示例使用selenium启动Firefox,并将浏览器窗口最大化,在百度搜索框内输入"HelloWorld",最后点击搜索按钮. 源代码如下: 1 package com.selenium.test; 2 3 import java.util.concurrent.TimeUnit; 4 import org.openqa.selenium.By; 5 import org.openqa.selenium.WebDriver; 6 import org.openqa.seleniu…
前两天使用Selenium分布式时,总抛出异常.更新成最新驱动可以解决.其中chrome异常如下, "platform": "WINDOWS" File "D:\Python36\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 157, in __init__ self.start_session(capabilities, browser_profile) File…
11.8 用selenium 模块控制浏览器selenium 模块让Python 直接控制浏览器,实际点击链接,填写登录信息,几乎就像是有一个人类用户在与页面交互.与Requests 和Beautiful Soup 相比,Selenium允许你用高级得多的方式与网页交互.但因为它启动了Web 浏览器,假如你只是想从网络上下载一些文件,会有点慢,并且难以在后台运行.附录A 有安装第三方模块的详细步骤.11.8.1 启动selenium 控制的浏览器对于这些例子,你需要FireFox 浏览器.它将成…