Browse Source

test(ui): updated click events to be specific

version-14
Noah Jacob 3 years ago
parent
commit
70d0aaf52d
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      cypress/integration/control_phone.js

+ 3
- 3
cypress/integration/control_phone.js View File

@@ -16,14 +16,14 @@ context('Control Phone', () => {

it('should set flag and data', () => {
get_dialog_with_phone().as('dialog');
cy.get('.selected-phone').click();
cy.get('.selected-phone > svg').click();
cy.get('.phone-picker .phone-wrapper[id="afghanistan"]').click();
cy.get('.phone-picker .phone-wrapper[id="india"]').click();
cy.get('.selected-phone .country').should('have.text', '+91');
cy.get('.selected-phone > img').should('have.attr', 'src').and('include', '/in.svg');

let phone_number = '9312672712';
cy.get('.selected-phone').click().first();
cy.get('.selected-phone > img').click().first();
cy.get('.frappe-control[data-fieldname=phone] input')
.first()
.click();
@@ -42,7 +42,7 @@ context('Control Phone', () => {

it('case insensitive search for country and clear search', () => {
let search_text = 'india';
cy.get('.selected-phone').click().first();
cy.get('.selected-phone > img').click().first();
cy.get('.phone-picker').findByRole('searchbox').click().type(search_text);
cy.get('.phone-section .phone-wrapper:not(.hidden)').then(i => {
cy.get(`.phone-section .phone-wrapper[id*='${search_text.toLowerCase()}']`).then(countries => {


Loading…
Cancel
Save