Cypress_TS/CyLukTs/lukan/cypress/e2e/cokkies.cy.ts
Lukáš Kaňka ea3e372146 údržba
2023-08-15 18:35:50 +02:00

13 lines
368 B
TypeScript

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()
});
})