protractor-cucumber icon indicating copy to clipboard operation
protractor-cucumber copied to clipboard

protractor-cucumber

Results 22 protractor-cucumber issues
Sort by recently updated
recently updated
newest added

Some breaking changes have been introduced since protractor `4.0.0` that this PR fixes. It also allows the user to return `this.quit()` since cucumberjs accepts promises instead of forcing the use...

When you run "cucumber-js". If you see this error: TypeError: protractor.wrapDriver is not a function at new World (C:\Repos\protractor-cucumber\lib\index.js:27:31) at nextTickCallbackWith0Args (node.js:420:9) This means you are using protractor version 4.0.0....

fs.js:887 return binding.lstat(pathModule._makeLong(path)); ^ Error: ENOENT: no such file or directory, lstat '/Users/sheeralal/projects/protractor-cucumber/features' at Error (native) at Object.fs.lstatSync (fs.js:887:18) at Object.realpathSync (fs.js:1518:21) at Object.expandPathWithExtensions (/Users/sheeralal/projects/protractor-cucumber/node_modules/cucumber/lib/cucumber/cli/path_expander.js:14:23) at /Users/sheeralal/projects/protractor-cucumber/node_modules/cucumber/lib/cucumber/cli/path_expander.js:8:27 at Array.map (native)...

Hi, I want to generate report in json format so that I can then convert it into xml formar for re-use. Please let me know what should i change in...

Hi, I'm VERY confused about the proper way to use protractor with cucumber. I thought that the whole point of using cucumber with protractor was that you can use the...

Hi, The World object's 'by' property won't work as it's currently set: lib/index.js Line 29: `this.by = protractor.By;` It worked when we set it to: `this.by = webdriver.By;`

How can I run it in parallel mode, I was trying to run it with parallel-cucumber package, but it failed, first it need cucumber 0.7 , but it can be...

baseUrl is not properly set Put ` if (options.baseUrl) this.browser.baseUrl = options.baseUrl;` instead of ` if (options.baseUrl) this.baseUrl = options.baseUrl;` L30