Bot showing this error

techbeastzz

BANNED
Joined
Jun 11, 2023
Messages
259
Reaction score
101
https://www.blackhatworld.com/seo/chrome-unable-to-start-correctly.1557576/
So i run the bot in cmd but at the end it shows this, i already posted this problem few moments ago but not received solution. I can give you access of my machine to check the problem, please help me with it.
 

Attachments

  • Screenshot_20231228-125243.png
    Screenshot_20231228-125243.png
    469.9 KB · Views: 86
  • Screenshot_20231228-125349.png
    Screenshot_20231228-125349.png
    710 KB · Views: 82
Youll likely need to share some code.. where us your driver saved?
 
Hi, It is just simple. You just need to specify the correct path for your chrome driver. If you don't know it, you can use undetected chromedriver. It auto opens the correct chromedriver.

You can install it using:
pip install undetected-chromedriver

Here is their repository:
https://github.com/ultrafunkamsterdam/undetected-chromedriver
 
Hi, It is just simple. You just need to specify the correct path for your chrome driver. If you don't know it, you can use undetected chromedriver. It auto opens the correct chromedriver.

You can install it using:
pip install undetected-chromedriver

Here is their repository:
https://github.com/ultrafunkamsterdam/undetected-chromedriver
Not works
 
Open cmd and run
pip install undetected-chromedriver
And then add this codes in your script
import undetected_chromedriver as uc
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait

options = uc.ChromeOptions()
options.headless = False # Set it to True if you don't want the browser window to open

driver = uc.Chrome(options=options)

driver.get("https://example.com")
 
Back
Top