This commit is contained in:
g1879 2020-11-18 16:50:55 +08:00
parent 1ecff10583
commit 32206e1d0e
2 changed files with 263 additions and 231 deletions

View File

@ -52,8 +52,25 @@ Keep everything simple, try to provide simple and direct usage, and be more frie
# Project structure # Project structure
*** ***
## Structure diagram
![](https://gitee.com/g1879/DrissionPage-demos/raw/master/pics/20201110161811.jpg) ![](https://gitee.com/g1879/DrissionPage-demos/raw/master/pics/20201118164542.jpg)
## 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

View File

@ -52,8 +52,25 @@ requests爬虫面对要登录的网站时要分析数据包、JS源码
# 项目结构 # 项目结构
*** ***
## 结构图
![](https://gitee.com/g1879/DrissionPage-demos/raw/master/pics/20201110161811.jpg) ![](https://gitee.com/g1879/DrissionPage-demos/raw/master/pics/20201118164542.jpg)
## 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 的查询字符串定位