Ejemplo 1: cómo usar el navegador sin cabeza en selenium python
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
options = Options()
options.headless = True
driver = webdriver.Chrome(CHROMEDRIVER_PATH, chrome_options=options)
Ejemplo 2: hacer una pitón sin cabeza de selenio
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
options = Options()
options.headless = True
driver = webdriver.Chrome(CHROMEDRIVER_PATH, options=options)
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)