Skip to main content

Python Selenium Remote for ChromeDriver

Project description

ChromePy

ChromePy makes it possible to create just one Google Chrome instance and multiple ChromeRemote remote controllers. It avoids opening multiple Chrome instances as it can be very resource consuming.

ChromePy

The workflow is as simple as:

  • Chrome creates a Selenium Chrome Driver instance and saves session data on a text file.
  • ChromeRemote uses this session data to create a Selenium Remote instance and control the same browser driver.

Install

Just install from pip

pip install ChromePy

Usage

To start a Chrome instance

from chromepy.chrome import Chrome

chrome = Chrome.instance
chrome.get('https://google.com')

print('Chrome running at ', chrome.current_url)
print(chrome.command_executor._url, chrome.session_id)
input('Press any key to quit chrome...')
chrome.quit()

To start Remote instances. Remember not to call remote.quit() as it will kill the chrome instance as well.

from chromepy.remote import ChromeRemote

remote1 = ChromeRemote()
print('remote1 url', remote1.current_url)
remote1.get('https://google.com')

remote2 = ChromeRemote()
print('remote2 url', remote2.current_url)

This examples can be found in the examples directory.

Changelog

  • 0.0.5 - Basic Chrome and ChromeRemote

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

ChromePy-0.0.5-py3-none-any.whl (5.8 kB view details)

Uploaded Python 3

File details

Details for the file ChromePy-0.0.5-py3-none-any.whl.

File metadata

  • Download URL: ChromePy-0.0.5-py3-none-any.whl
  • Upload date:
  • Size: 5.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.5.3

File hashes

Hashes for ChromePy-0.0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 bf90bd7aecf43df071dae836b3838c5e9de6e63ba0cc1587067e0d4a27123ad8
MD5 34634ea1fe1cba5eec9e82d484a337da
BLAKE2b-256 f2dfea7c4358e729c07e0847fcd0ff4938ab82c3c280f4a3445f1534684a9d70

See more details on using hashes here.

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