Home > Software engineering >  Chromium/Chromedriver suddenly stopped displaying special chars properly using Selenium
Chromium/Chromedriver suddenly stopped displaying special chars properly using Selenium

Time:01-03

I am scraping enter image description here

I am using:

Any idea how to solve it? I already cleared cache in Chromium.

CodePudding user response:

As I see on the web site and can be seen on your screenshot, the problem is not with your code, it's a bug on the targeted web page you are trying to scrape.
Selenium and Beautiful Soup can read the actual texts displayed on the targeted web pages, whey are not intended to fix Front End bugs of the targeted web pages.

  • Related