mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-12 11:50:22 +03:00
test: third party cookies via an iframe on wk mac (#17050)
This commit is contained in:
parent
8f1f4946bf
commit
10b22aca88
@ -321,8 +321,8 @@ it('should add cookies with an expiration', async ({ context }) => {
|
||||
}])).rejects.toThrow(/Cookie should have a valid expires/);
|
||||
});
|
||||
|
||||
it('should be able to send third party cookies via an iframe', async ({ browser, httpsServer, browserName }) => {
|
||||
it.fixme(browserName === 'firefox' || browserName === 'webkit');
|
||||
it('should be able to send third party cookies via an iframe', async ({ browser, httpsServer, browserName, isMac }) => {
|
||||
it.fixme(browserName === 'firefox' || (browserName === 'webkit' && isMac));
|
||||
it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/16937' });
|
||||
|
||||
const context = await browser.newContext({
|
||||
|
Loading…
Reference in New Issue
Block a user