I have next code:
projects: [
{
name: 'chromium',
/* Project-specific settings. */
use: {
...devices['Desktop Chrome'],
viewport: {width:1920, height: 1080},
baseURL: process.env.STAGING === '1' ? 'https://neo.cultbooking.com/CPC/?agentcode=58078&hotelcode=60114' : 'https://dev.cultbooking.com/CPC/?agentcode=58078&hotelcode=60114',
},
},
],
as u can see, im using first or second link depending on STAGING value, the problem is that navigation is working for only https://neo.cultbooking.com or https://dev.cultbooking.com, but I need to use full path anyway, could someone help me to understand how to solve it ?