You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
511 B
JavaScript
21 lines
511 B
JavaScript
// 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');
|
|
});
|
|
});
|
|
});
|