selenium是怎么启动firefox

 我来答
llzzcc66
2016-08-13 · 知道合伙人数码行家
llzzcc66
知道合伙人数码行家
采纳数:81385 获赞数:171481
公司运维员工

向TA提问 私信TA
展开全部
from selenium import webdriver   class Register(unittest.TestCase):   def setUp(self):   self.driver = webdriver.Firefox()   self.driver.implicitly_wait(30)   self.base_url = ""   self.verificationErrors = []   self.accept_next_alert = true   上面这段代码运行的时候,selenium会打开一个新的,不含有任何插件和个人证书的firefox(等同于全新安装后第一次打开的那个firefox)。   但是有些时候,我们希望selenium打开的firefox要有插件或者有已经导入的个人证书,这种情况下,上面的代码就不起作用了。   这时候,我们就会用到firefoxprofile。   首先,介绍一下FirefoxProfile。   要了解Firefox profile请访问 这里 ,它详细解绍了Firefox proflie。在Firefox里,如何管理Firefox profile 请访问 这里 。   既然已经了解过Firefox profile,那么来解决我上面提出的问题。   其实上面的问题很简单,就是使用selenium启动平时使用的Firefox,而不让系统去启动一个新的什么都没有的浏览器。   from selenium import webdriver   class Register(unittest.TestCase):   def setUp(self):   self.profileDir = "\path\your\firefoxprofileDir"   self.profile = webdriver.FirefoxProfile(self.profileDir)   self.driver = webdriver.Firefox(self.profile)   self.driver.implicitly_wait(30)   self.base_url = ""   self.verificationErrors = []   首先,我先定义我需要使用的profile的文件夹,然后创建一个profile,并且把profile的地址传给它,接着启动firefox的时候传入这个profile,这样,系统再打开的firefox就是我们平时使用的那个了。  
微测检测5.10
2023-05-10 广告
您好!建议咨 深圳市微测检测有限公司,已建立起十余个专业实验室,企业通过微测检测就可以获得一站式的测试与认 证解决方案;(EMC、RF、MFi、BQB、QI、USB、安全、锂电池、快充、汽车电子EMC、汽车手机互 联、语音通话质量),认证遇... 点击进入详情页
本回答由微测检测5.10提供
匿名用户
2016-08-13
展开全部
  您好,很高兴为您解答:
  from selenium import webdriver

  class Register(unittest.TestCase):
  def setUp(self):
  self.driver = webdriver.Firefox()
  self.driver.implicitly_wait(30)
  self.base_url = ""
  self.verificationErrors = []
  self.accept_next_alert = true

  上面这段代码运行的时候,selenium会打开一个新的,不含有任何插件和个人证书的firefox(等同于全新安装后第一次打开的那个firefox)。

  但是有些时候,我们希望selenium打开的firefox要有插件或者有已经导入的个人证书,这种情况下,上面的代码就不起作用了。

  这时候,我们就会用到firefoxprofile。

  首先,介绍一下FirefoxProfile。

  要了解Firefox profile请访问 这里 ,它详细解绍了Firefox proflie。在Firefox里,如何管理Firefox profile 请访问 这里 。

  既然已经了解过Firefox profile,那么来解决我上面提出的问题。

  其实上面的问题很简单,就是使用selenium启动平时使用的Firefox,而不让系统去启动一个新的什么都没有的浏览器。

  from selenium import webdriver

  class Register(unittest.TestCase):
  def setUp(self):
  self.profileDir = "\path\your\firefoxprofileDir"
  self.profile = webdriver.FirefoxProfile(self.profileDir)
  self.driver = webdriver.Firefox(self.profile)
  self.driver.implicitly_wait(30)
  self.base_url = ""
  self.verificationErrors = []

  首先,我先定义我需要使用的profile的文件夹,然后创建一个profile,并且把profile的地址传给它,接着启动firefox的时候传入这个profile,这样,系统再打开的firefox就是我们平时使用的那个了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式