mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
13 lines
328 B
TypeScript
13 lines
328 B
TypeScript
const AppSettingsPage = {
|
|
visitAgentOptions: () => {
|
|
cy.visit("/settings/organization/agents");
|
|
},
|
|
|
|
editAgentOptionsForm: (text: string) => {
|
|
cy.findByRole("textbox").type(text, { force: true });
|
|
cy.findByRole("button", { name: /save/i }).should("be.enabled").click();
|
|
},
|
|
};
|
|
|
|
export default AppSettingsPage;
|