Kaynağa Gözat

test: Minor fix

version-14
Shariq Ansari 3 yıl önce
ebeveyn
işleme
d7b06299af
2 değiştirilmiş dosya ile 5 ekleme ve 2 silme
  1. +1
    -1
      cypress/integration/form.js
  2. +4
    -1
      cypress/integration/recorder.js

+ 1
- 1
cypress/integration/form.js Dosyayı Görüntüle

@@ -25,7 +25,7 @@ context('Form', () => {
it('navigates between documents with child table list filters applied', () => {
cy.visit('/app/contact');
cy.add_filter();
cy.get('.filter-field input[data-fieldname="name"]').type('123', { force: true });
cy.get('.filter-field .input-with-feedback').type('123', { force: true });
cy.get('.filter-action-buttons').findByRole('button', {name: 'Apply Filters'}).click({ force: true });

cy.visit('/app/contact/Test Form Contact 3');


+ 4
- 1
cypress/integration/recorder.js Dosyayı Görüntüle

@@ -55,7 +55,10 @@ context('Recorder', () => {

cy.visit('/app/recorder');

cy.get('.frappe-list .list-row-container span').contains('/api/method/frappe').should('be.visible').click();
cy.get('.frappe-list .list-row-container span')
.contains('/api/method/frappe')
.should('be.visible')
.click({force: true});

cy.url().should('include', '/recorder/request');
cy.get('form').should('contain', '/api/method/frappe');


Yükleniyor…
İptal
Kaydet