Spaces:
No application file
No application file
File size: 579 Bytes
0627f9a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
// test goal: checks the capability to navigate on about web page
// to use previous and next link
import { AboutPage } from './pages/about';
describe('', function() {
let about = null;
beforeEach(() => about = new AboutPage('runtests'));
describe('check about page', () =>
it('should navigate to the about page, check the default elements inside', async () => {
await about.goAbout();
await about.checkBuildbotTitle();
await about.checkConfigTitle();
await about.checkAPIDescriptionTitle();
})
);
});
|