2023-09-08 16:51:59 +01:00
|
|
|
import { e2e } from '../utils';
|
2022-02-03 09:58:56 +11:00
|
|
|
|
|
|
|
|
const PAGE_UNDER_TEST = 'kVi2Gex7z/test-variable-output';
|
2023-04-11 10:51:54 +01:00
|
|
|
const DASHBOARD_NAME = 'Test variable output';
|
2022-02-03 09:58:56 +11:00
|
|
|
|
|
|
|
|
describe('Variables - Text box', () => {
|
2023-09-13 13:24:20 +01:00
|
|
|
beforeEach(() => {
|
2023-09-27 11:33:00 +01:00
|
|
|
e2e.flows.login(Cypress.env('USERNAME'), Cypress.env('PASSWORD'));
|
2023-09-13 13:24:20 +01:00
|
|
|
});
|
|
|
|
|
|
2022-02-03 09:58:56 +11:00
|
|
|
it('can add a new text box variable', () => {
|
|
|
|
|
e2e.flows.openDashboard({ uid: `${PAGE_UNDER_TEST}?orgId=1&editview=templating` });
|
2023-09-11 11:20:54 +01:00
|
|
|
cy.contains(DASHBOARD_NAME).should('be.visible');
|
2022-02-03 09:58:56 +11:00
|
|
|
|
2022-02-04 12:37:01 +11:00
|
|
|
// Create a new "text box" variable
|
2022-02-03 09:58:56 +11:00
|
|
|
e2e.components.CallToActionCard.buttonV2('Add variable').click();
|
|
|
|
|
|
2022-10-12 09:43:41 +01:00
|
|
|
e2e.pages.Dashboard.Settings.Variables.Edit.General.generalTypeSelectV2().within(() => {
|
2023-09-11 11:20:54 +01:00
|
|
|
cy.get('input').type('Text box{enter}');
|
2022-10-12 09:43:41 +01:00
|
|
|
});
|
2022-02-04 11:55:19 +11:00
|
|
|
e2e.pages.Dashboard.Settings.Variables.Edit.General.generalNameInputV2().clear().type('VariableUnderTest').blur();
|
|
|
|
|
e2e.pages.Dashboard.Settings.Variables.Edit.General.generalLabelInputV2().type('Variable under test').blur();
|
|
|
|
|
e2e.pages.Dashboard.Settings.Variables.Edit.TextBoxVariable.textBoxOptionsQueryInputV2().type('cat-dog').blur();
|
2022-02-03 09:58:56 +11:00
|
|
|
|
|
|
|
|
e2e.pages.Dashboard.Settings.Variables.Edit.General.previewOfValuesOption().eq(0).should('have.text', 'cat-dog');
|
|
|
|
|
|
|
|
|
|
// Navigate back to the homepage and change the selected variable value
|
|
|
|
|
e2e.pages.Dashboard.Settings.Variables.Edit.General.submitButton().click();
|
2023-04-14 09:43:11 +01:00
|
|
|
e2e.pages.Dashboard.Settings.Actions.close().click();
|
2023-09-11 11:20:54 +01:00
|
|
|
cy.get('#var-VariableUnderTest').clear().type('dog-cat').blur();
|
2022-02-03 09:58:56 +11:00
|
|
|
|
|
|
|
|
// Assert it was rendered
|
2023-09-11 11:20:54 +01:00
|
|
|
cy.get('.markdown-html').should('include.text', 'VariableUnderTest: dog-cat');
|
2022-02-03 09:58:56 +11:00
|
|
|
});
|
|
|
|
|
});
|