We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4a314f commit 7df93abCopy full SHA for 7df93ab
test/cypress/support/commands.js
@@ -28,11 +28,11 @@ Cypress.Commands.add('splunkLogin', () => {
28
const loginPath = '/en-US/account/login';
29
30
cy.visit(loginPath);
31
-
32
- cy.get('input[name=username]').type(Cypress.env('splunk_user'));
+
+ cy.get('input[name=username]').type(Cypress.env('splunk_user'));
33
cy.get('input[name=password]').type(Cypress.env('splunk_password'));
34
cy.get("input[type=submit][value='Sign In']").click();
35
36
cy.url().should('include', '/home');
37
})
38
0 commit comments