selenium chrome 自動加載flash


#coding:utf-8
from selenium import webdriver
from selenium.webdriver.support.select import Select
from selenium.webdriver.chrome.options import Options
import time

def login():
chromeOpitons = Options()
prefs = {
# "profile.managed_default_content_settings.images":1,
# "profile.content_settings.plugin_whitelist.adobe-flash-player":1,
"profile.content_settings.exceptions.plugins.*,*.per_resource.adobe-flash-player":1,
}
chromeOpitons.add_experimental_option('prefs',prefs)
driver =webdriver.Chrome(chrome_options=chromeOpitons)
driver.get("http://test.live.liXXXXng.com/#/login")
time.sleep(5)
# Sl = Select(driver.find_element_by_xpath('//*[@id="app"]/div[3]/select'))
# Sl.select_by_value("test")
# time.sleep(5)
login()


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM