This commit is contained in:
g1879 2020-11-24 14:47:42 +08:00
parent 45998ec088
commit df3d07beee
2 changed files with 68 additions and 12 deletions

View File

@ -734,9 +734,9 @@ shadow_root_element.is_valid() # Returns whether the element is still in dom
## Docking with selenium code
## Splicing with selenium or requests code
The DrissionPage code can be seamlessly spliced with the selenium code, either directly using the selenium WebDriver object, or using its own WebDriver everywhere for the selenium code. Make the migration of existing projects very convenient.
DrissionPage code can be seamlessly spliced with selenium and requests code. You can use Selenium's WebDriver object directly, or you can export your own WebDriver to selenium code. The Session object of requests can also be passed directly. Make the migration of existing projects very convenient.
### selenium to DrissionPage
@ -745,11 +745,10 @@ driver = webdriver.Chrome()
driver.get('https://www.baidu.com')
page = MixPage(Drission(driver)) # Pass the driver to Drission, create a MixPage object
print(page.title) # Print result: You will know by clicking on Baidu
print(page.title) # Print result: 百度一下,你就知道
element = driver.find_element_by_xpath('//div') # Use selenium native functions
```
### DrissionPage to selenium
```python
@ -757,7 +756,26 @@ page = MixPage()
page.get('https://www.baidu.com')
driver = page.driver # Get the WebDriver object from the MixPage object
print(driver.title) # Print results: You will know by clicking on Baidu
print(driver.title) # Print results: 百度一下,你就知道
```
### requests to DrissionPage
``` python
session = requets.Session()
drission = Drission(session_or_options=session)
page = MixPage(drission, mode='s')
page.get('https://www.baidu.com')
```
### DrissionPage to requests
```python
page = MixPage('s')
session = page.session
response = session.get('https://www.baidu.com')
```

View File

@ -732,11 +732,11 @@ shadow_root_element.is_valid() # 返回元素是否还在 dom 内
## 与 selenium 代码对接
## 与 selenium 及 requests 代码对接
DrissionPage 代码可与 selenium 代码无缝拼接,既可直接使用 selenium 的 WebDriver 对象,也可到处自身的 WebDriver 给 selenium 代码使用。使已有项目的迁移非常方便。
DrissionPage 代码可与 selenium 及 requests 代码无缝拼接。既可直接使用 selenium 的 WebDriver 对象,也可导出自身的 WebDriver 给 selenium 代码使用。requests 的 Session 对象也可直接传递。使已有项目的迁移非常方便。
### selenium 转 DrissionPage
### selenium DrissionPage
```python
driver = webdriver.Chrome()
@ -746,9 +746,7 @@ page = MixPage(Drission(driver)) # 把 driver 传递给 Drission创建 MixPa
print(page.title) # 打印结果:百度一下,你就知道
```
### DrissionPage 转 selenium
### DrissionPage 转 selenium
```python
page = MixPage()
@ -756,8 +754,48 @@ page.get('https://www.baidu.com')
driver = page.driver # 从 MixPage 对象中获取 WebDriver 对象
print(driver.title) # 打印结果:百度一下,你就知道
element = driver.find_element_by_xpath('//div') # 使用 selenium 原生功能
```
### requests 转 DrissionPage
``` python
session = requets.Session()
drission = Drission(session_or_options=session)
page = MixPage(drission, mode='s')
page.get('https://www.baidu.com')
```
### DrissionPage 转 requests
```python
page = MixPage('s')
session = page.session
response = session.get('https://www.baidu.com')
```
## requests 功能使用
### 连接参数
除了在创建时传入配置信息及连接参数如有特别要求s 模式下也可在每次访问网址时设置连接参数。
```python
```
Tips如果连接参数内没有指定s 模式会根据当前域名自动填写 Host 和 Referer 属性。
### Response 对象
## 下载文件