22 lines
No EOL
798 B
JavaScript
22 lines
No EOL
798 B
JavaScript
context('Number Card', () => {
|
|
before(() => {
|
|
cy.login();
|
|
cy.visit('/app/website');
|
|
});
|
|
|
|
it('Check filter populate for child table doctype', () => {
|
|
cy.visit('/app/number-card/new-number-card-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('label', 'Test Number Card', '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();
|
|
});
|
|
}); |