Merge pull request #2414 from dvkruchinin/dkru/cypress-test-check-user-guide-to-pr

Cypress test. User Guide.
main
Boris Sekachev 5 years ago committed by GitHub
commit f508ee4c87
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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