Skip to content

Commit

Permalink
feat: modificando o script de raspagem para que ele rode sem interfac…
Browse files Browse the repository at this point in the history
…e gráfica
  • Loading branch information
Gxaite committed Sep 2, 2024
1 parent f95c210 commit 5d1b013
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@
}
options.add_experimental_option("prefs", prefs)

# Adiciona a opção para rodar o Chrome no modo headless (sem interface gráfica)
options.add_argument("--headless")
options.add_argument("--disable-gpu") # Opcional, mas recomendado para algumas versões do Chrome
options.add_argument("--no-sandbox") # Opcional, melhora a segurança ao rodar em alguns ambientes

# Inicializa o Chrome WebDriver com as opções definidas
service = Service()
driver = webdriver.Chrome(service=service, options=options)
Expand Down

0 comments on commit 5d1b013

Please sign in to comment.