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.
33 lines
815 B
JavaScript
33 lines
815 B
JavaScript
// Copyright (C) 2020 Intel Corporation
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
/// <reference types="cypress" />
|
|
|
|
describe('Check server availability', () => {
|
|
it('Server web interface is available', () => {
|
|
cy.visit('/');
|
|
});
|
|
|
|
it('"/auth/login" contains in the URL', () => {
|
|
cy.url({ timeout: 8000 }).should('include', '/auth/login');
|
|
});
|
|
|
|
it('"Sign in" button is exists', () => {
|
|
cy.get('[type="submit"]');
|
|
});
|
|
|
|
it('Check placeholder "Username"', () => {
|
|
cy.get('input').invoke('attr', 'placeholder').should('contain', 'Username');
|
|
});
|
|
|
|
it('Check placeholder "Password"', () => {
|
|
cy.get('[type="password"]');
|
|
});
|
|
|
|
it('Click to "Sign in" button', () => {
|
|
cy.get('[type="submit"]').click();
|
|
cy.wait(1000);
|
|
});
|
|
});
|