happy-dinner-13480
08/28/2022, 4:18 PMtypescript
it('Set payment methods', () => {
cy.el('tablePaymentMethods')
.children()
.each(($el) => {
$el.trigger('click');
cy.el('toggleActive').click();
cy.el('btnEditPaymentMethod').click();
});
});
but I think this executes the code all at the same time, so all 5 modals are opened simultaneously. How can I do this in order?