1. 使用css选择器,指定特定属性时,不能直接采用浏览器中的形式:
ele.query_selector("[attr=value]")
会报错:
playwright._impl._api_types.Error: Evaluation failed: SyntaxError: The string did not match the expected pattern.
应该使用:
ele.query_selector("[attr='value']")
如:
ele.query_selector("css=[data-xh='0']")