Answers for "selenium without a browser"

0

selenium without a browser

from selenium import webdriver   # for webdriver
from selenium.webdriver.support.ui import WebDriverWait  # for implicit and explict waits
from selenium.webdriver.chrome.options import Options  # for suppressing the browser

option = webdriver.ChromeOptions()
option.add_argument('headless')
driver = webdriver.Chrome('path/to/chromedriver',options=option)
Posted by: Guest on August-09-2021

Code answers related to "selenium without a browser"

Python Answers by Framework

Browse Popular Code Answers by Language