Cypress_TS/CyLukTs/lukan/cypress/e2e/cokkies.cy.ts

13 lines
368 B
TypeScript
Raw Permalink Normal View History

2023-08-15 16:35:50 +00:00
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()
});
})