--- sidebar_label: Page.locator_1 --- # Page.locator() method Creates a locator for the provided function. See [Locator](./puppeteer.locator.md) for details and supported actions. #### Signature: ```typescript class Page { locator<Ret>(func: () => Awaitable<Ret>): Locator<Ret>; } ``` ## Parameters <table><thead><tr><th> Parameter </th><th> Type </th><th> Description </th></tr></thead> <tbody><tr><td> func </td><td> () => [Awaitable](./puppeteer.awaitable.md)<Ret> </td><td> </td></tr> </tbody></table> **Returns:** [Locator](./puppeteer.locator.md)<Ret> ## Remarks Locators API is experimental and we will not follow semver for breaking change in the Locators API.