Skip to content

Commit

Permalink
adjust comments
Browse files Browse the repository at this point in the history
  • Loading branch information
stazrouti committed Feb 13, 2024
1 parent c037cc3 commit 295a16c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions cypress/e2e/Vehicle _Models.cy.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
it("show car details", () => {
cy.visit("http://localhost:3000/");
cy.get('.pick-container__title') // replace with the actual selector for your modal
cy.get('.pick-container__title')
.should('be.visible') // Check if the modal is visible
.contains('Vehicle Models');

cy.get('.pick-description__table__col').should('be.visible').contains('Audi');
cy.get('.pick-description__table__col').should('be.visible').contains('AC');

/* cy.get('BMW 320 ModernLine'); */
cy.get('#btn4').click();
cy.get('.pick-description__table__col').should('be.visible').contains('320');
cy.get('.pick-description__table__col').should('be.visible').contains('BMW');
Expand Down

0 comments on commit 295a16c

Please sign in to comment.