mirror of
https://gitee.com/g1879/DrissionPage.git
synced 2024-12-10 04:00:23 +08:00
1.5.3
This commit is contained in:
parent
1ecff10583
commit
32206e1d0e
19
README.en.md
19
README.en.md
@ -52,8 +52,25 @@ Keep everything simple, try to provide simple and direct usage, and be more frie
|
|||||||
# Project structure
|
# Project structure
|
||||||
|
|
||||||
***
|
***
|
||||||
|
## Structure diagram
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
## Drission Class
|
||||||
|
|
||||||
|
Manage the WebDriver object and Session object responsible for communicating with the web page, which is equivalent to the role of the driver.
|
||||||
|
|
||||||
|
## MixPage Class
|
||||||
|
|
||||||
|
MixPage encapsulates the common functions of page operation. It calls the driver managed in the Drission class to access and operate the page. Can switch between driver and session mode. The login status will be automatically synchronized when switching.
|
||||||
|
|
||||||
|
## DriverElement class
|
||||||
|
|
||||||
|
The page element class in driver mode can perform operations such as clicking on the element, inputting text, modifying attributes, running js, etc., and can also search for descendant elements at its lower level.
|
||||||
|
|
||||||
|
## SessionElement Class
|
||||||
|
|
||||||
|
The page element class in session mode can obtain element attribute values and search for descendant elements at its lower levels.
|
||||||
|
|
||||||
# Simple demo
|
# Simple demo
|
||||||
|
|
||||||
|
@ -52,8 +52,25 @@ requests爬虫面对要登录的网站时,要分析数据包、JS源码,构
|
|||||||
# 项目结构
|
# 项目结构
|
||||||
|
|
||||||
***
|
***
|
||||||
|
## 结构图
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
## Drission类
|
||||||
|
|
||||||
|
管理负责与网页通讯的 WebDriver 对象和 Session 对象,相当于驱动器的角色。
|
||||||
|
|
||||||
|
## MixPage类
|
||||||
|
|
||||||
|
MixPage 封装了页面操作的常用功能,它调用 Drission 类中管理的驱动器,对页面进行访问、操作。可在 driver 和 session 模式间切换。切换的时候会自动同步登录状态。
|
||||||
|
|
||||||
|
## DriverElement类
|
||||||
|
|
||||||
|
driver 模式下的页面元素类,可对元素进行点击、输入文本、修改属性、运行 js 等操作,也可在其下级搜索后代元素。
|
||||||
|
|
||||||
|
## SessionElement类
|
||||||
|
|
||||||
|
session 模式下的页面元素类,可获取元素属性值,也可在其下级搜索后代元素。
|
||||||
|
|
||||||
# 简单演示
|
# 简单演示
|
||||||
|
|
||||||
@ -757,8 +774,6 @@ debugger_address =
|
|||||||
binary_location =
|
binary_location =
|
||||||
; 配置信息
|
; 配置信息
|
||||||
arguments = [
|
arguments = [
|
||||||
; 隐藏浏览器窗口
|
|
||||||
'--headless',
|
|
||||||
; 静音
|
; 静音
|
||||||
'--mute-audio',
|
'--mute-audio',
|
||||||
; 不使用沙盒
|
; 不使用沙盒
|
||||||
@ -1440,7 +1455,7 @@ d模式时检查网页是否符合预期。默认由response状态检查,可
|
|||||||
|
|
||||||
参数说明:
|
参数说明:
|
||||||
|
|
||||||
- loc_or_ele:[int, str, tuple, WebElement, DriverElement] - 查找iframe元素的条件,可接收iframe序号(0开始)、id或name、查询字符串、loc参数、WebElement对象、DriverElement对象,传入'main'跳到最高层,传入'parent'跳到上一层
|
- loc_or_ele:[int, str, tuple, WebElement, DriverElement] - 查找 iframe 元素的条件,可接收 iframe 序号(0开始)、id 或 name、查询字符串、loc参数、WebElement对象、DriverElement 对象,传入 'main' 跳到最高层,传入 'parent' 跳到上一层
|
||||||
|
|
||||||
示例:
|
示例:
|
||||||
- to_iframe('tag:iframe') - 通过传入 iframe 的查询字符串定位
|
- to_iframe('tag:iframe') - 通过传入 iframe 的查询字符串定位
|
||||||
|
Loading…
x
Reference in New Issue
Block a user