mirror of
https://gitee.com/g1879/DrissionPage.git
synced 2024-12-10 04:00:23 +08:00
1684 lines
48 KiB
Markdown
1684 lines
48 KiB
Markdown
- 中文README:[点击这里](https://github.com/g1879/DrissionPage/blob/master/README.zh-cn.md)
|
||
- 示例:[点击这里](https://gitee.com/g1879/DrissionPage-demos)
|
||
|
||
# Introduction
|
||
***
|
||
|
||
DrissionPage, the combination of driver and session, is a python-based Web automation operation integration tool.
|
||
It realizes the seamless switching between selenium and requests.
|
||
Therefore, the convenience of selenium and the high efficiency of requests can be balanced.
|
||
It uses POM mode to encapsulate common methods of page elements, which is very suitable for automatic operation function expansion.
|
||
What's even better is that its usage is very concise and user-friendly, with a small amount of code and friendly to novices.
|
||
|
||
**Project address:**
|
||
|
||
- https://github.com/g1879/DrissionPage
|
||
- https://gitee.com/g1879/DrissionPage
|
||
|
||
**Demos:** [https://gitee.com/g1879/DrissionPage-demos](https://gitee.com/g1879/DrissionPage-demos)
|
||
|
||
**email:** g1879@qq.com
|
||
|
||
# Features
|
||
|
||
***
|
||
|
||
- Allows seamless switching between selenium and requests, sharing session.
|
||
- Use POM mode to encapsulate common methods for easy expansion.
|
||
- The two modes provide a unified operation method with consistent user experience.
|
||
- Humanized operation method of page elements to reduce the workload of page analysis and coding.
|
||
- Some common functions (such as click) have been optimized to better meet the actual needs.
|
||
- Easy configuration method to get rid of the cumbersome browser configuration.
|
||
|
||
# Idea
|
||
|
||
***
|
||
|
||
## Simple, Easy and Extensible
|
||
|
||
- DrissionPage takes concise code as the first pursuit, streamlines long statements and completely retains its functions.
|
||
- DrissionPage encapsulates many commonly used functions and is more convenient to use.
|
||
- The core of DrissionPage is a page class, which can directly derive subclass pages to adapt to various scenarios.
|
||
- Simple browser configuration method, get rid of tedious settings.
|
||
|
||
The following code implements exactly the same function, comparing the code amounts of the two:
|
||
|
||
1. Find the element whose first text contains 'some text'
|
||
|
||
```python
|
||
# selenium:
|
||
element = WebDriverWait(driver).until(ec.presence_of_all_elements_located((By.XPATH, '//*[contains(text(), "some text")]')))
|
||
# DrissionPage:
|
||
element = page.ele('some text')
|
||
```
|
||
|
||
2. Jump to the first tab
|
||
|
||
```python
|
||
# selenium
|
||
driver.switch_to.window(driver.window_handles[0])
|
||
# DrissionPage
|
||
page.to_tab(0)
|
||
```
|
||
|
||
3. Drag an element
|
||
|
||
```python
|
||
# selenium
|
||
ActionChains(driver).drag_and_drop(ele1, ele2).perform()
|
||
# DrissionPage
|
||
ele1.drag_to(ele2)
|
||
```
|
||
|
||
4. Scroll the window to the bottom (keep the horizontal scroll bar unchanged)
|
||
|
||
```python
|
||
# selenium
|
||
driver.execute_script("window.scrollTo(document.documentElement.scrollLeft,document.body.scrollHeight);")
|
||
# DrissionPage
|
||
page.scroll_to('bottom')
|
||
```
|
||
|
||
5. Set headless mode
|
||
|
||
```python
|
||
# selenium
|
||
options = webdriver.ChromeOptions()
|
||
options.add_argument("--headless")
|
||
# DrissionPage
|
||
set_headless()
|
||
```
|
||
|
||
|
||
|
||
# Background
|
||
|
||
***
|
||
|
||
When a novice learns a web crawler, in the face of a website that needs to log in, it is necessary to analyze data packets, JS source code, construct complex requests, and often have to deal with verification codes, JS confusion, signature parameters and other measures, which is difficult to learn. When acquiring data, some data is generated by JavaScript calculation. If you only get the source data, you must also reproduce the calculation process. The experience is not good and the development efficiency is not high.
|
||
|
||
Using selenium can avoid these problems to a great extent, but selenium is not efficient. Therefore, what this library has to do is to combine selenium and requests into one, and provide a humanized use method to improve development and operation efficiency.
|
||
|
||
In addition to merging the two, this library also encapsulates commonly used functions in units of web pages, which simplifies selenium operations and statements. When used in web page automation operations, it reduces the consideration of details, focuses on function implementation, and is more convenient to use.
|
||
|
||
The design concept of this library is to keep everything simple, try to provide a simple and direct method of use, and is more friendly to novices.
|
||
|
||
# Simple Demo
|
||
|
||
***
|
||
|
||
Example: Log in to the website with selenium, then switch to requests to read the web page.
|
||
|
||
```python
|
||
page = MixPage() # Create page object, default driver mode
|
||
page.get('https://gitee.com/profile') # Visit personal center page (redirect to the login page)
|
||
|
||
page.ele('@id:user_login').input('your_user_name') # Use selenium to log in
|
||
page.ele('@id:user_password').input('your_password\n')
|
||
|
||
page.change_mode() # Switch to session mode
|
||
print('Title after login:', page.title, '\n') # Output of session mode after login
|
||
```
|
||
|
||
Output:
|
||
|
||
```
|
||
Title after login: Dashboard - Gitee
|
||
```
|
||
|
||
Example: Find element and print attributes.
|
||
|
||
```python
|
||
foot = page.ele('@id:footer-left') # Find elements by id
|
||
first_col = foot.ele('css:>div') # Find first div element in the lower level by css selector.
|
||
lnk = first_col.ele('text:Git Branching') # Find elements by text content
|
||
text = lnk.text # Get element text
|
||
href = lnk.attr('href') # Get element attribute value
|
||
|
||
print(first_col)
|
||
print(text, href)
|
||
```
|
||
|
||
Output:
|
||
|
||
```
|
||
<SessionElement div class='column'>
|
||
Learn Git Branching https://oschina.gitee.io/learn-git-branching/
|
||
```
|
||
|
||
# Install
|
||
|
||
***
|
||
|
||
```
|
||
pip install DrissionPage
|
||
```
|
||
Only python3.6 and above are supported. Driver mode currently only supports chrome.
|
||
To use the driver mode, you must download chrome and ** corresponding version ** of chromedriver. [chromedriver download](https://chromedriver.chromium.org/downloads)
|
||
Currently only tested in the Windows environment.
|
||
|
||
# Instructions
|
||
|
||
***
|
||
|
||
## import
|
||
|
||
```python
|
||
from DrissionPage import *
|
||
```
|
||
|
||
|
||
|
||
## Initialization
|
||
|
||
Before using selenium, you must configure the path of chrome.exe and chromedriver.exe and ensure that their versions match.
|
||
|
||
If you only use session mode, you can skip this section.
|
||
|
||
There are three ways to configure the path:
|
||
|
||
-Write two paths to system variables.
|
||
-Pass in the path manually when using it.
|
||
-Write the path to the ini file of this library (recommended).
|
||
|
||
If you choose the third method, please run these lines of code before using the library for the first time, and record these two paths in the ini file.
|
||
|
||
```python
|
||
from DrissionPage.easy_set import set_paths
|
||
driver_path = 'D:\\chrome\\chromedriver.exe' # Your chromedriver.exe path, optional
|
||
chrome_path = 'D:\\chrome\\chrome.exe' # Your chrome.exe path, optional
|
||
set_paths(driver_path, chrome_path)
|
||
```
|
||
|
||
This method also checks if the chrome and chromedriver versions match, and displays:
|
||
|
||
```
|
||
版本匹配,可正常使用。
|
||
|
||
or
|
||
|
||
出现异常:
|
||
Message: session not created: Chrome version must be between 70 and 73
|
||
(Driver info: chromedriver=73.0.3683.68 (47787ec04b6e38e22703e856e101e840b65afe72),platform=Windows NT 10.0.19631 x86_64)
|
||
chromedriver下载网址:https://chromedriver.chromium.org/downloads
|
||
```
|
||
|
||
After the inspection is passed, the driver mode can be used normally.
|
||
|
||
In addition to the above two paths, this method can also set the following paths:
|
||
|
||
```python
|
||
debugger_address # Opened browser address, eg. 127.0.0.1:9222
|
||
download_path # Download path
|
||
global_tmp_path # Temporary folder path
|
||
user_data_path # User data path
|
||
cache_path # Cache path
|
||
```
|
||
|
||
Tips:
|
||
|
||
-Different projects may require different versions of chrome and chromedriver. You can also save multiple ini files to use as needed.
|
||
-It is recommended to use the green version of chrome, and manually set the path to avoid browser upgrades that do not match the chromedriver version.
|
||
-It is recommended to set debugger_address when debugging a project, and use a manually opened browser to debug, saving time and effort.
|
||
|
||
|
||
|
||
## Create Drission Object
|
||
|
||
Drission objects are used to manage driver and session objects.Drission objects are used to transmit drives when multiple pages work together, enabling multiple page classes to control the same browser or Session object.
|
||
It can be created by directly reading the configuration information of the ini file, or it can be passed in during initialization.
|
||
|
||
```python
|
||
# Created by default ini file
|
||
drission = Drission()
|
||
|
||
# Created by other ini files
|
||
drission = Drission(ini_path = 'D:\\settings.ini')
|
||
```
|
||
|
||
To manually pass in the configuration:
|
||
|
||
```python
|
||
# Create with incoming configuration information (ignore ini file)
|
||
from DrissionPage.config import DriverOptions
|
||
|
||
driver_options = DriverOptions() # Create driver configuration object
|
||
driver_options.binary_location = 'D:\\chrome\\chrome.exe' # chrome.exe path
|
||
session_options = {'headers': {'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6)'}}
|
||
driver_path = 'D:\\chrome\\chromedriver.exe' # driver_path path
|
||
|
||
drission = Drission(driver_options, session_options, driver_path) # Create object through incoming configuration
|
||
```
|
||
|
||
|
||
|
||
## Use MixPage objects
|
||
|
||
The MixPage page object encapsulates commonly used web page operations and implements the switch between driver and session mode.
|
||
MixPage must receive a Drission object and use its driver or session. If no one is sent, MixPage will create a Drission itself (Use configurations from the default INI file).
|
||
|
||
Tips: When multi-page objects work together, remember to manually create Drission objects and transfer them to page objects for use. Otherwise, page objects can create their own Drission objects, rendering the information impossible to transmit.
|
||
|
||
```python
|
||
# Ways to create MixPage objects
|
||
page = MixPage() # Automatic creation of Drission objects is recommended only for single page objects
|
||
page = MixPage('s') # Quickly create in session mode, automatically create a Drission object
|
||
|
||
page = MixPage(drission) # Created by passing in a Drission object
|
||
page = MixPage(drission, mode='s', timeout=5) # session mode, waiting time 5 seconds (default 10 seconds)
|
||
|
||
# Visit URL
|
||
page.get(url, **kwargs)
|
||
page.post(url, data, **kwargs) # Only session mode has post method.Call the post method will automatically switch to session mode.
|
||
|
||
# Switch mode
|
||
page.change_mode()
|
||
|
||
# Page operation
|
||
print(page.html) # Page source code
|
||
page.run_script(js) # Run js statement
|
||
page.close_other_tabs(num) # Close other tabs
|
||
page.to_iframe(iframe) # switch to iframe
|
||
page.screenshot(path) # Screenshot of the page
|
||
page.scrool_to_see(element) # Scroll until an element is visible
|
||
# See APIs for details...
|
||
```
|
||
|
||
Tips:Calling a method that belongs only to the driver mode will automatically switch to the driver mode.
|
||
|
||
|
||
|
||
## Find elements
|
||
|
||
ele() returns the first eligible element, eles() returns a list of all eligible elements.
|
||
You can use these two functions under the page object or element object to find the subordinate elements.
|
||
|
||
Note: The element search timeout is 10 seconds by default, you can also set it as required.
|
||
|
||
```python
|
||
# Find by attribute
|
||
page.ele('@id:ele_id', timeout = 2) # Find the element with id ele_id and set the waiting time to 2 seconds
|
||
page.eles('@class') # Find all elements with ele_class
|
||
page.eles('@class:class_name') # Find all elements with class equal to ele_class
|
||
|
||
# Search by tag name
|
||
page.ele('tag:li') # Find the first li element
|
||
page.eles('tag:li') # Find all li elements
|
||
|
||
# Search by tag name and attributes
|
||
page.ele('tag:div@class=div_class') # Find the first div element whose class is div_class
|
||
page.ele('tag:div@class:ele_class') # Find the div element with ele_class in class
|
||
page.ele('tag:div@class=ele_class') # Find div elements with class equal to ele_class
|
||
page.ele('tag:div@text():search_text') # Find the div element whose text contains search_text
|
||
page.ele('tag:div@text()=search_text') # Find div elements with text equal to search_text
|
||
|
||
# Find by text
|
||
page.ele('search text') # Find elements containing incoming text
|
||
page.eles('text:search text') # If the text starts with @, tag :, css :, xpath :, text :, add text: in front to avoid conflicts
|
||
page.eles('text=search text') # Elements with text equal to search_text
|
||
|
||
# Find by xpath or css selector
|
||
page.eles('xpath://div[@class="ele_class"]')
|
||
page.eles('css:div.ele_class')
|
||
|
||
# Find by loc
|
||
loc1 = By.ID, 'ele_id'
|
||
loc2 = By.XPATH, '//div[@class="ele_class"]'
|
||
page.ele(loc1)
|
||
page.ele(loc2)
|
||
|
||
# Find subordinate elements
|
||
element = page.ele('@id:ele_id')
|
||
element.ele('@class:class_name') # Find the first element whose class is ele_class at the lower level of element
|
||
element.eles('tag:li') # Find all li elements below ele_id
|
||
|
||
# Find by location
|
||
element.parent # Parent element
|
||
elementnext # Next sibling element
|
||
element.prev # Previous brother element
|
||
|
||
# Tandem search
|
||
page.ele('@id:ele_id').ele('tag:div').next.ele('some text').eles('tag:a')
|
||
```
|
||
|
||
|
||
|
||
## Element operations
|
||
|
||
```python
|
||
# Get element information
|
||
element = page.ele('@id:ele_id')
|
||
element.html # Return html inside element
|
||
element.text # Returns the text value after removing the html tag in the element
|
||
element.tag # Return element tag name
|
||
element.attrs # Returns a dictionary of all attributes of the element
|
||
element.attr('class') # Returns the element's class attribute
|
||
element.is_valid # Driver mode only, used to determine whether the element is still available
|
||
|
||
# Operating element
|
||
element.click() # Click element
|
||
element.input(text) # Enter text
|
||
element.run_script(js) # Run js
|
||
element.submit() # submit Form
|
||
element.clear() # Clear element
|
||
element.is_selected() # Is selected
|
||
element.is_enabled() # it's usable or not
|
||
element.is_displayed() # Is it visible
|
||
element.is_valid() # Whether it is valid, used to judge the situation where the page jump causes the element to fail
|
||
element.select(text) # Select the drop-down list option
|
||
element.set_attr(attr,value) # Set element attributes
|
||
element.size # Returns the element size
|
||
element.location # Returns the element position
|
||
```
|
||
|
||
|
||
|
||
## Chrome shortcut settings
|
||
|
||
The configuration of chrome is very cumbersome. In order to simplify the use, this library provides setting methods for common configurations.
|
||
|
||
### DriverOptions Object
|
||
|
||
The DriverOptions object inherits from the Options object of selenium.webdriver.chrome.options, and the following methods are added to it:
|
||
|
||
```python
|
||
remove_argument(value) # Delete an argument value
|
||
remove_experimental_option(key) # Delete an experimental_option setting
|
||
remove_all_extensions() # Delete all plugins
|
||
save() # Save the configuration to the default ini file
|
||
save('D:\\settings.ini') # Save to other path
|
||
set_argument(arg, value) # Set argument attribute
|
||
set_headless(on_off) # Set whether to use interfaceless mode
|
||
set_no_imgs(on_off) # Set whether to load pictures
|
||
set_no_js(on_off) # Set whether to disable js
|
||
set_mute(on_off) # Set whether to mute
|
||
set_user_agent(user_agent) # Set user agent
|
||
set_proxy(proxy) # Set proxy address
|
||
set_paths(driver_path, chrome_path, debugger_address, download_path, user_data_path, cache_path) # Set browser-related paths
|
||
```
|
||
|
||
### Instructions
|
||
|
||
```python
|
||
do = DriverOptions(read_file=False) # Create chrome configuration object, not read from ini file
|
||
do.set_headless(False) # Show browser interface
|
||
do.set_no_imgs(True) # Don't load pictures
|
||
do.set_paths(driver_path='D:\\chromedriver.exe', chrome_path='D:\\chrome.exe') # Set paths
|
||
drission = Drission(driver_options=do) # Create Drission object with configuration object
|
||
page = MixPage(drission) # Create a MixPage object with a Drission object
|
||
|
||
do.save() # Save the configuration to the default ini file
|
||
```
|
||
|
||
|
||
|
||
## Save configuration
|
||
|
||
Because chrome and headers have many configurations, an ini file is set up to save commonly used configurations. You can use the OptionsManager object to get and save the configuration, and use the DriverOptions object to modify the chrome configuration. You can also save multiple ini files and call them according to different projects.
|
||
|
||
Tips:It is recommended to save common configuration files to another path to prevent the configuration from being reset when the library is upgraded.
|
||
|
||
### ini file
|
||
|
||
The ini file has three parts by default: paths, chrome_options, and session_options. The initial contents are as follows.
|
||
|
||
```ini
|
||
[paths]
|
||
; chromedriver.exe path
|
||
chromedriver_path =
|
||
; Temporary folder path, used to save screenshots, download files, etc.
|
||
global_tmp_path =
|
||
|
||
[chrome_options]
|
||
; The opened browser address and port, such as 127.0.0.1:9222
|
||
debugger_address =
|
||
; chrome.exe path
|
||
binary_location =
|
||
; Configuration information
|
||
arguments = [
|
||
; Hide browser window
|
||
'--headless',
|
||
; Mute
|
||
'--mute-audio',
|
||
; No sandbox
|
||
'--no-sandbox',
|
||
; Google documentation mentions the need to add this attribute to avoid bugs
|
||
'--disable-gpu',
|
||
; ignore errors
|
||
'ignore-certificate-errors',
|
||
; Hidden message bar
|
||
'--disable-infobars'
|
||
]
|
||
; Plugin
|
||
extensions = []
|
||
; Experimental configuration
|
||
experimental_options = {
|
||
'prefs': {
|
||
; Download without pop-up
|
||
'profile.default_content_settings.popups': 0,
|
||
; No pop-up window
|
||
'profile.default_content_setting_values': {'notifications': 2},
|
||
; Disable PDF plugin
|
||
'plugins.plugins_list': [{"enabled": False, "name": "Chrome PDF Viewer"}]
|
||
},
|
||
; Set to developer mode, anti-anti-reptile (useless)
|
||
'excludeSwitches': ["enable-automation"],
|
||
'useAutomationExtension': False
|
||
}
|
||
|
||
[session_options]
|
||
headers = {
|
||
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.1.2 Safari/603.3.8",
|
||
"Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
|
||
"Connection": "keep-alive",
|
||
"Accept-Charset": "utf-8;q=0.7,*;q=0.7"
|
||
}
|
||
```
|
||
|
||
### OptionsManager object
|
||
|
||
The OptionsManager object is used to read, set, and save configurations.
|
||
|
||
```python
|
||
get_value(section, item) -> str # Get the value of a configuration
|
||
get_option(section) -> dict # Return all configuration properties in dictionary format
|
||
set_item(section, item, value) # Set configuration properties
|
||
save() # Save configuration to default ini file
|
||
save('D:\\settings.ini') # Save to other path
|
||
```
|
||
|
||
### Usage example
|
||
|
||
```python
|
||
from DrissionPage.configs import *
|
||
|
||
options_manager = OptionsManager() # Create OptionsManager object from default ini file
|
||
options_manager = OptionsManager('D:\\settings.ini') # Create OptionsManager object from other ini files
|
||
driver_path = options_manager.get_value('paths', 'chromedriver_path') # Read path information
|
||
options_manager.save() # Save to the default ini file
|
||
options_manager.save('D:\\settings.ini') # Save to other path
|
||
|
||
drission = Drission(ini_path = 'D:\\settings.ini') # Use other ini files to create objects
|
||
```
|
||
|
||
**Note** : If you do not pass in the path when saving, it will be saved to the ini file in the module directory, even if you are not reading the default ini file.
|
||
|
||
|
||
|
||
## easy_set methods
|
||
|
||
Calling the easy_set method will modify the content of the default ini file.
|
||
|
||
```python
|
||
set_headless(True) # Set headless mode
|
||
set_no_imgs(True) # Set no-PIC mode
|
||
set_no_js(True) # Disable JavaScript
|
||
set_mute(True) # Silent mode
|
||
set_user_agent('Mozilla/5.0 (Macintosh; Int......') # set user agent
|
||
set_proxy('127.0.0.1:8888') # set proxy
|
||
set_paths(paths) # See the Initialization section
|
||
set_argument(arg, on_off) # Set the property. If the property has no value (e.g. 'zh_CN.utf-8'), the value is bool representing the switch. If value is "" or False, delete the attribute entry
|
||
```
|
||
|
||
# POM mode
|
||
|
||
***
|
||
|
||
MixPage encapsulates common page operations and can be easily used for expansion.
|
||
|
||
Example: Expand a list page reading class.
|
||
|
||
```python
|
||
import re
|
||
from time import sleep
|
||
from DrissionPage import *
|
||
|
||
class ListPage(MixPage):
|
||
"""This class encapsulates the method of reading the list page, according to the necessary 4 elements, can read the homogeneous list page"""
|
||
def __init__(self, drission: Drission, url: str = None, **xpaths):
|
||
super().__init__(drission)
|
||
self._url = url
|
||
self.xpath_cloumn_name = xpaths['cloumn_name'] # [xpath str, re str]
|
||
self.xpath_next_btn = xpaths['next_btn']
|
||
self.xpath_rows = xpaths['rows']
|
||
self.xpath_total_pages = xpaths['total_pages'] # [xpath str, re str]
|
||
self.total_pages = self.get_total_pages()
|
||
if url:
|
||
self.get(url)
|
||
|
||
def get_cloumn_name(self) -> str:
|
||
if self.xpath_cloumn_name[1]:
|
||
s = self.ele(f'xpath:{self.xpath_cloumn_name[0]}').text
|
||
r = re.search(self.xpath_cloumn_name[1], s)
|
||
return r.group(1)
|
||
else:
|
||
return self.ele(f'xpath:{self.xpath_cloumn_name[0]}').text
|
||
|
||
def get_total_pages(self) -> int:
|
||
if self.xpath_total_pages[1]:
|
||
s = self.ele(f'xpath:{self.xpath_total_pages[0]}').text
|
||
r = re.search(self.xpath_total_pages[1], s)
|
||
return int(r.group(1))
|
||
else:
|
||
return int(self.ele(f'xpath:{self.xpath_total_pages[0]}').text)
|
||
|
||
def click_next_btn(self, wait: float = None):
|
||
self.ele(f'xpath:{self.xpath_next_btn}').click()
|
||
if wait:
|
||
sleep(wait)
|
||
|
||
def get_current_page_list(self, content_to_fetch: list) -> list:
|
||
"""
|
||
content_to_fetch:[[xpath1,para1],[xpath2,para2]...]
|
||
output list:[[para1,para2...],[para1,para2...]...]
|
||
"""
|
||
result_list = []
|
||
rows = self.eles(f'xpath:{self.xpath_rows}')
|
||
for row in rows:
|
||
row_result = []
|
||
for j in content_to_fetch:
|
||
row_result.append(row.ele(f'xpath:{j[0]}').attr(j[1]))
|
||
result_list.append(row_result)
|
||
print(row_result)
|
||
return result_list
|
||
|
||
def get_list(self, content_to_fetch: list, wait: float = None) -> list:
|
||
current_list = self.get_current_page_list(content_to_fetch)
|
||
for _ in range(self.total_pages - 1):
|
||
self.click_next_btn(wait)
|
||
current_list.extend(self.get_current_page_list(content_to_fetch))
|
||
return current_list
|
||
```
|
||
|
||
# Others
|
||
|
||
***
|
||
|
||
## DriverPage and SessionPage
|
||
|
||
If there is no need to switch modes, only DriverPage or SessionPage can be used as required, the usage is consistent with MixPage.
|
||
|
||
```python
|
||
from DrissionPage.session_page import SessionPage
|
||
from DrissionPage.drission import Drission
|
||
|
||
session = Drission().session
|
||
page = SessionPage(session) # Pass in Session object
|
||
page.get('http://www.baidu.com')
|
||
print(page.ele('@id:su').text) # Output:百度一下
|
||
|
||
driver = Drission().driver
|
||
page = DriverPage(driver) # Pass in Driver object
|
||
page.get('http://www.baidu.com')
|
||
print(page.ele('@id:su').text) # Output:百度一下
|
||
```
|
||
|
||
# APIs
|
||
|
||
***
|
||
|
||
## Drission class
|
||
|
||
class **Drission**(driver_options: Union[dict, Options] = None, session_options: dict = None, ini_path = None, proxy: dict = None)
|
||
|
||
Used to manage driver and session objects.
|
||
|
||
Parameter Description:
|
||
|
||
- driver_options - Chrome configuration parameters, can receive Options object or dictionary
|
||
- session_options - session configuration parameters, receive dictionary
|
||
- ini_path - ini file path, the default is the ini file in the DrissionPage folder
|
||
|
||
### session
|
||
|
||
Returns the HTMLSession object, which is created automatically when called.
|
||
|
||
### driver
|
||
|
||
Obtain the WebDriver object, which is automatically created when it is called and initialized according to the incoming configuration or ini file configuration.
|
||
|
||
### driver_options
|
||
|
||
Return driver configuration in dictionary format.
|
||
|
||
### session_options
|
||
|
||
Return session configuration in dictionary format.
|
||
|
||
### proxy
|
||
|
||
Return proxy configuration in dictionary format.
|
||
|
||
### cookies_to_session
|
||
|
||
cookies_to_session(copy_user_agent: bool = False, driver: WebDriver = None, session: Session = None) -> None
|
||
|
||
Copy cookies from driver to session. By default, self.driver is copied to self.session, and driver and session can also be received for operation.
|
||
|
||
Parameter Description:
|
||
|
||
- copy_user_agent - Whether to copy user_agent to session
|
||
- driver - WebDriver object, copy cookies
|
||
- session - Session object, receiving cookies
|
||
|
||
### cookies_to_driver
|
||
|
||
cookies_to_driver(url: str, driver: WebDriver = None, session: Session = None) -> None
|
||
|
||
Copy cookies from session to driver. By default, self.session is copied to self.driver, and driver and session can also be received for operation. Need to specify url or domain name.
|
||
|
||
Parameter Description:
|
||
|
||
- url - cookies domain
|
||
- driver - WebDriver object, receiving cookies
|
||
- session - Session object, copy cookies
|
||
|
||
### user_agent_to_session
|
||
|
||
user_agent_to_session(driver: WebDriver = None, session: Session = None) -> None
|
||
|
||
Copy the user agent from the driver to the session. By default, self.driver is copied to self.session, and driver and session can also be received for operation.
|
||
|
||
Parameter Description:
|
||
|
||
- driver - WebDriver object, copy user agent
|
||
- session - Session object, receiving user agent
|
||
|
||
### close_driver
|
||
|
||
close_driver() -> None
|
||
|
||
Close the browser and set the driver to None.
|
||
|
||
### close_session
|
||
|
||
close_session() -> None
|
||
|
||
Close the session and set it to None.
|
||
|
||
### close
|
||
|
||
close() -> None
|
||
|
||
Close the driver and session.
|
||
|
||
|
||
|
||
## MixPage class
|
||
|
||
class **MixPage**(drission: Union[Drission, str] = None, mode:str = 'd', timeout: float = 10)
|
||
|
||
MixPage encapsulates common functions for page operations and can seamlessly switch between driver and session modes. Cookies are automatically synchronized when switching.
|
||
The function of obtaining information is common to the two modes, and the function of operating page elements is only available in the d mode. Calling a function unique to a certain mode will automatically switch to that mode.
|
||
It inherits from DriverPage and SessionPage classes. These functions are implemented by these two classes. MixPage exists as a scheduling role.
|
||
|
||
Parameter Description:
|
||
|
||
- drission - Drission objects, if not transmitted will create one. Quickly configure the corresponding mode when passing in's' or'd'
|
||
- mode - Mode, optional 'd' or 's', default is 'd'
|
||
- timeout - Timeout time, driver mode search element time and session mode connection time
|
||
|
||
### url
|
||
|
||
Returns the currently visited URL.
|
||
|
||
### mode
|
||
|
||
Returns the current mode ('s' or 'd').
|
||
|
||
### drission
|
||
|
||
Returns the currently used Dirssion object.
|
||
|
||
### driver
|
||
|
||
Returns the driver object, if not created, it will switch to driver mode when called.
|
||
|
||
### session
|
||
|
||
Returns the session object, if not created.
|
||
|
||
### response
|
||
|
||
Return the Response object and switch to session mode when calling.
|
||
|
||
### cookies
|
||
|
||
Returns cookies, obtained from the current mode.
|
||
|
||
### html
|
||
|
||
Return the page html text.
|
||
|
||
### title
|
||
|
||
Return to the page title text.
|
||
|
||
### change_mode
|
||
|
||
change_mode(mode: str = None, go: bool = True) -> None
|
||
|
||
Switch mode, you can specify the target mode, if the target mode is consistent with the current mode, then directly return.
|
||
|
||
Parameter Description:
|
||
|
||
- mode - Specify the target mode, 'd' or 's'.
|
||
- go - Whether to jump to the current url after switching modes
|
||
|
||
### get
|
||
|
||
get(url: str, go_anyway=False, **kwargs) -> Union[bool, None]
|
||
|
||
Jump to a url, sync cookies before jumping, and return whether the target url is available after jumping.
|
||
|
||
Parameter Description:
|
||
|
||
- url - Target url
|
||
- go_anyway - Whether to force a jump. If the target url is the same as the current url, the default is not to jump.
|
||
- kwargs - Used to access parameters when in session mode.
|
||
|
||
### ele
|
||
|
||
ele(loc_or_ele: Union[tuple, str, DriverElement, SessionElement], mode: str = None, timeout: float = None, show_errmsg: bool = False) -> Union[DriverElement, SessionElement]
|
||
|
||
Get elements according to query parameters and return elements or element lists.
|
||
If the query parameter is a string, you can select the '@property name:', 'tag:', 'text:', 'css:', 'xpath:' method. When there is no control mode, it is searched by text mode by default.
|
||
If it is loc, query directly according to the content.
|
||
|
||
Parameter Description:
|
||
|
||
- loc_or_str - Query condition parameters, if an element object is passed in, return directly
|
||
- mode - Find one or more, pass in 'single' or 'all'
|
||
- timeout - Search element timeout time, valid in driver mode
|
||
- show_errmsg - Whether to throw and display when an exception occurs
|
||
|
||
Examples:
|
||
|
||
- page.ele('@id:ele_id') - Find elements by attributes
|
||
- page.ele('tag:div') - Find elements by tag name
|
||
- page.ele('text:some text') - Find elements by text
|
||
- page.ele('some text') - Find elements by text
|
||
- page.ele('css:>div') - Find elements by css selector
|
||
- page.ele('xpath://div') - Find elements by xpath
|
||
- page.ele((By.ID, 'ele_id')) - Find elements by loc
|
||
|
||
### eles
|
||
|
||
eles(loc_or_str: Union[tuple, str], timeout: float = None, show_errmsg: bool = False) -> List[DriverElement]
|
||
|
||
Obtain a list of elements that meet the criteria based on query parameters. The query parameter usage method is the same as the ele method.
|
||
|
||
Parameter Description:
|
||
|
||
- loc_or_str - Query condition parameters
|
||
- timeout - Search element timeout time, valid in driver mode
|
||
- show_errmsg - Whether to throw and display when an exception occurs
|
||
|
||
### cookies_to_session
|
||
|
||
cookies_to_session(copy_user_agent: bool = False) -> None
|
||
|
||
Manually copy cookies from driver to session.
|
||
|
||
Parameter Description:
|
||
|
||
- copy_user_agent - Whether to also copy user agent
|
||
|
||
### cookies_to_driver
|
||
|
||
cookies_to_driver(url=None) -> None
|
||
|
||
Manually copy cookies from session to driver.
|
||
|
||
Parameter Description:
|
||
|
||
- url - cookie domain or url
|
||
|
||
### post
|
||
|
||
post(url: str, params: dict = None, data: dict = None, go_anyway: bool = False, **kwargs) -> Union[bool, None]
|
||
|
||
Jump by post, and switch to session mode automatically when calling.
|
||
|
||
Parameter Description:
|
||
|
||
- url - Target url
|
||
- parame - url parameter
|
||
- data - Submitted data
|
||
- go_anyway - Whether to force a jump. If the target url is the same as the current url, the default is not to jump.
|
||
- kwargs - Access parameters such as headers
|
||
|
||
### download
|
||
|
||
download(file_url: str, goal_path: str = None, rename: str = None, show_msg: bool = False, **kwargs) -> tuple
|
||
|
||
Download a file, return success and download information string. Changing the method will automatically avoid renaming the existing file in the target path.
|
||
|
||
Parameter Description:
|
||
|
||
- file_url - File URL
|
||
- goal_path - Storage path, the default is the temporary folder specified in the ini file
|
||
- rename - Rename the file name, not renamed by default
|
||
- show_msg - Show download massage or not.
|
||
- kwargs - Connection parameters for requests
|
||
|
||
|
||
|
||
The following methods only take effect in driver mode, and will automatically switch to driver mode when called
|
||
|
||
***
|
||
|
||
### check_page
|
||
|
||
check_page() -> bool
|
||
|
||
After the subclass is derived, it is used to check whether the domain name meets expectations, and the function is implemented by the subclass.
|
||
|
||
### run_script
|
||
|
||
run_script(script: str) -> Any
|
||
|
||
Execute JavaScript code.
|
||
|
||
Parameter Description:
|
||
|
||
- script - JavaScript code text
|
||
|
||
### get_tabs_sum
|
||
|
||
get_tabs_sum() -> int
|
||
|
||
Returns the number of browser tabs.
|
||
|
||
### get_tab_num
|
||
|
||
get_tab_num() -> int
|
||
|
||
Returns the serial number of the current tab.
|
||
|
||
### close_current_tab
|
||
|
||
close_current_tab() -> None
|
||
|
||
Close the current tab.
|
||
|
||
### close_other_tabs
|
||
|
||
close_other_tabs(tab_index: int = None) -> None
|
||
|
||
Close the tab page except the serial number.
|
||
|
||
Parameter Description:
|
||
|
||
- index - The serial number of the reserved tab, start from 0
|
||
|
||
### to_tab
|
||
|
||
to_tab(index: int = 0) -> None
|
||
|
||
Jump to a tab page with a serial number.
|
||
|
||
Parameter Description:
|
||
|
||
- index - The serial number of the target tab, start from 0
|
||
|
||
### to_iframe
|
||
|
||
to_iframe(self, loc_or_ele: Union[int, str, tuple, WebElement, DriverElement] = 'main') -> None
|
||
|
||
Jump to iframe, compatible with selenium native parameters.
|
||
|
||
Parameter Description:
|
||
|
||
- loc_or_ele - To search for iframe element conditions, you can receive iframe serial number (starting at 0), id or name, control string, loc parameter, WebElement object, DriverElement object, pass 'main' to jump to the top level, pass 'parent' to jump to parent level.
|
||
|
||
Examples:
|
||
- to_iframe('@id:iframe_id')
|
||
- to_iframe(iframe_element)
|
||
- to_iframe(0)
|
||
- to_iframe('iframe_name')
|
||
|
||
### scroll_to_see
|
||
|
||
scroll_to_see(loc_or_ele: Union[str, tuple, WebElement, DriverElement]) -> None
|
||
|
||
Scroll until the element is visible.
|
||
|
||
Parameter Description:
|
||
|
||
- loc_or_ele - The search condition of the iframe element is the same as the search condition of the ele () method.
|
||
|
||
### scroll_to
|
||
|
||
scroll_to(mode: str = 'bottom', pixel: int = 300) -> None
|
||
|
||
Scroll the page and decide how to scroll according to the parameters.
|
||
|
||
Parameter Description:
|
||
|
||
- mode - Scrolling direction, top, bottom, rightmost, leftmost, up, down, left, right
|
||
- pixel - Scrolling pixels
|
||
|
||
### refresh
|
||
|
||
refresh() -> None
|
||
|
||
Refresh page.
|
||
|
||
### back
|
||
|
||
back() -> None
|
||
|
||
The page back.
|
||
|
||
### set_window_size
|
||
|
||
set_window_size(x: int = None, y: int = None) -> None
|
||
|
||
Set the window size and maximize it by default.
|
||
|
||
Parameter Description:
|
||
|
||
- x - Target width
|
||
- y - Target height
|
||
|
||
### screenshot
|
||
|
||
screenshot(path: str, filename: str = None) -> str
|
||
|
||
Take a screenshot of the web page and return the path of the screenshot file.
|
||
|
||
Parameter Description:
|
||
|
||
- path - Screenshot save path, default is the temporary folder specified in the ini file
|
||
- filename - Screenshot file name, default is page title as file name
|
||
|
||
### process_alert
|
||
|
||
process_alert(mode: str = 'ok', text: str = None) -> Union[str, None]
|
||
|
||
Processing alert, confirm and prompt box.
|
||
|
||
Parameter Description:
|
||
|
||
- mode - 'ok' or 'cancel', if enter another value, the button will not be pressed but the text value will still be returned
|
||
- text - Text can be entered when processing prompt box
|
||
|
||
### chrome_downloading
|
||
|
||
chrome_downloading(download_path: str = None) -> list
|
||
|
||
Check whether the browser is downloaded.
|
||
|
||
Parameter Description:
|
||
|
||
- download_path - Download path, the default is the download path in chrome options configuration
|
||
|
||
### close_driver
|
||
|
||
close_driver() -> None
|
||
|
||
Close the driver and browser, and switch to s mode.
|
||
|
||
### close_session
|
||
|
||
close_session() -> None
|
||
|
||
Close the session and switch to d mode.
|
||
|
||
## DriverElement class
|
||
|
||
class DriverElement(ele: WebElement, timeout: float = 10)
|
||
|
||
The element object of the driver mode wraps a WebElement object and encapsulates common functions.
|
||
|
||
Parameter Description:
|
||
|
||
- ele - WebElement object
|
||
- timeout - Search element time-out time (can also be set separately each time element search)
|
||
|
||
### inner_ele
|
||
|
||
The wrapped WebElement object.
|
||
|
||
### driver
|
||
|
||
WebDriver object of the element.
|
||
|
||
### attrs
|
||
|
||
Return all attributes and values of the elements in a dictionary.
|
||
|
||
### text
|
||
|
||
Returns the text inside the element.
|
||
|
||
### html
|
||
|
||
Returns the html text in the element.
|
||
|
||
### tag
|
||
|
||
Returns the element label name text.
|
||
|
||
### parent
|
||
|
||
Returns the parent element object.
|
||
|
||
### next
|
||
|
||
Returns the next sibling element object.
|
||
|
||
### prev
|
||
|
||
Returns the last sibling element object.
|
||
|
||
### parents
|
||
|
||
parents(num: int = 1) -> Union[DriverElement, None]
|
||
|
||
Returns the Nth-level parent element object.
|
||
|
||
### nexts
|
||
|
||
nexts(num: int = 1) -> Union[DriverElement, None]
|
||
|
||
Returns the next N sibling element objects.
|
||
|
||
### prevs
|
||
|
||
prevs(num: int = 1) -> Union[DriverElement, None]
|
||
|
||
Return the first N sibling element objects.
|
||
|
||
### size
|
||
|
||
Returns the element size as a dictionary.
|
||
|
||
### location
|
||
|
||
Put the element coordinates back in a dictionary.
|
||
|
||
### ele
|
||
|
||
ele(loc_or_str: Union[tuple, str], mode: str = None, show_errmsg: bool = False, timeout: float = None) -> Union[DriverElement, List[DriverElement], None]
|
||
|
||
Get elements based on query parameters.
|
||
If the query parameter is a string, you can select the '@property name:', 'tag:', 'text:', 'css:', and 'xpath:' methods. When there is no control mode, it is searched by text mode by default.
|
||
If it is loc, query directly according to the content.
|
||
|
||
Parameter Description:
|
||
|
||
- loc_or_str - Query condition parameters
|
||
- mode - Find one or more, pass in 'single' or 'all'
|
||
- show_errmsg - Whether to throw and display when an exception occurs
|
||
- timeout - Find Element Timeout
|
||
|
||
Examples::
|
||
|
||
- element.ele('@id:ele_id') - Find elements by attributes
|
||
- element.ele('tag:div') - Find elements by tag name
|
||
- element.ele('text:some text') - Find elements by text
|
||
- element.ele('some text') - Find elements by text
|
||
- element.ele('css:>div') - Find elements by css selector
|
||
- element.ele('xpath://div') - Find elements by xpath
|
||
- element.ele((By.ID, 'ele_id')) - Find elements by loc
|
||
|
||
### eles
|
||
|
||
eles(loc_or_str: Union[tuple, str], show_errmsg: bool = False, timeout: float = None) -> List[DriverElement]
|
||
|
||
Obtain a list of elements that meet the criteria based on query parameters. The query parameter usage method is the same as the ele method.
|
||
|
||
Parameter Description:
|
||
|
||
- loc_or_str - Query condition parameters
|
||
- show_errmsg - Whether to throw and display when an exception occurs
|
||
- timeout - Find Element Timeout
|
||
|
||
### attr
|
||
|
||
attr(attr: str) -> str
|
||
|
||
Get the value of an attribute of an element.
|
||
|
||
Parameter Description:
|
||
|
||
- attr - Attribute name
|
||
|
||
### click
|
||
|
||
click(by_js=None) -> bool
|
||
|
||
Click on the element. If it is unsuccessful, click on js. You can specify click on js or not.
|
||
|
||
Parameter Description:
|
||
|
||
- by_js - Whether to click with js
|
||
|
||
### input
|
||
|
||
input(value, clear: bool = True) -> bool
|
||
|
||
Enter text.
|
||
|
||
Parameter Description:
|
||
|
||
- value - Text value
|
||
- clear - Whether to clear the text box before entering
|
||
|
||
### run_script
|
||
|
||
run_script(script: str) -> Any
|
||
|
||
Run JavaScript on the element.
|
||
|
||
Parameter Description:
|
||
|
||
- script - JavaScript text
|
||
|
||
### submit
|
||
|
||
submit() -> None
|
||
|
||
Submit form.
|
||
|
||
### clear
|
||
|
||
clear() -> None
|
||
|
||
Clear the text box.
|
||
|
||
### is_selected
|
||
|
||
is_selected() -> bool
|
||
|
||
Whether the element is selected.
|
||
|
||
### is_enabled
|
||
|
||
is_enabled() -> bool
|
||
|
||
Whether the element is available on the page.
|
||
|
||
### is_displayed
|
||
|
||
is_displayed() -> bool
|
||
|
||
Whether the element is visible.
|
||
|
||
### is_valid
|
||
|
||
is_valid() -> bool
|
||
|
||
Whether the element is valid. This method is used to determine the situation where the page jump element cannot be used
|
||
|
||
### screenshot
|
||
|
||
screenshot(path: str, filename: str = None) -> str
|
||
|
||
Take a screenshot of the web page and return the path of the screenshot file.
|
||
|
||
Parameter Description:
|
||
|
||
- path - Screenshot save path, default is the temporary folder specified in the ini file
|
||
- filename - Screenshot file name, default is page title as file name
|
||
|
||
### select
|
||
|
||
select(text: str) -> bool
|
||
|
||
Choose from the drop-down list.
|
||
|
||
Parameter Description:
|
||
|
||
- text - Option text
|
||
|
||
### set_attr
|
||
|
||
set_attr(attr: str, value: str) -> bool
|
||
|
||
Set element attributes.
|
||
|
||
Parameter Description:
|
||
|
||
- attr - parameter name
|
||
- value - Parameter value
|
||
|
||
### drag
|
||
|
||
drag(x: int, y: int, speed: int = 40, shake: bool = True) -> bool
|
||
|
||
Drag the current element a certain distance, and return whether the drag is successful.
|
||
|
||
Parameter Description:
|
||
|
||
- x - Drag distance in x direction
|
||
- y - Drag distance in y direction
|
||
- speed - Drag speed
|
||
- shake - Random jitter
|
||
|
||
### drag_to
|
||
|
||
drag_to(ele_or_loc: Union[tuple, WebElement, DrissionElement], speed: int = 40, shake: bool = True) -> bool:
|
||
|
||
Drag the current element, the target is another element or coordinate tuple, and return whether the drag is successful.
|
||
|
||
Parameter Description:
|
||
|
||
- ele_or_loc - Another element or relative current position. The coordinates are the coordinates of the midpoint of the element.
|
||
- speed - Drag speed
|
||
- shake - Random jitter
|
||
|
||
### hover
|
||
|
||
hover()
|
||
|
||
Hover over the element.
|
||
|
||
|
||
|
||
## SessionElement class
|
||
|
||
class SessionElement(ele: Element)
|
||
|
||
The element object of session mode wraps an Element object and encapsulates common functions.
|
||
|
||
Parameter Description:
|
||
|
||
- ele - Element object of requests_html library
|
||
|
||
### inner_ele
|
||
|
||
The wrapped Element object.
|
||
|
||
### attrs
|
||
|
||
Returns the names and values of all attributes of the element in dictionary format.
|
||
|
||
### text
|
||
|
||
Returns the text inside the element.
|
||
|
||
### html
|
||
|
||
Returns the html text in the element.
|
||
|
||
### tag
|
||
|
||
Returns the element label name text.
|
||
|
||
### parent
|
||
|
||
Returns the parent element object.
|
||
|
||
### next
|
||
|
||
Returns the next sibling element object.
|
||
|
||
### prev
|
||
|
||
Returns the last sibling element object.
|
||
|
||
### parents
|
||
|
||
parents(num: int = 1) -> Union[DriverElement, None]
|
||
|
||
Returns the Nth-level parent element object.
|
||
|
||
### nexts
|
||
|
||
nexts(num: int = 1) -> Union[DriverElement, None]
|
||
|
||
Returns the next N sibling element objects.
|
||
|
||
### prevs
|
||
|
||
prevs(num: int = 1) -> Union[DriverElement, None]
|
||
|
||
Return the first N sibling element objects.
|
||
|
||
### ele
|
||
|
||
ele(loc_or_str: Union[tuple, str], mode: str = None, show_errmsg: bool = False) -> Union[SessionElement, List[SessionElement], None]
|
||
|
||
Get elements based on query parameters.
|
||
If the query parameter is a string, you can select the '@property name:', 'tag:', 'text:', 'css:', and 'xpath:' methods. When there is no control mode, it is searched by text mode by default.
|
||
If it is loc, query directly according to the content.
|
||
|
||
Parameter Description:
|
||
|
||
- loc_or_str - Query condition parameters
|
||
|
||
- mode - Find one or more, pass in 'single' or 'all'
|
||
|
||
- show_errmsg - Whether to throw and display when an exception occurs
|
||
|
||
Examples:
|
||
|
||
- element.ele('@id:ele_id') - Find elements by attributes
|
||
- element.ele('tag:div') - Find elements by tag name
|
||
- element.ele('text:some text') - Find elements by text
|
||
- element.ele('some text') - Find elements by text
|
||
- element.ele('css:>div') - Find elements by css selector
|
||
- element.ele('xpath://div') - Find elements according to xpath
|
||
- element.ele((By.ID, 'ele_id')) - Find elements according to loc
|
||
|
||
### eles
|
||
|
||
eles(loc_or_str: Union[tuple, str], show_errmsg: bool = False) -> List[SessionElement]
|
||
|
||
Obtain a list of elements that meet the criteria based on query parameters. The query parameter usage method is the same as the ele method.
|
||
|
||
Parameter Description:
|
||
|
||
- loc_or_str - Query condition parameters
|
||
- show_errmsg - Whether to throw and display when an exception occurs
|
||
|
||
### attr
|
||
|
||
attr(attr: str) -> str
|
||
|
||
Get the value of an attribute of an element.
|
||
|
||
Parameter Description:
|
||
|
||
- attr - Attribute name
|
||
|
||
|
||
|
||
## OptionsManager class
|
||
|
||
class OptionsManager(path: str = None)
|
||
|
||
The class that manages the content of the configuration file.
|
||
|
||
Parameter Description:
|
||
|
||
- path - Ini file path, if not imported, the configs.ini file in the current folder is read by default
|
||
|
||
### get_value
|
||
|
||
get_value(section: str, item: str) -> Any
|
||
|
||
Get the configured value.
|
||
|
||
Parameter Description:
|
||
|
||
- section - Paragraph name
|
||
- item - Configuration item name
|
||
|
||
### get_option
|
||
|
||
get_option(section: str) -> dict
|
||
|
||
Return configuration information for the entire paragraph in dictionary format.
|
||
|
||
Parameter Description:
|
||
|
||
- section - Paragraph name
|
||
|
||
### set_item
|
||
|
||
set_item(section: str, item: str, value: str) -> None
|
||
|
||
Set configuration values.
|
||
|
||
Parameter Description:
|
||
|
||
- section - Paragraph name
|
||
- item - Configuration item name
|
||
- value - Content of value
|
||
|
||
### save
|
||
|
||
save(path: str = None) -> None
|
||
|
||
Save the settings to a file.
|
||
|
||
Parameter Description:
|
||
|
||
- path - The path of the ini file, which is saved to the module folder by default
|
||
|
||
|
||
|
||
## DriverOptions class
|
||
|
||
class DriverOptions(read_file=True)
|
||
|
||
The chrome browser configuration class, inherited from the Options class of selenium.webdriver.chrome.options, adds methods to delete configuration and save to file.
|
||
|
||
Parameter Description:
|
||
|
||
- read_file - Boolean, specifies whether to read configuration information from the ini file when creating
|
||
|
||
### driver_path
|
||
|
||
Path of chromedriver.exe.
|
||
|
||
### remove_argument
|
||
|
||
remove_argument(value: str) -> None
|
||
|
||
Remove a setting.
|
||
|
||
Parameter Description:
|
||
|
||
- value - The attribute value to be removed
|
||
|
||
### remove_experimental_option
|
||
|
||
remove_experimental_option(key: str) -> None
|
||
|
||
Remove an experiment setting and delete the incoming key value.
|
||
|
||
Parameter Description:
|
||
|
||
- key - The key value of the experiment to be removed
|
||
|
||
### remove_argument
|
||
|
||
remove_argument() -> None
|
||
|
||
Remove all plug-ins, because the plug-in is stored in the entire file, it is difficult to remove one of them, so if you need to set, remove all and reset.
|
||
|
||
### save
|
||
|
||
save(path: str = None) -> None
|
||
|
||
Save the settings to a file.
|
||
|
||
Parameter Description:
|
||
|
||
- path - The path of the ini file, which is saved to the module folder by default
|
||
|
||
### set_argument
|
||
|
||
set_argument(arg: str, value: Union[bool, str]) -> None
|
||
|
||
Set the chrome attribute, the attribute with no value can be set to switch, the attribute with the value can set the value of the attribute.
|
||
|
||
Parameter description:
|
||
|
||
- arg - attribute name
|
||
- value - the attribute value, the attribute with value is passed in the value, the attribute without value is passed in bool
|
||
|
||
### set_headless
|
||
|
||
set_headless(on_off: bool = True) -> None
|
||
|
||
Turn on or off the interfaceless mode.
|
||
|
||
Parameter Description:
|
||
|
||
on_off - open or close, bool
|
||
|
||
### set_no_imgs
|
||
|
||
set_no_imgs(on_off: bool = True) -> None
|
||
|
||
Whether to load pictures.
|
||
|
||
Parameter Description:
|
||
|
||
on_off - open or close, bool
|
||
|
||
### set_no_js
|
||
|
||
set_no_js(on_off: bool = True) -> None
|
||
|
||
Whether to disable js.
|
||
|
||
Parameter Description:
|
||
|
||
on_off - open or close, bool
|
||
|
||
### set_mute
|
||
|
||
set_mute(on_off: bool = True) -> None
|
||
|
||
Whether to mute.
|
||
|
||
Parameter Description:
|
||
|
||
on_off - open or close, bool
|
||
|
||
### set_user_agent
|
||
|
||
set_user_agent(user_agent: str) -> None
|
||
|
||
Set the browser user agent.
|
||
|
||
Parameter Description:
|
||
|
||
- user_agent - user agent string
|
||
|
||
### set_proxy
|
||
|
||
set_proxy(proxy: str) -> None
|
||
|
||
Set up a proxy.
|
||
|
||
Parameter Description:
|
||
|
||
- proxy - proxy address
|
||
|
||
### set_paths
|
||
|
||
set_paths(driver_path: str = None, chrome_path: str = None, debugger_address: str = None, download_path: str = None, user_data_path: str = None, cache_path: str = None) -> None
|
||
|
||
Set browser-related paths.
|
||
|
||
Parameter Description:
|
||
|
||
- driver_path - path of chromedriver.exe
|
||
- chrome_path - path of chrome.exe
|
||
- debugger_address - debug browser address, for example: 127.0.0.1:9222
|
||
- download_path - download file path
|
||
- user_data_path - user data path
|
||
- cache_path - cache path
|
||
|
||
|
||
|
||
## easy_set methods
|
||
|
||
The configuration of chrome is too difficult to remember, so the commonly used configuration is written as a simple method, and the call will modify the relevant content of the ini file.
|
||
|
||
### set_paths
|
||
|
||
set_paths(driver_path: str = None, chrome_path: str = None, debugger_address: str = None, global_tmp_path: str = None, download_path: str = None, user_data_path: str = None, cache_path: str = None, check_version: bool = True) -> None
|
||
|
||
Convenient way to set the path, save the incoming path to the default ini file, and check whether the chrome and chromedriver versions match.
|
||
|
||
Parameter Description:
|
||
|
||
- driver_path - the path of chromedriver.exe
|
||
- chrome_path - the path of chrome.exe
|
||
- debugger_address - Debug browser address, eg. 127.0.0.1:9222
|
||
- download_path - File download path
|
||
- global_tmp_path - Temporary folder path
|
||
- user_data_path - User data path
|
||
- cache_path - Cache path
|
||
- check_version - Whether to check whether chromedriver and chrome match
|
||
|
||
### set_argument
|
||
|
||
set_argument(arg: str, value: Union[bool, str]) -> None
|
||
|
||
Set the properties. If the attribute has no value (such as' zh_CN.utf-8 '), the value is passed into the bool to indicate the switch; Otherwise, value passes in STR, and when value is "" or False, the attribute entry is deleted.
|
||
|
||
Parameter Description:
|
||
|
||
- arg - Attribute name
|
||
- value - Attribute value, pass in a value if it has a value, pass in a bool if it doesn't
|
||
|
||
### set_headless
|
||
|
||
set_headless(on_off: bool) -> None
|
||
|
||
Turn headless mode on or off.
|
||
|
||
Parameter Description:
|
||
|
||
- on_off - Whether to enable headless mode
|
||
|
||
### set_no_imgs
|
||
|
||
set_no_imgs(on_off: bool) -> None
|
||
|
||
Turn the picture display on or off.
|
||
|
||
Parameter Description:
|
||
|
||
- on_off - Whether to enable no-picture mode
|
||
|
||
### set_no_js
|
||
|
||
set_no_js(on_off: bool) -> None
|
||
|
||
Turn JS mode on or off.
|
||
|
||
Parameter Description:
|
||
|
||
- on_off - Whether to enable or disable JS mode
|
||
|
||
### set_mute
|
||
|
||
set_mute(on_off: bool) -> None
|
||
|
||
Turn silent mode on or off.
|
||
|
||
Parameter Description:
|
||
|
||
- on_off - Whether to turn on silent mode
|
||
|
||
### set_user_agent
|
||
|
||
set_user_agent(user_agent: str) -> None:
|
||
|
||
Set user_agent.
|
||
|
||
Parameter Description:
|
||
|
||
- user_agent - user_agent value
|
||
|
||
### set_proxy
|
||
|
||
set_proxy(proxy: str) -> None
|
||
|
||
Set up the proxy.
|
||
|
||
Parameter Description:
|
||
|
||
- proxy - Proxy value
|
||
|
||
### check_driver_version
|
||
|
||
check_driver_version(driver_path: str = None, chrome_path: str = None) -> bool
|
||
|
||
Check if the chrome and chromedriver versions match.
|
||
|
||
Parameter Description:
|
||
|
||
- driver_path - the path of chromedriver.exe
|
||
- chrome_path - the path of chrome.exe |