The script for selenium in python
Project description
introduction
You can use crawlipt to driver the selenium by script in python.The script adopts JSON format for better cross language operations and physical storage.
installing
You can use pip or pip3 to install the crawlipt
pip install crawlipt or pip3 install crawlipt
If you have already installed crawlipt, you may need to update to the latest version
pip install --upgrade crawlipt
quickly start
from webdriver_manager.chrome import ChromeDriverManager
from selenium import webdriver as wd
from selenium.webdriver.chrome.service import Service
import crawlipt as cpt
option = wd.ChromeOptions()
option.add_argument("start-maximized")
option.add_argument("window-size=1920x3000")
agent = 'user-agent="Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36"'
option.add_argument(agent)
webdriver = wd.Chrome(service=Service(ChromeDriverManager().install()), options=option)
# Define scripts
# You can also deserialize JSON strings into a dictionary
script = {
"method": "redirect",
"url": "https://www.baidu.com/",
"next": {
"method": "input",
"xpath": "//*[@id=\"kw\"]",
"keyword": "和泉雾纱",
"next": {
"method": "click",
"xpath": "//*[@id=\"su\"]"
}
}
}
# Execute script
cpt.Script(script, interval=2)(webdriver)
Documenting
If you are interested and would like to see more detailed documentation, please click on the link below.
Contributing
Please submit pull requests to the develop branch
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
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 crawlipt-0.1.4.tar.gz.
File metadata
- Download URL: crawlipt-0.1.4.tar.gz
- Upload date:
- Size: 16.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.9.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
962079192ea47fcbf483e483eed8aa51064cd36fc0584b796158cb46cd4b062e
|
|
| MD5 |
55f003247872b5f7fd53c73855313c53
|
|
| BLAKE2b-256 |
9a2e5e3f22a067032786a5966c9ac1a06871c810f913e744935addc88566817e
|
File details
Details for the file crawlipt-0.1.4-py3-none-any.whl.
File metadata
- Download URL: crawlipt-0.1.4-py3-none-any.whl
- Upload date:
- Size: 21.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.9.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1eb9686d04fa93987782e9d8cd1b88cd8b4d3dabfccd3e28b1abfbe56663226f
|
|
| MD5 |
4353c4b0a96ea08ae54f32bd1d2efe06
|
|
| BLAKE2b-256 |
911447e9e59a7e582791283f54731ad5597164962563606acfda2a778616acec
|