2013-05-06 52 views

回答

5

您可以使用下面的配置文件禁用Flash。

from selenium.webdriver.firefox.firefox_profile import FirefoxProfile 

    def disableImages(self): 
     ## Firefox profile object 
     firefoxProfile = FirefoxProfile() 

     ## Disable Flash 
     firefoxProfile.set_preference('dom.ipc.plugins.enabled.libflashplayer.so', 
             'false') 
     ## Set the modified profile while creating the browser object 
     self.browserHandle = webdriver.Firefox(firefoxProfile) 
+0

非常好。非常感謝你! – 2013-05-07 15:29:48

+0

不幸的是,這並沒有爲我工作。 – BCR 2015-07-23 16:19:46

+0

你能指定一些更多的細節,如FF和硒版本? – Hemanth 2015-07-24 06:25:29

相關問題