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.
The workflow is as simple as:
Chromecreates a Selenium Chrome Driver instance and saves session data on a text file.ChromeRemoteuses 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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf90bd7aecf43df071dae836b3838c5e9de6e63ba0cc1587067e0d4a27123ad8
|
|
| MD5 |
34634ea1fe1cba5eec9e82d484a337da
|
|
| BLAKE2b-256 |
f2dfea7c4358e729c07e0847fcd0ff4938ab82c3c280f4a3445f1534684a9d70
|