Questions tagged [codeceptjs]

CodeceptJS is a modern end to end testing framework with a special BDD-style syntax. The test is written as a linear scenario of user's action on a site. The use of generator functions allows asynchronous tests to be written in synchronous way.

251 questions
-1
votes
1 answer

CodeceptJS, BDD, PageObjects, steps listed in output

I'm currently evaluating CodeceptJS as an alternative to our heavy Java/Selenium/Cucumber stack. I have organized the project like so: BDD is used (everything starts with a feature file). Step definitions exist for each of the steps in the feature…
Vanessa Deagan
  • 417
  • 6
  • 15
-1
votes
1 answer

Volume name issue with docker-compose on windows

I'm trying to start a multi containers applications for codeceptjs using docker-compose. On linux the docker compose yml file works fine but on windows it fails complaining about "volume name is too short". Why docker compose complains on Windows…
user3611522
  • 81
  • 1
  • 11
-1
votes
1 answer

How to access vuetify-component with codeceptjs

I'd like to write some tests witch codecept.js but I'm not able to access the vuetify components.
carl
  • 17
  • 4
-1
votes
1 answer

Why is this async function turning parameters passed to it, into Promise objects?

async scrape(locator) { console.log("Locator passed in is" + locator); } Why is the console log showing [object Object] as the output of the parameter? Shouldn't it return a value of whatever was passed in? Here is the code calling the…
user6499789
-1
votes
1 answer

Rest helper codeceptjs and docker

I am running REST Helper of Codeceptjs and Docker for API Testing but when I run it, it only show all passed and execution time is always 0ms Output: PS D:\work\testtt> docker-compose run --rm codeceptjs CodeceptJS directory has been…
-1
votes
1 answer

How debug and use grabAttributeFrom in codeceptjs?

In my case all identifiers in a page is generated dynamically. So I can't use xpath. I've found method in the documentation: grabAttributeFrom. How I can see what's inside, when I using cmd in --debug mode? Can I use grabAttributeFrom for…
-1
votes
1 answer

How to use Codecept with Puppeteer package on PhpStorm

I'm new to both PhpStorm and codecept. I need to test a website using Codecept with Puppeteer package on PhpStorm. Could you please guide??
SSharma
  • 47
  • 1
  • 9
-1
votes
1 answer

Core differences between various automation and testing libraries

I am trying to understand the technical difference between the multiple tools available for testing JavaScript web applications. You have CodeceptJS which is just a wrapper, which needs a framework like NightmareJS/Selenium. Now is nightmare a…
Kumar Manish
  • 1,166
  • 1
  • 16
  • 28
-1
votes
2 answers

How to find input values that are generated after website is loaded?

I built an app with meteor-blaze and now I am trying to test it with CodeceptJS. The problem is, all my input fields have no values in the DOM (F12 mode), but I see the values in the browser. In meteor I use template-helpers to read them from my…
Meteor Newbie
  • 646
  • 2
  • 10
  • 23
-2
votes
1 answer

How can I click a link of the first [td] based on staus of last [td] in the same [tr] using codeceptjs/javasrcipt

The expected: Select random one an assignment has status "Not start". Here is my table:
Potter
  • 1
-2
votes
1 answer

ShellJs execute CLI command

I'm using codeceptjs with shelljs. In one of tests I'm invoking go application like this : const shell = require('shelljs') shell.exec('./myGoApplication') When application is started and correctly working I have a CLI that is listening for input…
Kyryl Zotov
  • 1,788
  • 5
  • 24
  • 44
1 2 3
16
17
Assignment 1