test(webkit): disbale page-click-scroll test for WPE (#7627)
This commit is contained in:
parent
67f5fb6a4f
commit
5389d507e7
|
|
@ -16,8 +16,9 @@
|
|||
|
||||
import { test as it } from './pageTest';
|
||||
|
||||
it('should not hit scroll bar', async ({page, isAndroid, browserName, platform}) => {
|
||||
it('should not hit scroll bar', async ({page, isAndroid, browserName, platform, headless}) => {
|
||||
it.fixme(browserName === 'webkit' && platform === 'darwin');
|
||||
it.fixme(browserName === 'webkit' && platform === 'linux' && headless);
|
||||
it.skip(isAndroid);
|
||||
|
||||
await page.setContent(`
|
||||
|
|
|
|||
Loading…
Reference in a new issue