Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
mki-c2c committed Nov 15, 2024
1 parent f7fde7c commit eae429f
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions cypress/e2e/draw/draw-feat-style.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,10 @@ describe('Test style edition of Polygon feature', () => {
cy.get('*[data-cy="featStyleColor"]')
.invoke('val', '#0000ff')
.trigger('input')
cy.get('*[data-cy="featStyleLineWidth"]').type('{selectAll}5.5')
cy.get('*[data-cy="featStyleLineWidth"]')
.find('input')
.eq(1)
.type('{selectAll}5.5')
cy.get('*[data-cy="featStyleTransparency"]').type('{selectAll}22')
cy.get('button[data-cy="featureEditValidate"]').click()
})
Expand Down Expand Up @@ -256,7 +259,10 @@ describe('Test style edition of Circle feature', () => {
cy.get('*[data-cy="featStyleColor"]')
.invoke('val', '#00004f')
.trigger('input')
cy.get('*[data-cy="featStyleLineWidth"]').type('{selectAll}3.5')
cy.get('*[data-cy="featStyleLineWidth"]')
.find('input')
.eq(1)
.type('{selectAll}3.5')
cy.get('*[data-cy="featStyleTransparency"]').type('{selectAll}62')
cy.get('button[data-cy="featureEditValidate"]').click()
})
Expand Down

0 comments on commit eae429f

Please sign in to comment.