w3c / webdriver

Remote control interface that enables introspection and control of user agents.
https://w3c.github.io/webdriver/
Other
685 stars 195 forks source link

Blaze #1845

Closed Higlison closed 1 month ago

Higlison commented 1 month ago

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

whimboo commented 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.

whimboo commented 1 month ago

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.