few-musician-79351
03/09/2022, 7:19 PMstocky-dream-36427
03/09/2022, 7:24 PMstocky-dream-36427
03/09/2022, 7:26 PMfew-musician-79351
03/09/2022, 7:29 PMstocky-dream-36427
03/09/2022, 7:29 PMstocky-dream-36427
03/09/2022, 7:29 PMfew-musician-79351
03/09/2022, 7:49 PMfew-musician-79351
03/09/2022, 7:50 PMfew-musician-79351
03/09/2022, 7:50 PMimportant-river-75795
03/09/2022, 8:11 PMimportant-river-75795
03/09/2022, 8:12 PMimportant-river-75795
03/09/2022, 8:13 PMimportant-river-75795
03/09/2022, 8:13 PMstocky-dream-36427
03/09/2022, 8:13 PMpowerful-orange-86819
03/10/2022, 9:27 AMmelodic-apple-72412
03/10/2022, 1:01 PMCypress.Commands.overwrite('request', (originalFn, ...args) => {
cy.getCookies()
.then((Cookie) => {
const defaults = {
headers: {
'X-XSRF-TOKEN': Cookie[1].value,
'Content-Type': 'application/json'
}
};
let options = {};
if (Cypress._.isObject(args[0])) {
options = Object.assign({}, args[0]);
...
return originalFn(Object.assign({}, defaults, options));
});
});
Problem here is as soon as I start running my spec file it fails with TypeError Cookie[1] is undefined
Later when I change 'X-XSRF-TOKEN': Cookie[1],
it runs fine and gives validate 401, after that if I add 'X-XSRF-TOKEN': Cookie[1].value,
it works fine.
I don't understand why at first it throws TypeError.melodic-apple-72412
03/10/2022, 9:39 PM'X-XSRF-TOKEN': Cookie[1].value,
it throws TypeError Cookie[1] is undefined
I specifically queried for cy.getCookie('XSRF-TOKEN')
and assigned 'X-XSRF-TOKEN': Cookie.value,
now it throws Cookie is null
just wondering why when Cookie has cookie details.
I am calling this fn, in beforeEach of a spec file (for example) :
beforeEach(() => {
cy.login(Cypress.env('username'), Cypress.env('password'));
cy.visit('/');
cy.get('.c8y-ui-title > .text-truncate', { timeout: 10000 }).should('be.visible');
cy.request('/inventory/managedObjects', 'POST', deviceObj);
});
few-musician-79351
03/10/2022, 11:28 PMimportant-river-75795
03/10/2022, 11:30 PMimportant-river-75795
03/10/2022, 11:31 PMimportant-river-75795
03/10/2022, 11:31 PMfew-musician-79351
03/10/2022, 11:39 PMfew-musician-79351
03/10/2022, 11:52 PMimportant-river-75795
03/10/2022, 11:53 PMimportant-river-75795
03/10/2022, 11:55 PMimportant-river-75795
03/10/2022, 11:56 PMimportant-river-75795
03/10/2022, 11:56 PMfew-musician-79351
03/10/2022, 11:59 PMfew-musician-79351
03/10/2022, 11:59 PMimportant-river-75795
03/11/2022, 12:03 AM