Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Configure Polymer web-component-tester to use a Selenium Grid server

I need to configure the Polymer web-component-tester to use a Selenium Grid running at http://jenkins.myapp.corp.web:4444/wd/hub so I can run my tests on Jenkins. What is the Grunt config for this? I guessing something like this:

'wct-test': {
  local: {
    options: {
      activeBrowsers: [{
        browserName: 'chrome',
        url: 'http://jenkins.myapp.corp.web:4444/wd/hub'
      }]
    }
  }
}
like image 674
Carl von Buelow Avatar asked Feb 06 '15 20:02

Carl von Buelow


2 Answers

It turns out there was a bug with web-component-tester that has been fixed in the latest release. We ended up getting it working with our grid using this config:

var os = require('os');
...

'wct-test': {
  local: {
    options: {
      remote: false,
      activeBrowsers: [{
        browserName: "chrome",
        url: "http://jenkins.myapp.corp.web:4444/wd/hub"
      }],
      webserver: {
        hostname: os.hostname()
      }
    }
  }
}
like image 189
Carl von Buelow Avatar answered Nov 07 '22 20:11

Carl von Buelow


It seems that you can modify your wct.conf.js and set your grid configuration:

    module.exports = {
            // See https://github.com/Polymer/web-component-tester/blob/master/runner/config.js#L47-54
            activeBrowsers: [
              {
                // Accepts anything wd does: https://github.com/admc/wd#browser-initialization
                url: 'http://user:[email protected]/wd/hub',
                // ... any other capabilities you like:
                browserName: 'theBrowser',
              }
            ],
            plugins: {
              local: false,
              sauce: false,
            }
          };
like image 32
alcala Avatar answered Nov 07 '22 18:11

alcala