Selenium error while loading specific "Selenium Failed to resolve address" page

Asked

Viewed 34 times

0

I am creating a python bot and when loading a page it shows in the console the following errors however it continues running however when I will try to execute anything involving the page it hangs giving the information that was not found the element as if I had not loaded the page

[19268:23244:0220/122212.124:ERROR:socket_manager.cc(128)] Failed to resolve address for b61e8cb6-1616-485e-8ff4-278ce4d32d1e.local., errorcode: -105
[19268:23244:0220/122212.138:ERROR:socket_manager.cc(128)] Failed to resolve address for b61e8cb6-1616-485e-8ff4-278ce4d32d1e.local., errorcode: -105

I tried to reload the page but the same error.

part of the code that is giving error:

logar = driver.find_element_by_id("joinBtn")
            logar.click()
            sleep(10)

            driver.get(driver.current_url)
            sleep(10)
            microfone = driver.find_element_by_link_text("Entrar áudio por computador")
            microfone.click()

It’s catching when it comes to the line:

microfone = driver.find_element_by_link_text("Entrar áudio por computador")
No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.