Fixture interface for Object Page testing operations.
Provides a high-level facade for Object Page interactions within a Playwright test fixture context. Each method maps to a corresponding function in object-page.ts.
object-page.ts
test('edit product', async ({ objectPage }) => { await objectPage.clickEdit(); const title = await objectPage.getHeaderTitle(); expect(title).toBe('Product Details');}); Copy
test('edit product', async ({ objectPage }) => { await objectPage.clickEdit(); const title = await objectPage.getHeaderTitle(); expect(title).toBe('Product Details');});
Readonly
Fixture interface for Object Page testing operations.
Remarks
Provides a high-level facade for Object Page interactions within a Playwright test fixture context. Each method maps to a corresponding function in
object-page.ts.Example