You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
cypress-seed/cypress/integration/apside.spec.ts

26 lines
788 B

import {goToCompoundDashboard} from '../../support/common/action.spec';
describe('Test Page d\'accueil APSIDE .com', () => {
beforeEach(() => {
});
it('Visité apside.com ', function() {
cy.visit('/');
cy.get('.titreBigOrange').should('be.visible');
cy.get('.titreBigOrange').should('have.text', 'INNOVATION');
});
it('Visité et trouver APSIDE TOURS ', function() {
cy.visit('/');
cy.get('.search_menu').click();
cy.get('#search').type('TOURS');
cy.get('#search_btn').click();
cy.get('.first > .lanceurBlog > .texte > .intro > .btn-plus2').click();
cy.get('.titreBigBleu').should('be.visible');
cy.get('.titreBigBleu').should('have.text', 'Apside Tours');
});1
});