#!usr/bin/env python
#-*- coding:utf-8 -*-
#啟用firefox的同時開啟firebug
from selenium import
webdriver
from selenium.webdriver.common.keys import
keys
import
time,unittest
class
testdemo(unittest.testcase):
deftest_openfirebug(self):
#找到自定義配置檔案路徑
profilepath = '
c:\...\3onuufut.addfirebug'#
將自定義配置檔案載入到firefoxprofile例項中
profile =webdriver.firefox.firefox_profile.firefoxprofile(profilepath)
# profile.set_preference('
browser.startup.homepage
','')
#設定啟動瀏覽器的同時主頁不為空白頁
profile.set_preference('
browser.startup.page
',1)
#自動開啟firebug
profile.set_preference('
extensions.firebug.allpagesactivation
','on')
#啟用firebug網路面板功能
profile.set_preference('
extensions.firebug.net.enablesites
',true)
#啟用firebug cookies面板功能
profile.set_preference('
extensions.firebug.cookies.enablesites
',true)
#啟動自定義配置資訊的firefox瀏覽器
driver = webdriver.firefox(firefox_profile=profile)
time.sleep(3)
input = driver.find_element_by_id('kw'
) input.send_keys(
'selenium')
time.sleep(30)
driver.quit()
if__name__ == '
__main__':
unittest.main()
預設啟用多程序的Firefox到底有多吃記憶體?
firefox 說要預設啟用多程序 內部稱為 e10s multi 專案 似乎已經說了很久。據 firefox 的開發人員 eric rahm 稱,該架構計畫於下乙個 54 版本啟用,屆時最多可以使用四個程序來管理 web 內容,而不再預設是乙個。針對使用者比較關心的記憶體占用問題,eric rah...
Firefox上開啟的標籤頁太多怎麼辦?
我以firefox作為我的第一瀏覽器,因為它有著非常多的擴充套件,可以打造成 我的瀏覽器 但我這個人興趣比較廣,同時開著的標籤頁比較多,如何對付它們就是個問題。標籤頁太多的第乙個問題就是占用記憶體大 啟動時恢復比較慢,bar tab可以解決這個問題 啟動時只有最後啟用的那個tab會被載入,其它標籤頁...
VSCODE執行C程式的時候如何同時開啟兩個終端
編寫udp客戶端和服務端的時候,需要同時執行兩個終端來模擬通訊。我使用的ide是vscode,由於一開始配置c 環境的時候,launch.json中只配置了乙個shell,所以只能同時開啟乙個 我們只要在配置檔案中將shell配置再拷貝乙份即可。如下所示。launch.json out args s...