解决Firefox浏览器每次打开都弹出导入向导的问题

每次打开Firefox浏览器都会弹出导入向导这个页面,只有这个页面关闭后,Firefox界面才会打开。

解决办法:

C:\Users\{用户名}\AppData\Roaming\Mozilla\Firefox\profiles.ini

把profiles.ini文件中IsRelative=1修改为IsRelative=0

报错:

in `connect_until_stable‘: unable to obtain stable firefox connection in 60 seconds (127.0.0.1:7055) (Selenium::WebDriver::Error::WebDriverError)

由于Firefox的更新较快,可能当前的gems包不再支持相关的操作了。

建议下载最新的gems包

https://rubygems.org/gems/selenium-webdriver

It seems Selenium Webdriver gets frequent updates to keep up with Firefox. But how do you know which version you need?  Hopefully this procedure will work even as versions change:

  1. Go to http://www.seleniumhq.org/download/.
  2. Scroll down to Selenium Client & WebDriver Language Bindings.
  3. In that section, in the Ruby language line, click on "Change Log" (direct link).
  4. In the Change Log, determine which version of Selenium you need for your version of Firefox.

If you‘re using Bundler, run bundle show selenium-webdriver to see which version you have.  To update, for example to 2.35.0, add this line to your Gemfile:

gem ‘selenium-webdriver‘, ‘2.35.0‘

and then run bundle update to install.  If you are using Spork, remember to re-start it before re-running your tests.

Update One StackOverflow answer indicates that the Change Log may be updated sooner in the source code repository than at seleniumhq.org.  The repository Change Log for Ruby is here:  https://github.com/SeleniumHQ/selenium/blob/master/rb/CHANGES.

Downgrading Firefox

If you need to downgrade Firefox on Ubuntu 12.04, this answer explains how to go back to Firefox 20.  A more general description of a way to switch to any version of Firefox is given here.  Then use this answer to put Firefox updates on hold until Selenium releases an update that works with the later version of Firefox.

In my case, I downgraded Firefox only to discover that Selenium Webdriver had recently been updated to handle the latest version, so check for Selenium updates first!

 
时间: 2024-10-12 12:54:18

解决Firefox浏览器每次打开都弹出导入向导的问题的相关文章

解决Linuxmint下每次打开Chrome弹出Unlock Login Keyring对话框

I think the simplest way is to set the password for the keyring to an empty password -- you will not be prompted for a password then: Open Applications -> Accessories -> Password and Encryption Keys Right-click on the "login" keyring Selec

解决每次启动都弹出UAC对话框

1.下载并安装微软官方工具 Microsoft Application Compatibility Toolkit 2.右击“Microsoft Application Compatibility Toolkit 5.5”程序组中的“Compatibility Administrator”,选择“以管理员身份运行”,单击“是”打开该工具. 3.单击工具栏上的“New”按钮,然后右击“Custom Databases”下的“New Database(1)”出现菜单,选择“Create New”下的

如何避免windows系统开机启动每次都弹出AutoIt报错

题目:如何避免windows系统开机启动每次都弹出AutoIt报错 有时候,有的电脑重新安装完操作系统后,会莫名奇妙的弹出一些意想不到的报错,有洁癖的人很反感这个,所以有针对性的解决这个算不上问题的小问题 电脑开机后会弹出以下的对话框: 解决办法如下: 原文地址:http://blog.51cto.com/vbers/2114661

[技术]打开网页弹出窗口的代码

经常上网的朋友可能会到过这样一些网站,一进入首页立刻会弹出一个窗口,或者按一个连接或按钮弹出,通常在这个窗口里会显示一些注意事项.版权信息.警告.欢迎光顾之类的话或者作者想要特别提示的信息.其实制作这样的页面效果非常的容易,只要往该页面的html里加入几段javascript代码即可实现.下面俺就带您剖析它的奥秘. [1.最基本的弹出窗口代码] 其实代码非常简单: <script language="javascript"> <!-- window.open ('pa

解决IOS safari在input focus弹出输入法时不支持position fixed的问题

该文章为转载 我们在做移动web应用的时候,常常习惯于使用position:fixed把一个input框作为提问或者搜索框固定在页面底部.但在IOS的safari和webview中,对position:fixed的支持不是很好(在IOS5之前甚至还不支持position:fixed).我遇到的其中一个问题就是,在iOS6+环境下,input focus弹出输入法的时候,设置了position fixed的input框浮在页面上了,而不是吸附在软键盘上.效果如图(图片来源于网上): 而Androi

解决PL/SQL Dev连接Oracle弹出空白提示框

第一次安装Oracle,装在虚拟机中,用PL/SQL Dev连接远程数据库的时候老是弹出空白提示框,网上找了很久,解决方法也很多,可是就是没法解决我这种情况的. 没办法,只能自己研究,经过大概一天时间吧,还是搞好了,写个总结. 出现这种问题,解决方法大概有这几种: 1.权限不够,导致弹出空吧提示框.(直接上链接) http://jingyan.baidu.com/article/066074d6760959c3c21cb0d6.html 就PL/SQL图标上点右键---属性---兼容性--管理员

美团_ccListView选中Item的颜色修改及解决登陆后升级通知再次弹出的bug

实现,在listView Xml中设置 android:listSelector="@color/green" 2. 解决登陆后升级通知再次弹出的bug ①: MineFragment跳转到Login界面使用StartActivityForResult,而不是StartActivity: @Override public void onActivityResult(int requestCode, int resultCode, Intent data) { if (data != n

点击每个li节点,都弹出其文本值及修改

点击每个li节点,都弹出其文本值 1,获取所有的li节点 var liNodes=document.GetElementsByTagName("li"); 2,使用for循环进行遍历,得到每一个li节点 for(var i=0;i<liNodes.length;i++){ alert(i); } 3,为每一个li节点添加onclick响应函数 liNodes[i].onclick=function(){ } 4,在响应函数中获取当前节点的文本值 this 为正在响应事件的那个节点

javascript 转化一个数字数组为function数组(每个function都弹出相应的数字)

javascript 转化一个数字数组为function数组(每个function都弹出相应的数字) var arrNum = [2,3,4,5,6,10,7]; var arrFun = []; function change(arr){ var fun = function(val){ return function(){ return val; }; } for(var i=0;i<arr.length;i++){ arrFun.push(fun(arr[i])); } return ar