seitime-frappe/cypress/integration/dashboard_chart.js
Shariq Ansari d27d880402
fix: Dashboard Chart to support Child Table Doctype. (#13995)
* fix: Dashboard Chart with child table doctype

* test:  UI test 

* fix: Made Parent Document Type visible if Document Type is set
2021-11-11 15:09:58 +05:30

22 lines
No EOL
809 B
JavaScript

context('Dashboard Chart', () => {
before(() => {
cy.login();
cy.visit('/app/website');
});
it('Check filter populate for child table doctype', () => {
cy.visit('/app/dashboard-chart/new-dashboard-chart-1');
cy.get('[data-fieldname="parent_document_type"]').should('have.css', 'display', 'none');
cy.get_field('document_type', 'Link');
cy.fill_field('document_type', 'Workspace Link', 'Link').focus().blur();
cy.get_field('document_type', 'Link').should('have.value', 'Workspace Link');
cy.fill_field('chart_name', 'Test Chart', 'Data');
cy.get('[data-fieldname="filters_json"]').click().wait(200);
cy.get('.modal-body .filter-action-buttons .add-filter').click();
cy.get('.modal-body .fieldname-select-area').click();
cy.get('.modal-actions .btn-modal-close').click();
});
});