avec rapporteur comment configurer la configuration d'Internet Explorer?

Je suis en utilisant le rapporteur 1.3.1 et en cours d'exécution iedriverserver.exe 2.43.0.0 avec IE11 installé (windows).
C'est mon spec:

describe('quick test IE driver', function () {
    it('should go to ng homepage', function () {
        browser.driver.get('https://angularjs.org/');
        var title =element(by.css('h1')).getText();
        expect(title).toBe('HTML enhanced for web apps!');
    });
});

Et c'est mon protractor.conf.js:

exports.config = {
    //The address of a running selenium server.
    //seleniumAddress: 'http://localhost:4444/wd/hub',

    capabilities: {
        'browserName': 'internet explorer',
        'platform': 'ANY',
        'version': '11'
    },


    //Spec patterns are relative to the current working directly when
    //protractor is called.
    specs: ['main.spec.js'],

    //Options to be passed to Jasmine-node.
    jasmineNodeOpts: {
        showColors: true,
        defaultTimeoutInterval: 30000,
        isVerbose:true,
        includeStackTrace:true

    }
};

obtenir cette erreur si, des idées pour une solution:

UnknownError: The path to the driver executable must be set by the webdriver.ie.driver system property; 

source d'informationauteur Pindakaas