jenkinsci/build-monitor-plugin

Unknown command error: unknown command: Cannot call non W3C standard command while in W3C mode

CGabriel33 opened this issue · 0 comments

Can someone help me to solve this issue. I've disabled w3c but still getting an error like this when I started running it to Jenkins. In my local machine it works fine.

capabilities: {
    browserName: 'chrome',
    acceptInsecureCerts: true,
    idleTimeout: 180,

    'moz:firefoxOptions': {
        'args': [
            '--safe-mode',
            '--private',
            // '--headless',
        ]
    },
    
    chromeOptions: {
        args: [
            'incognito',
            'disable-extensions',
            '--allow-running-insecure-content',
            '--no-sandbox',
            // '--start-maximized',
            // '--headless',
        ],
        'w3c': false,
    },
    // count: 5,
},