Webdriver.io se bloquea con NoSessionIdError

Estoy tratando de hacer que webdriver.io y Jasmine funcionen.

Siguiendosu ejemplomi guión está entest/specs/first/test2.js (de acuerdo con la configuración) y contiene:

var webdriverio = require('webdriverio');


describe('my webdriverio tests', function() {

    var client = {};
    jasmine.DEFAULT_TIMEOUT_INTERVAL = 9999999;

    beforeEach(function() {
        client = webdriverio.remote({ desiredCapabilities: {browserName: 'firefox'} });
        client.init();
    });

    it('test it', function(done) {
        client
            .url("http://localhost:3000/")
            .waitForVisible("h2.btn.btn-primary")
            .click("h2.btn.btn-primary")
            .waitForVisible("h2.btn.btn-primary")
            .call(done);
    });

    afterEach(function(done) {
        client.end(done);
    });
});

Estoy usando wdio como el corredor de prueba, y lo configuré usando la configuración interactiva. Esa configuración se genera automáticamente y todo es bastante sencillo, por lo que no veo la necesidad de publicarlo.

En otra ventana de terminal, estoy ejecutando selenium-server-andalone-2.47.1.jar con Java 7. Tengo instalado Firefox en mi computadora (se inicia en blanco cuando se ejecuta la prueba), y mi computadora ejecuta OS 10.10. 5)

Esto es lo que sucede cuando inicio el corredor de prueba:

$ wdio wdio.conf.js 


=======================================================================================
Selenium 2.0/webdriver protocol bindings implementation with helper commands in nodejs.
For a complete list of commands, visit http://webdriver.io/docs.html. 
=======================================================================================

[18:17:22]:  SET SESSION ID 46731149-79aa-412e-b9b5-3d32e75dbc8d
[18:17:22]:  RESULT      {"platform":"MAC","javascriptEnabled":true,"acceptSslCerts":true,"browserName":"firefox","rotatable":false,"locationContextEnabled":true,"webdriver.remote.sessionid":"46731149-79aa-412e-b9b5-3d32e75dbc8d","version":"40.0.3","databaseEnabled":true,"cssSelectorsEnabled":true,"handlesAlerts":true,"webStorageEnabled":true,"nativeEvents":false,"applicationCacheEnabled":true,"takesScreenshot":true}
NoSessionIdError: A session id is required for this command but wasn't found in the response payload 
    at waitForVisible("h2.btn.btn-primary") - test2.js:21:14 

/usr/local/lib/node_modules/webdriverio/node_modules/q/q.js:141
                throw e;
                      ^
NoSessionIdError: A session id is required for this command but wasn't found in the response payload



0 passing (3.90s)


$

Esto me parece muy extraño e inexplicable, especialmente teniendo en cuenta que incluso imprime la ID de la sesión.

¿Algunas ideas?

Respuestas a la pregunta(2)

Su respuesta a la pregunta