CodeceptJS
CodeceptJS copied to clipboard
Supercharged End 2 End Testing Framework for NodeJS
I try to call: ```js I.waitForVisible({ name: 'field_name' }) ``` but locator contains: ```js Locator { type: 'name', output: null, strict: true, locator: { name: 'field_name' }, value: 'field_name' }...
#### What are you trying to achieve? Stepping using debugger while watching test execution in browser. #### What do you get instead? I get a bunch of promises that evaluate...
#### What are you trying to achieve? The goal is to use retry option from Mocha object in codeceptjs config file for both traditional and BDD steps I've set up...
#### What are you trying to achieve? I'm trying to configure a single feature to keep the browser open between tests. Configuring globally is not an option because our tests...
### What are you trying to achieve? Current HTML reporter does not support BDD format. #### What do you get instead? I want to use [multiple cucumber html reporter](https://www.npmjs.com/package/multiple-cucumber-html-reporter) with...
#### What are you trying to achieve? Try to run tests using CLI. **NOTE**: It worth to mention that with my current configuration, I am able to run tests when...
#### What are you trying to achieve? I want to do some specific action during event.suite.before, when worker is launched and for that, I need to get the workerIndex in...
#### What are you trying to achieve? I am using I.mockRequest with puppeteer. Post authenticating the user, Application requests some data from the backend by requesting HTTPS GET request to...
I am wondering if it is possible to work with elements inside of other elements. For example : ``` const blocks = await Playwright._locate(blocksSelector); for(let i = 0; i <...
#### I am trying to write a test which involved filling a payment gateway form. It is loaded via Iframe. when switch to external domains , it doesn't work. Is...