Hello All,
Could you please help me as I need to change browser language to be french for some test cases using Cypress but it doesn't work when using below script because there is automatic redirect to the original URL which has the default browser language(english)
onBeforeLoad: (window, ...args) => {
Object.defineProperty(window.navigator, 'language', { value: 'en-GB' });
Object.defineProperty(window.navigator, 'languages', ['en-GB']);