guoqqqi commented on pull request #1585:
URL: https://github.com/apache/apisix-dashboard/pull/1585#issuecomment-798622656


   Hi, The frontend e2e test failed because the position of the Delete button 
was changed. 
   We can fix the error by replacing 
`cy.contains(this.data.routeName).siblings().contains('Delete').click();` with 
   ```
   cy.contains('Manage').should('exist').click();
   cy.contains('Delete').should('be.visible').click();
   ``` 
   in all tests.
   **This means that all route-related tests will need to be changed.**
   very thanks!


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to