2

So I had created this selenium bot to do some task on a website. It was working fine till last week, but suddenly I started seeing errors in the console (screenshot attached). But it doesn't end the program.

The bot doesn't use Bluetooth. It is simple bot that fills a form and then submits.

Has anyone seen this error before? I would really appreciate if someone could advise me on how to resolve this.

Edited: I wasn't able to find any solution for this. Hence, I changed webdriver to Firefox.

P.S. My chrome browser version is 81.0.4044.138, which is compatible with chrome webdriver that I downloaded.

Adapter Error image

Meraj al Maksud
  • 1,528
  • 2
  • 22
  • 36
threeeyedmonk
  • 21
  • 1
  • 3
  • Provide a [minimal, reproducible example](https://stackoverflow.com/help/minimal-reproducible-example). – rizerphe May 08 '20 at 10:11
  • Hi, Thanks for responding. The error does not always show up, sometimes it does and sometimes it doesn't. Hence it is difficult to reproduce or guess when this error will come. Also, the code hasn't been changed, it was working fine till last week. The error is coming from Chrome webdriver, which I have already attached. I did some research and I didn't find much about this error on Google. – threeeyedmonk May 08 '20 at 10:22
  • 1
    Does this answer your question? [How to solve 'Getting Default Adapter failed' error when launching Chrome and try to access a webpage using the ChromeDriver using Selenium](https://stackoverflow.com/questions/61561112/how-to-solve-getting-default-adapter-failed-error-when-launching-chrome-and-tr) – Meraj al Maksud Sep 19 '20 at 06:30

1 Answers1

2

As stated in the answer to this question- How to solve 'Getting Default Adapter failed' error when launching Chrome and try to access a webpage using the ChromeDriver using Selenium, you should check that-

  • Selenium is upgraded to current levels Version 3.141.59. You can check that using the following python command:

     import selenium
     print(selenium.__version__)
    

     >>> 3.141.0
    
  • ChromeDriver is updated to current ChromeDriver v84.0 level. You can check it using following CLI command:

    chromedriver -v
    

    > ChromeDriver 85.0.4183.87
    
  • Chrome is updated to current Chrome Version 84.0 level. (as per ChromeDriver v84.0 release notes)

    Check your chrome version from the browser settings, on left pane click About Chrome in the bottom.

    enter image description here

  • If your base Web Client version is too old, then uninstall it and install a recent GA and released version of Web Client.

Meraj al Maksud
  • 1,528
  • 2
  • 22
  • 36