Merge pull request #2414 from dvkruchinin/dkru/cypress-test-check-user-guide-to-pr
Cypress test. User Guide.main
commit
f508ee4c87
@ -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…
Reference in New Issue