mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
[SIEM] Improves navigation Cypress tests time execution (#54273)
* extracts before * fixes the type check failure
This commit is contained in:
parent
07d56f73f7
commit
9ee9f3d038
1 changed files with 4 additions and 10 deletions
|
@ -4,7 +4,7 @@
|
||||||
* you may not use this file except in compliance with the Elastic License.
|
* you may not use this file except in compliance with the Elastic License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { OVERVIEW_PAGE, TIMELINES_PAGE } from '../../lib/urls';
|
import { TIMELINES_PAGE } from '../../lib/urls';
|
||||||
import {
|
import {
|
||||||
NAVIGATION_HOSTS,
|
NAVIGATION_HOSTS,
|
||||||
NAVIGATION_NETWORK,
|
NAVIGATION_NETWORK,
|
||||||
|
@ -14,33 +14,27 @@ import {
|
||||||
import { loginAndWaitForPage } from '../../lib/util/helpers';
|
import { loginAndWaitForPage } from '../../lib/util/helpers';
|
||||||
|
|
||||||
describe('top-level navigation common to all pages in the SIEM app', () => {
|
describe('top-level navigation common to all pages in the SIEM app', () => {
|
||||||
it('navigates to the Overview page', () => {
|
before(() => {
|
||||||
loginAndWaitForPage(TIMELINES_PAGE);
|
loginAndWaitForPage(TIMELINES_PAGE);
|
||||||
|
});
|
||||||
|
it('navigates to the Overview page', () => {
|
||||||
cy.get(NAVIGATION_OVERVIEW).click({ force: true });
|
cy.get(NAVIGATION_OVERVIEW).click({ force: true });
|
||||||
|
|
||||||
cy.url().should('include', '/siem#/overview');
|
cy.url().should('include', '/siem#/overview');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('navigates to the Hosts page', () => {
|
it('navigates to the Hosts page', () => {
|
||||||
loginAndWaitForPage(TIMELINES_PAGE);
|
|
||||||
|
|
||||||
cy.get(NAVIGATION_HOSTS).click({ force: true });
|
cy.get(NAVIGATION_HOSTS).click({ force: true });
|
||||||
|
|
||||||
cy.url().should('include', '/siem#/hosts');
|
cy.url().should('include', '/siem#/hosts');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('navigates to the Network page', () => {
|
it('navigates to the Network page', () => {
|
||||||
loginAndWaitForPage(TIMELINES_PAGE);
|
|
||||||
|
|
||||||
cy.get(NAVIGATION_NETWORK).click({ force: true });
|
cy.get(NAVIGATION_NETWORK).click({ force: true });
|
||||||
|
|
||||||
cy.url().should('include', '/siem#/network');
|
cy.url().should('include', '/siem#/network');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('navigates to the Timelines page', () => {
|
it('navigates to the Timelines page', () => {
|
||||||
loginAndWaitForPage(OVERVIEW_PAGE);
|
|
||||||
|
|
||||||
cy.get(NAVIGATION_TIMELINES).click({ force: true });
|
cy.get(NAVIGATION_TIMELINES).click({ force: true });
|
||||||
|
|
||||||
cy.url().should('include', '/siem#/timelines');
|
cy.url().should('include', '/siem#/timelines');
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue