Skip to content

Commit

Permalink
test: 馃拲 Update selector on cypress to get input correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
massao committed Oct 4, 2021
1 parent 81aa08e commit e301758
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cypress/integration/LocationEditor.spec.ts
Expand Up @@ -10,10 +10,10 @@ const LOCATION_2 = {
describe('Location Editor', () => {
const selectors = {
getAddressRadio: () => {
return cy.findByTestId('location-editor-address-radio');
return cy.findByTestId('location-editor-address-radio').find('input');
},
getCoordinatesRadio: () => {
return cy.findByTestId('location-editor-coordinates-radio');
return cy.findByTestId('location-editor-coordinates-radio').find('input');
},
getSearchInput: () => {
return cy.findByTestId('location-editor-search');
Expand Down

0 comments on commit e301758

Please sign in to comment.