mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
test: Migrate Cypress E2E tests to Playwright (#18970)
This commit is contained in:
31
packages/testing/playwright/tests/ui/43-oauth-flow.spec.ts
Normal file
31
packages/testing/playwright/tests/ui/43-oauth-flow.spec.ts
Normal file
@@ -0,0 +1,31 @@
|
||||
import { test, expect } from '../../fixtures/base';
|
||||
|
||||
test.describe('OAuth Credentials', () => {
|
||||
test('should create and connect with Google OAuth2', async ({ n8n, page }) => {
|
||||
const projectId = await n8n.start.fromNewProject();
|
||||
await page.goto(`projects/${projectId}/credentials`);
|
||||
await n8n.credentials.emptyListCreateCredentialButton.click();
|
||||
await n8n.credentials.openNewCredentialDialogFromCredentialList('Google OAuth2 API');
|
||||
await n8n.credentials.fillCredentialField('clientId', 'test-key');
|
||||
await n8n.credentials.fillCredentialField('clientSecret', 'test-secret');
|
||||
await n8n.credentials.saveCredential();
|
||||
|
||||
const popupPromise = page.waitForEvent('popup');
|
||||
await n8n.credentials.getOauthConnectButton().click();
|
||||
|
||||
const popup = await popupPromise;
|
||||
const popupUrl = popup.url();
|
||||
expect(popupUrl).toContain('accounts.google.com');
|
||||
expect(popupUrl).toContain('client_id=test-key');
|
||||
|
||||
await popup.close();
|
||||
|
||||
await page.evaluate(() => {
|
||||
const channel = new BroadcastChannel('oauth-callback');
|
||||
channel.postMessage('success');
|
||||
});
|
||||
|
||||
await expect(n8n.credentials.getSaveButton()).toContainText('Saved');
|
||||
await expect(n8n.credentials.getOauthConnectSuccessBanner()).toContainText('Account connected');
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user