/
ilya.petrash
/
SimplePyScripts
Обзор
Документация
Войти
/
ilya.petrash
/
SimplePyScripts
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
selenium__examples/firefox__Disable__images__css__flash.py
26 строк
664 B
gil9red
Refactoring. Using f-strings
26 июн 2023, 15:16
26 июн 2023, 15:16
f62c2df
Код
Авторство
О чём код?
#!/usr/bin/env python3 # -*- coding: utf-8 -*- __author__ = "ipetrash" # pip install selenium from selenium import webdriver # get the Firefox profile object firefox_profile = webdriver.FirefoxProfile() # Disable CSS firefox_profile.set_preference("permissions.default.stylesheet", 2) # Disable images firefox_profile.set_preference("permissions.default.image", 2) # Disable Flash firefox_profile.set_preference("dom.ipc.plugins.enabled.libflashplayer.so", "false") driver = webdriver.Firefox(firefox_profile=firefox_profile) driver.implicitly_wait(10) # seconds driver.get("https://pikabu.ru/story/ii_pobedil_5467581") print(f'Title: "{driver.title}"')