údržba
This commit is contained in:
13
CyLukTs/lukan/cypress/e2e/cokkies.cy.ts
Normal file
13
CyLukTs/lukan/cypress/e2e/cokkies.cy.ts
Normal 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()
|
||||
});
|
||||
})
|
16
CyLukTs/lukan/cypress/e2e/full.atomic.test.cy.ts
Normal file
16
CyLukTs/lukan/cypress/e2e/full.atomic.test.cy.ts
Normal 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()
|
||||
});
|
||||
})
|
3
CyLukTs/lukan/cypress/e2e/menu.cy.ts
Normal file
3
CyLukTs/lukan/cypress/e2e/menu.cy.ts
Normal file
@ -0,0 +1,3 @@
|
||||
it('Test menu' , () => {
|
||||
cy.visit('')
|
||||
})
|
9
CyLukTs/lukan/cypress/e2e/overeni.stranky.cy.ts
Normal file
9
CyLukTs/lukan/cypress/e2e/overeni.stranky.cy.ts
Normal 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()
|
||||
});
|
||||
})
|
||||
|
Reference in New Issue
Block a user