Skip to content

Commit 70fb03c

Browse files
authored
fix(browser): add this type to locators.extend (#8069)
1 parent 88c5957 commit 70fb03c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/browser/context.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -583,7 +583,7 @@ export interface BrowserPage extends LocatorSelectors {
583583
export interface BrowserLocators {
584584
createElementLocators(element: Element): LocatorSelectors
585585
extend(methods: {
586-
[K in keyof LocatorSelectors]?: (...args: Parameters<LocatorSelectors[K]>) => ReturnType<LocatorSelectors[K]> | string
586+
[K in keyof LocatorSelectors]?: (this: BrowserPage | Locator, ...args: Parameters<LocatorSelectors[K]>) => ReturnType<LocatorSelectors[K]> | string
587587
}): void
588588
}
589589

0 commit comments

Comments
 (0)