It will download a WebDriver, and then set basic configuration automatically.
Project description
PWDriver (PyWebDriver)
Motivation
To simplify automation settings of each different version, and browser.
Support:
-
ChromeDriver
-
GeckoDriver
-
EdgeDriver (Chromium)
-
IEDriver
Before:
-
You have to check your local browser's version
-
You have to download driver on each website
-
You have to set path to this driver like this:
from selenium import webdriver
webdriver.Chrome('YOUR_CHROMEDRIVER_PATH')
Usage
1. Install:
pip install pwdriver
2. Make 'config.ini' file and locate in your project directory.
config.ini 's contents be like this.
[automation]
;automation.browser: chrome, gecko, edge, ie, safari
automation.browser=chrome
;automation.local: true, false
automation.local=true
automation.url=http://localhost:4444/wd/hub
3. Import WebDriverFactory.
Now, we could launch webdriver.
'automation.browser' you set will be created.
from pwdriver.core import WebDriverFactory
driver = WebDriverFactory().launch()
Different Usage(using selenium)
Use with Chrome:
from selenium import webdriver
from pwdriver.core import WebDriverFactory
WebDriverFactory().setup_chromedriver()
driver = webdriver.Chrome()
Use with FireFox:
from selenium import webdriver
from pwdriver.core import WebDriverFactory
WebDriverFactory().setup_geckodriver()
driver = webdriver.Firefox()
Use with Edge:
from selenium import webdriver
from pwdriver.core import WebDriverFactory
WebDriverFactory().setup_edgedriver()
driver = webdriver.Edge()
Use with IE:
from selenium import webdriver
from pwdriver.core import WebDriverFactory
WebDriverFactory().setup_iedriver()
driver = webdriver.Ie()
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 Distribution
pwdriver-0.16.0.tar.gz
(7.1 kB
view details)
Built Distribution
File details
Details for the file pwdriver-0.16.0.tar.gz
.
File metadata
- Download URL: pwdriver-0.16.0.tar.gz
- Upload date:
- Size: 7.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/58.3.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 801c8cecc4a16a06065799c9a83f5b06f029e85bfacfab85846f1c05236f7dc5 |
|
MD5 | d4eec48e61cbfd4cfe3120a75a2c82ce |
|
BLAKE2b-256 | a8fcc32fb1925c1203473179cd1ef73df62f1b4d0521ae1ea09c257cf9c2d86e |
File details
Details for the file pwdriver-0.16.0-py3-none-any.whl
.
File metadata
- Download URL: pwdriver-0.16.0-py3-none-any.whl
- Upload date:
- Size: 7.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/58.3.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 00c3d3c72912c176c04413285a0a57e376eb660298900228ead6c4ee2d36020d |
|
MD5 | d13b3fd3a8525547a57db20b3fb4cc58 |
|
BLAKE2b-256 | 0a992217360c445337ee5c77477e34fd736c87926ba995a41dec012a456f315f |