1.设置下载路径和新标签页打开链接(设置后无效)
profile = webdriver.FirefoxProfile()
# profile.set_preference("browser.link.open_newwindow", 3)
# profile.set_preference("browser.link.open_newwindow.restriction",0)
profile.set_preference('browser.download.dir', cert_path)
profile.set_preference('browser.download.folderList', 2)
# profile.set_preference("browser.link.open_newwindow", 3)
self.driver = webdriver.Firefox(firefox_profile=profile)
参数含义
要实现只允许一个Firefox实例运行,我们需要了解about:config中的两个配置参数 browser.link.open_newwindow和browser.link.open_newwindow.restriction。其中,browser-link-open_newwindow-restriction
browser.link.open_newwindow 的作用是控制链接是否在新窗口中打开,它有3个值可供选择:
3 在新标签页中打开链接;
2 (默认值)在新窗口中打开链接;
1 在当前窗口或者标签页中打开链接。
browser.link.open_newwindow.restriction定义了通过JavaScript 打开的窗口与 browser.link.open_newwindow 的设置是否保持一致,它也有3个值可供选择:
2 (在Firefox较新版本中,默认值)有设置窗口属性的(如size), 则在新窗口中打开;若没有设置,则与 browser.link.open_newwindow 的设置保持一致;
1 在新窗口中打开某一链接;
0 所有通过JavaScript 打开的窗口均与browser.link.open_newwindow 的设置保持一致。