Cypress test. Check User Guide.

main
Kruchinin 5 years ago
parent dabb153039
commit d1d6ae6063

@ -0,0 +1,20 @@
// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
/// <reference types="cypress" />
context('Check User Guide.', () => {
const issueId = '2391';
describe(`Testing issue "${issueId}"`, () => {
it('User Guide is available.', () => {
cy.visit('documentation/user_guide.html')
});
it('Checking for the several elements.', () => {
cy.get('#users-guide');
cy.get('a');
cy.get('img');
});
});
});
Loading…
Cancel
Save