mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 00:54:06 -08:00
95b97078e8
* add tests * ci: Setup cypress tasks for resetting DB, and setting up an owner * add test tests to check for settings * add more tests * clean up * rename tag * update test id Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
12 lines
282 B
TypeScript
12 lines
282 B
TypeScript
import { BasePage } from "./base";
|
|
|
|
export class SettingsUsersPage extends BasePage {
|
|
url = '/settings/users';
|
|
getters = {
|
|
setUpOwnerButton: () => cy.getByTestId('action-box').find('button'),
|
|
}
|
|
actions = {
|
|
goToOwnerSetup: () => this.getters.setUpOwnerButton().click(),
|
|
}
|
|
}
|