From e1b5ff424c968314a9e60cefca643e09f1f7d265 Mon Sep 17 00:00:00 2001 From: g1879 Date: Tue, 26 May 2020 00:06:18 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0README?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.en.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) ```