crooked-microphone-65524
04/24/2023, 3:20 PMmany-airline-45402
04/24/2023, 3:28 PMincalculable-rainbow-43330
04/24/2023, 4:42 PMdazzling-thailand-9844
04/24/2023, 7:00 PMhundreds-author-68171
04/24/2023, 7:55 PMenough-truck-68085
04/24/2023, 8:03 PMenough-truck-68085
04/24/2023, 8:04 PMmany-airline-45402
04/25/2023, 6:49 AMmysterious-psychiatrist-29678
04/25/2023, 9:27 AMcy.intercept('POST', '**/token', (req) => {
Cypress.log({ name: 'Origin of token request before update:', message: req.headers['Origin'] })
Cypress.log({ name: 'Will set it to:', message: origin })
req.headers['Origin'] = origin
}).as('token')
cy.visit(link)
cy.wait('@reponseFromBackend', { timeout: 70000 })
https://cdn.discordapp.com/attachments/763114122065739818/1100352277161709618/image.pngâ–¾
helpful-country-95146
04/26/2023, 3:05 PMbest-flower-17510
04/26/2023, 5:47 PMlemon-holiday-89994
04/26/2023, 5:55 PMmany-airline-45402
04/26/2023, 6:28 PMlemon-holiday-89994
04/26/2023, 7:05 PMcuddly-truck-99344
04/27/2023, 7:49 AMbuilt-in Teams integration in Cloud
. Do we have an expected release for that feature, or is there a fine-grained public roadmap I can access? @many-airline-45402 @best-flower-17510 maybe you may have something in this regard. (Sorry for tagging)best-flower-17510
04/27/2023, 3:28 PMrich-pharmacist-74804
04/27/2023, 6:26 PMconst bearerToken = 'abcwert'
cy.setCookie('Authorization', bearerToken)
cy.visit('https://example.com/',{
headers: {
'Authorization': bearerToken,
},
})
help needed. Thank youmagnificent-lamp-44201
04/28/2023, 9:47 AMincalculable-rainbow-43330
04/28/2023, 5:19 PMaloof-psychiatrist-45078
05/03/2023, 1:49 AMcolossal-table-38461
05/03/2023, 6:16 AMmany-airline-45402
05/03/2023, 6:27 AMwhite-appointment-55436
05/03/2023, 8:05 AMopenssl
to be installed and that triggers an interactive dpkg
prompt. I would like to overwrite and provide this apt-get
option of --option=Dpkg::Options::=--force-confdef
to default interactive answer to accept openssl
install so that node-version 20.0.0 can be installed. Any recommendation how I can update the base dockerfile for cypress/factory
at https://hub.docker.com/r/cypress/factory ?gray-kilobyte-89541
05/03/2023, 10:50 AMfierce-vr-27506
05/03/2023, 9:44 PMlet data = [
{
car: 'BMW',
usecases: [{usecaseName: 'oil change'}],
},
{
car: 'Toyota',
usecases: [{usecaseName: 'tyre change'}],
},
];
before(() => {
// Assume below data are being fetched via api and updating existing data set declared above
data = [
{
car: 'Honda',
usecases: [{usecaseName: 'detailing'}],
},
];
});
describe(`All test`, {tags: '@testConcept'}, () => {
data.forEach((el) => {
describe(`EX 1:`, () => {
it(`Test Track : ${JSON.stringify(el.car)}`, () => {
cy.log(el.car); // expected Data Center Compute
});
el.usecases.forEach((el2) => {
it(`Test case : ${JSON.stringify(el2.usecaseName)}`, () => {
cy.log(el2.usecaseName); // expected Simplified Operations
});
});
});
});
describe(`EX 2:`, () => {
data.forEach((el) => {
it(`Test ===== :`, () => {
cy.log(el); // expected Data Center Compute
});
});
});
describe(`EX 3:`, () => {
it(`Test ===== :`, () => {
cy.log(data); // expected Data Center Compute
});
});
});
In above example data is always printed from what i have declared at the top and not inside before loop.
do any of you have ever need to do it and how did you solve it?handsome-lion-1748
05/04/2023, 8:30 AMincalculable-rainbow-43330
05/08/2023, 2:39 PMadorable-smartphone-87280
05/08/2023, 3:42 PMadorable-smartphone-87280
05/09/2023, 5:00 PMheadless
really mean? Test runs in CI are supposed to be headless, right? So, how do they generate screenshots and video? Does "headless" simply mean "we didn't send this output to a monitor"? I assumed that it meant "we didn't even require the GPU to render the DOM" but that clearly isn't true if we have media artifacts. (Jerry Seinfeld voice) What's the deal with headless mode?