From: B站 白月黑羽编程
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
# 打印所有搜索内容标签:Playwright,chinese,text,常见,语法,locator,inner,student,page From: https://www.cnblogs.com/Raul2018/p/18016104
lcs = page.locator(".result-item").all()
for lc in lcs:
print(lc.inner_text())
# 或者直接使用这个方法all_inner_text()
# text = page.locator(".result-item").all_inner_text()
# print(text)
# 使用.class来定位时,有可能有两个class属性, 就可以用任意一个值。如果定位不到,可以把两个属性都加进去。
# <span class="chinese student">张三</span>
# page.locator(.chinese) 或者 page.locator(.student)
# 或者 page.locator(.chinese.student), 这种精确度也更高
# 但绝对不能写 page.locator(.chinese student)