更新README

This commit is contained in:
g1879 2020-05-26 00:06:18 +08:00
parent be44ee7095
commit e1b5ff424c

View File

@ -64,7 +64,7 @@ first_col = foot.ele('css:>div') # Find first div element in the lower level of
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)
```