selenium-cucumber-js icon indicating copy to clipboard operation
selenium-cucumber-js copied to clipboard

Browser automation framework written in pure JavaScript using official selenium-webdriver and cucumber-js

Results 44 selenium-cucumber-js issues
Sort by recently updated
recently updated
newest added
trafficstars

I have a two features and if i do run node ./node_modules/selenium-cucumber-js/index.js **I get** node_modules/selenium-cucumber-js/runtime/world.js:177 The previously configured ChromeDriver service is still running. You must shut it down before you...

Hi! I try use `driver` in `this.AfterScenario` but I catch this error: > NoSuchSessionError: This driver instance does not have a valid session ID (did you call WebDriver.quit()?) and may...

Hello. How can I change global language for features? In `cucumber-js` I can use cli options `--language` but in `selenium-cucumber-js` I use `# language: ru` at first line of feature...

Looking to use the "attach" to include a screenshot of a particular step. This is outlined in cucumber-js as seen by this code: ``` Given(/^a basic step$/, function() { this.attach('Some...

Adding `selenium-cucumber-js` to a project is a bit of a hassle as you have to create the dependant folders. It would be far cleaner to execute two commands and have...

help wanted

I want to convert selenium feature file into a script file, so I can directly execute that script. How can I do that?

Hello @john-doherty! I try to use "stalenessOf( element )" condition driver.wait(until.stalenessOf('mat-spinner')); but I got "TypeError: element.getTagName is not a function" How can I wait until element will be invisible?

Hello friends, I'm trying to load a page and perform a login action under a Hook before run the actual feature so I can login multiple users from the Hook...

I want to assert a heading's text on a webpage. I want to assert "Hi" from the heading. I tried like this: this.Then(/^I should see Hi$/m, function(){ driver.wait(until.elementsLocated(by.css('#body-section > div...

Hi , I really like the repo but I want to follow the standard cucumber structure and run from IDE ( from Webstorm). i followed the steps you mentioned in...