Skip to main content

Create Local Undetectable Chrome Driver

Project description

Create Local Undetectable Chrome Driver (LUCD)

This program will download and patch a Chrome driver to make it undetectable. So that you can use an undetectable Chrome driver for your Python Selenium code.

Passed the antibot test

Features

  • Download the exact chrome driver based on your OS and installed chrome version.
  • Remove browser control flag
  • Remove signature in javascript
  • Set User-Agent
  • Start maximum resolution
  • Open Chrome Instance on debugging mode
  • Control an existing Chrome instance.
  • Unmute the sounds of the browser.
  • Save/ load Chrome profiles.
  • Run Chrome driver on headless mode.



Installation

pip install lucd 

or

pip install git+https://github.com/SelmiAbderrahim/CreateUndetectableChromeDriver/blob/master/lucd/screenshots/antibot-tested.png



Example

from lucd.driver import Driver
driver = Driver()
chrome = driver.create()



Usage

Create an undetectable Chrome driver

from lucd.driver import Driver
driver = Driver()

# headless browser
driver.headless = True

# Mute the browser
driver.mute = True

# Set the profile path
driver.profile = r"C:\\path\\profile"

# Change useragent
driver.useragent = "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36"

chrome = driver.create()

Control/open an existing Chrome driver

from lucd.driver import Remote
driver = Remote()

# Open Chrome on debugging mode and control it
chrome = driver.create()

# Control an existing Chrome driver
chrome = driver.create(control_existing_instance, port = 9222)



Tests

Clone the project

git clone https://github.com/SelmiAbderrahim/CreateUndetectableChromeDriver/blob/master/lucd/screenshots/antibot-tested.png

Create virtual environment

pip install virtualenv
virtualenv env
source env/bin/activate

Install requirements

pip install -r requirements.txt

Run tests

python -m pytest lucd/tests/

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

lucd-0.2.1.tar.gz (8.5 kB view hashes)

Uploaded Source

Built Distribution

lucd-0.2.1-py3-none-any.whl (9.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page