From 9fcd75bb0d56a71ba8e0d10f9e49c4cd42dad99f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8D=89=E5=B8=BD=E5=B0=8F=E5=AD=90?= <423311977@qq.com> Date: Sat, 7 Jan 2023 02:40:28 +0000 Subject: [PATCH] =?UTF-8?q?update=20docs/=E8=BF=9B=E9=98=B6=E4=BD=BF?= =?UTF-8?q?=E7=94=A8/=E7=9B=91=E5=90=AC=E6=B5=8F=E8=A7=88=E5=99=A8?= =?UTF-8?q?=E7=BD=91=E7=BB=9C.md.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 草帽小子 <423311977@qq.com> --- docs/进阶使用/监听浏览器网络.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/进阶使用/监听浏览器网络.md b/docs/进阶使用/监听浏览器网络.md index e655cd6..9137987 100644 --- a/docs/进阶使用/监听浏览器网络.md +++ b/docs/进阶使用/监听浏览器网络.md @@ -23,7 +23,7 @@ listener.set_targets('JobSearchResult.aspx') # 设置需要监听的url listener.listen(count=10) # 开始监听,接收到10条目标url的请求后停止 for i in listener.steps(): - print(i[0].body) # 打印实时打印监听到的内容 + print(i.body) # 打印实时打印监听到的内容 listener.stop() #停止监听 ```