This commit is contained in:
Lukáš Kaňka
2023-08-15 18:35:50 +02:00
commit ea3e372146
10019 changed files with 2548539 additions and 0 deletions

View File

@ -0,0 +1,13 @@
import { homePageLukan} from "../page_objects/homepage";
const home = new homePageLukan;
describe('Test funkčnosti cookies tlačítek', () => {
beforeEach(() => {
home.hlavnistrana().rozliseni();
});
it('Potvrzení cookies', () => {
home.aceeptCookies();
});
it('Zamítnutí cookies', () => {
home.declineCookies()
});
})

View File

@ -0,0 +1,16 @@
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()
});
})

View File

@ -0,0 +1,3 @@
it('Test menu' , () => {
cy.visit('')
})

View File

@ -0,0 +1,9 @@
import { homePageLukan} from "../page_objects/homepage";
const home = new homePageLukan;
describe('ověření nazvu stránky', () => {
it('ověření názvu webu' , () => {
home.hlavnistrana().rozliseni().aceeptCookies().overeniNazvuStranky()
});
})