diff --git a/README.en.md b/README.en.md index bf769a2..39d9aeb 100644 --- a/README.en.md +++ b/README.en.md @@ -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) ```