更新README

This commit is contained in:
g1879 2020-05-26 21:58:47 +08:00
parent 6d799fd807
commit db1c873999
2 changed files with 25 additions and 24 deletions

View File

@ -39,28 +39,31 @@ The design concept of this library is to keep everything simple, try to provide
***
Example: Log in to the website with selenium, then switch to requests to read the web page, and print the element attributes.
Example: Log in to the website with selenium, then switch to requests to read the web page.
```python
from DrissionPage import *
from time import sleep
drission = Drission() # Create Drive Object
page = MixPage(drission) # Create page object, default driver mode
page.get('https://gitee.com/profile') # Visit the personal center page (not logged in, redirect to the login page)
page.get('https://gitee.com/profile') # Visit personal center page (redirect to the login page)
# Use selenium to enter the account password to log in
page.ele('@id:user_login').input('your_user_name')
page.ele('@id:user_login').input('your_user_name') # Use selenium to log in
page.ele('@id:user_password').input('your_password\n')
sleep(1) # Wait for login
page.change_mode() # Switch to session mode
print('Title after login:', page.title, '\n') # Output of session mode after login
```
# Get and print attributes
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 of foot element by css selector.
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
@ -72,8 +75,6 @@ print(text, href)
Output:
```
Title after login: Dashboard - Gitee
<SessionElement div class='column'>
Learn Git Branching https://oschina.gitee.io/learn-git-branching/
```

View File

@ -41,26 +41,28 @@ DrissionPage即driver和session的合体是个基于python的Web自动化
***
用selenium登录网站然后切换到requests读取网页,打印元素属性
用selenium登录网站然后切换到requests读取网页。
```python
from DrissionPage import *
from time import sleep
drission = Drission() # 创建驱动器对象
page = MixPage(drission) # 创建页面对象默认driver模式
page.get('https://gitee.com/profile') # 访问个人中心页面(未登录,重定向到登录页面)
# 使用selenium输入账号密码登录
page.ele('@id:user_login').input('your_user_name')
page.ele('@id:user_login').input('your_user_name') # 使用selenium输入账号密码登录
page.ele('@id:user_password').input('your_password\n')
sleep(1) # 等待登录
page.change_mode() # 切换到session模式
print('登录后title', page.title, '\n') # 登录后session模式的输出
```
# 获取并打印属性
输出:
```
登录后title 个人资料 - 码云 Gitee.com
```
例:获取并打印属性
```python
foot = page.ele('@id:footer-left') # 用id查找元素
first_col = foot.ele('css:>div') # 使用css selector在元素的下级中查找元素第一个
lnk = first_col.ele('text:命令学') # 使用文本内容查找元素
@ -74,8 +76,6 @@ print(text, href)
输出:
```
登录后title 个人资料 - 码云 Gitee.com
<SessionElement div class='column'>
Git 命令学习 https://oschina.gitee.io/learn-git-branching/
```