I tried to connect to google account to use youtube.
I used in cypress.config.js and I set all securities from browser settings to let me connect, but not work:
const { defineConfig } = require('cypress')
module.exports = defineConfig({
  fixturesFolder: false,
  viewportHeight: 640,
  viewportWidth: 480,
  e2e: {
    supportFile: false,
    setupNodeEvents (on, config) {
      // `on` is used to hook into various events Cypress emits
      // `config` is the resolved Cypress config
      on('before:browser:launch', (browser, launchOptions) => {
        if (browser.family === 'chromium') {
          launchOptions.args.push('--enable-logging', '--v=1')
          return launchOptions
        }
      })
    },
  },
})