Cypress_TS/CyLukTs/lukan/cypress/e2e/full.atomic.test.cy.ts

16 lines
489 B
TypeScript
Raw Normal View History

2023-08-15 16:35:50 +00:00
import { homePageLukan} from "../page_objects/homepage";
const home = new homePageLukan;
describe('Všechny testy po hromadě', () => {
beforeEach(() => {
home.hlavnistrana().rozliseni();
});
it('Potvrzení cookies', () => {
home.aceeptCookies();
});
it('Zamítnutí cookies', () => {
home.declineCookies()
});
it('ověření názvu webu' , () => {
home.hlavnistrana().rozliseni().aceeptCookies().overeniNazvuStranky()
});
})