Closed Higlison closed 1 month ago
Could you please attach a trace-level log from geckodriver? Read more about reporting actionable bugs in our contribution guidelines. Also please provide your answer in English. Thanks.
If you have issues with chromedriver or automating a specific scenario this is not the right place to report. This repository is for specification issues only. Instead use the chromedriver or Selenium issue tracker. Thanks.
from selenium import webdriver from selenium.webdriver.common.by import By import time
Configuração do driver do navegador (exemplo com Chrome)
driver = webdriver.Chrome(executable_path='CAMINHO_PARA_SEU_CHROMEDRIVER')
Acessa o site da Blaze
driver.get("https://blaze.com/pt/games/double")
Loop para capturar os últimos resultados
while True: resultados = driver.find_elements(By.CLASS_NAME, 'entry') for resultado in resultados: print(resultado.text) # Captura e exibe os resultados time.sleep(60) # Captura a cada minuto