From d1d6ae6063ac662bb3d66e3e4adc1ad369a05e10 Mon Sep 17 00:00:00 2001 From: Kruchinin Date: Wed, 11 Nov 2020 16:16:17 +0300 Subject: [PATCH] Cypress test. Check User Guide. --- .../issue_2391_user_guide.js | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 tests/cypress/integration/actions_tasks_objects/issue_2391_user_guide.js diff --git a/tests/cypress/integration/actions_tasks_objects/issue_2391_user_guide.js b/tests/cypress/integration/actions_tasks_objects/issue_2391_user_guide.js new file mode 100644 index 00000000..88c620ad --- /dev/null +++ b/tests/cypress/integration/actions_tasks_objects/issue_2391_user_guide.js @@ -0,0 +1,20 @@ +// Copyright (C) 2020 Intel Corporation +// +// SPDX-License-Identifier: MIT + +/// + +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'); + }); + }); +});