##### playwright.定位器 - [[Page.实例方法]] - [[class Locator]] ```python page.locator("css=button").click() page.locator("xpath=//button").click() page.locator("button").click() page.locator("//button").click() ```