basic authentication does not work for local testing with cypress
up vote
0
down vote
favorite
I am developing a web app that requires windows credential. To test it locally during developing, I decide to try cypress.io. However, I cannot make it work. I always got an 401-unauthorized error. Here are some codes that I have used for my testing. Thanks for your help.
method 1:
describe('My First Test', function() {
it('Visits the Kitchen Sink', function() {
cy.visit('http://localhost:8080/')
})
})
method 2:
describe('My First Test', function() {
it('test website loading', function() {
cy.visit('http://localhost:8080/',{
auth: {
username:'myusername',
password:'myassword'
}
})
})
})
method 3: overwrite command
Cypress.Commands.overwrite('visit', (orig, url, options) => {
options = options || {}
options.auth = {
username: 'username',
password: 'password',
}
return orig(url, options)
})
automated-tests ui-automation windows-authentication basic-authentication cypress
add a comment |
up vote
0
down vote
favorite
I am developing a web app that requires windows credential. To test it locally during developing, I decide to try cypress.io. However, I cannot make it work. I always got an 401-unauthorized error. Here are some codes that I have used for my testing. Thanks for your help.
method 1:
describe('My First Test', function() {
it('Visits the Kitchen Sink', function() {
cy.visit('http://localhost:8080/')
})
})
method 2:
describe('My First Test', function() {
it('test website loading', function() {
cy.visit('http://localhost:8080/',{
auth: {
username:'myusername',
password:'myassword'
}
})
})
})
method 3: overwrite command
Cypress.Commands.overwrite('visit', (orig, url, options) => {
options = options || {}
options.auth = {
username: 'username',
password: 'password',
}
return orig(url, options)
})
automated-tests ui-automation windows-authentication basic-authentication cypress
There's an open issue that appears to be on basic auth. While you wait for that you could try running cntlm with basic auth.
– lloyd
Nov 13 at 8:26
Thanks for your info, lloyd.
– John
Nov 14 at 17:57
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I am developing a web app that requires windows credential. To test it locally during developing, I decide to try cypress.io. However, I cannot make it work. I always got an 401-unauthorized error. Here are some codes that I have used for my testing. Thanks for your help.
method 1:
describe('My First Test', function() {
it('Visits the Kitchen Sink', function() {
cy.visit('http://localhost:8080/')
})
})
method 2:
describe('My First Test', function() {
it('test website loading', function() {
cy.visit('http://localhost:8080/',{
auth: {
username:'myusername',
password:'myassword'
}
})
})
})
method 3: overwrite command
Cypress.Commands.overwrite('visit', (orig, url, options) => {
options = options || {}
options.auth = {
username: 'username',
password: 'password',
}
return orig(url, options)
})
automated-tests ui-automation windows-authentication basic-authentication cypress
I am developing a web app that requires windows credential. To test it locally during developing, I decide to try cypress.io. However, I cannot make it work. I always got an 401-unauthorized error. Here are some codes that I have used for my testing. Thanks for your help.
method 1:
describe('My First Test', function() {
it('Visits the Kitchen Sink', function() {
cy.visit('http://localhost:8080/')
})
})
method 2:
describe('My First Test', function() {
it('test website loading', function() {
cy.visit('http://localhost:8080/',{
auth: {
username:'myusername',
password:'myassword'
}
})
})
})
method 3: overwrite command
Cypress.Commands.overwrite('visit', (orig, url, options) => {
options = options || {}
options.auth = {
username: 'username',
password: 'password',
}
return orig(url, options)
})
automated-tests ui-automation windows-authentication basic-authentication cypress
automated-tests ui-automation windows-authentication basic-authentication cypress
edited Nov 13 at 5:19
Robert
2,12862435
2,12862435
asked Nov 12 at 22:19
John
63
63
There's an open issue that appears to be on basic auth. While you wait for that you could try running cntlm with basic auth.
– lloyd
Nov 13 at 8:26
Thanks for your info, lloyd.
– John
Nov 14 at 17:57
add a comment |
There's an open issue that appears to be on basic auth. While you wait for that you could try running cntlm with basic auth.
– lloyd
Nov 13 at 8:26
Thanks for your info, lloyd.
– John
Nov 14 at 17:57
There's an open issue that appears to be on basic auth. While you wait for that you could try running cntlm with basic auth.
– lloyd
Nov 13 at 8:26
There's an open issue that appears to be on basic auth. While you wait for that you could try running cntlm with basic auth.
– lloyd
Nov 13 at 8:26
Thanks for your info, lloyd.
– John
Nov 14 at 17:57
Thanks for your info, lloyd.
– John
Nov 14 at 17:57
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53270912%2fbasic-authentication-does-not-work-for-local-testing-with-cypress%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
There's an open issue that appears to be on basic auth. While you wait for that you could try running cntlm with basic auth.
– lloyd
Nov 13 at 8:26
Thanks for your info, lloyd.
– John
Nov 14 at 17:57