protractor-cucumber
protractor-cucumber copied to clipboard
protractor-cucumber
My main `steps.js` file contains something like the below to start a chromedriver - it would be neater if `protractor-cucumber.world` could accept a `before` callback. ``` console.info('Spawn %s on port...
Would be useful to have `element` on `this` just as we have `by`
Just trying to better understand what is going on, could someone enlighten me regarding the call to `getWindowHandle()` [(Lines 19 - 23)](https://github.com/AndrewKeig/protractor-cucumber/blob/master/lib/index.js#L19) in the code? It seems to be leftover...
can not use the protractor's element key to select elements I change the world file, change the this.by = webdriver.By; when i use sut.by.buttonText(), It can not find the element...
These changes make possible a direct connection from chromedriver to Chrome (it might work with Firefox too, but I haven't tested that), as well as passing through more options to...
Using master of protractor-cucumber with ``` "chai": "^3.4.1", "chai-as-promised": "^5.1.0", "cucumber": "^0.9.2", "protractor": "^3.0.0", "protractor-cucumber-framework": "^0.3.2", ``` then running cucumber tests ``` ./node_modules/protractor/bin/protractor cucumber.conf.js ``` raises TypeError: callback is not...
Hi, I have defined multiple scenarios in one feature file and when I am executing them then first scenario runs fine but execption comes in on as soon as execution...
Might be worth updating the README to include installing the 'should' library otherwise some examples will fail. Some examples try to call `should.equal` on the `result` object of `support.isElementPresent(...)`. Example:...
I get this after I installed grunt-cucumber-js and ran "grunt cucumberjs". I tried to run it from the command-line like so and got more info: $ node_modules/grunt-cucumber/node_modules/cucumber/bin/cucumber.js ``` Feature: Homepage...
Using chrome only on protractor rids of starting a selenium process and works faster. Is it possible to add chrome only options?