mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
78 lines
2.5 KiB
TypeScript
78 lines
2.5 KiB
TypeScript
import { BasePage } from './BasePage';
|
|
import { CredentialModal } from './components/CredentialModal';
|
|
|
|
export class CredentialsPage extends BasePage {
|
|
readonly credentialModal = new CredentialModal(this.page.getByTestId('editCredential-modal'));
|
|
|
|
get emptyListCreateCredentialButton() {
|
|
return this.page.getByRole('button', { name: 'Add first credential' });
|
|
}
|
|
|
|
get createCredentialButton() {
|
|
return this.page.getByTestId('create-credential-button');
|
|
}
|
|
|
|
get credentialCards() {
|
|
return this.page.getByTestId('resources-list-item');
|
|
}
|
|
|
|
getCredentialByName(name: string) {
|
|
return this.credentialCards.filter({ hasText: name }).first();
|
|
}
|
|
|
|
get addResourceButton() {
|
|
return this.page.getByTestId('add-resource');
|
|
}
|
|
get actionCredentialButton() {
|
|
return this.page.getByTestId('action-credential');
|
|
}
|
|
|
|
/**
|
|
* Create a credential from the credentials list, fill fields, save, and close the modal.
|
|
* @param credentialType - The type of credential to create (e.g. 'Notion API')
|
|
* @param fields - Key-value pairs for credential fields to fill
|
|
*/
|
|
async createCredentialFromCredentialPicker(
|
|
credentialType: string,
|
|
fields: Record<string, string>,
|
|
options?: { closeDialog?: boolean; name?: string },
|
|
): Promise<void> {
|
|
await this.page.getByRole('combobox', { name: 'Search for app...' }).fill(credentialType);
|
|
await this.page
|
|
.getByTestId('new-credential-type-select-option')
|
|
.filter({ hasText: credentialType })
|
|
.click();
|
|
await this.page.getByTestId('new-credential-type-button').click();
|
|
await this.credentialModal.addCredential(fields, {
|
|
name: options?.name,
|
|
closeDialog: options?.closeDialog,
|
|
});
|
|
}
|
|
|
|
async clearSearch() {
|
|
await this.page.getByTestId('resources-list-search').clear();
|
|
}
|
|
|
|
async sortByNameDescending() {
|
|
await this.page.getByTestId('resources-list-sort').click();
|
|
await this.page.getByText('Name (Z-A)').click();
|
|
}
|
|
|
|
async sortByNameAscending() {
|
|
await this.page.getByTestId('resources-list-sort').click();
|
|
await this.page.getByText('Name (A-Z)').click();
|
|
}
|
|
|
|
/**
|
|
* Select credential type without auto-saving (for tests that need to handle save manually)
|
|
*/
|
|
async selectCredentialType(credentialType: string): Promise<void> {
|
|
await this.page.getByRole('combobox', { name: 'Search for app...' }).fill(credentialType);
|
|
await this.page
|
|
.getByTestId('new-credential-type-select-option')
|
|
.filter({ hasText: credentialType })
|
|
.click();
|
|
await this.page.getByTestId('new-credential-type-button').click();
|
|
}
|
|
}
|