We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a2159a commit fa731afCopy full SHA for fa731af
packages/preview-middleware/test/integration/preview/preview.spec.ts
@@ -108,6 +108,8 @@ const prepare = async (ui5Version: string) => {
108
109
const check = async (param: { page: Page }) => {
110
const { page } = param;
111
+ const client = await page.context().newCDPSession(page);
112
+ await client.send('Network.clearBrowserCache');
113
await page.goto(`${getUrl()}/my/custom/path/preview.html#app-preview`);
114
await page.getByRole('button', { name: 'Go', exact: true }).click();
115
await expect(page.getByText('Product_0', { exact: true })).toBeVisible();
0 commit comments