* Navigate to a specific route in the site * @param {import('playwright-core').Page} page the playwright page instance from the test * @param {string} route the route you want to navigate to
(page, route)
| 7 | * @param {string} route the route you want to navigate to |
| 8 | */ |
| 9 | async function navigateToRoute(page, route) { |
| 10 | await page.evaluate(r => (window.location.hash = r), route); |
| 11 | await page.waitForLoadState('networkidle'); |
| 12 | } |
| 13 | |
| 14 | test.describe('Virtual Routes - Generate Dynamic Content via Config', () => { |
| 15 | test.describe('Different Types of Virtual Routes', () => { |
no outgoing calls
no test coverage detected
searching dependent graphs…