CodeceptJS icon indicating copy to clipboard operation
CodeceptJS copied to clipboard

Supercharged End 2 End Testing Framework for NodeJS

Results 310 CodeceptJS issues
Sort by recently updated
recently updated
newest added

#### What are you trying to achieve? I'm trying to grab/set the geolocation in order to test different scenarios for different countries. ```js Before(async () => { I.amOnPage("/"); let geo...

#### What are you trying to achieve? ```js I.waitForText("Joe7520373868311179 Autotest010825480018201938", 20, locate(".right.menu").last().find(".dropdown")); ``` should pass #### What do you get instead? It fails: ```bash Text "Joe7520373868311179 Autotest010825480018201938" was not found...

bug
playwright

#### What are you trying to achieve? - Having the ability to use the same format for getting Page Object attributes is helpful - For example, if only _most_ of...

#### What are you trying to achieve? I'm trying to get stepByStepReport. #### What do you get instead? After the first failure, there are no screenshots of the following scenarios...

stale

#### What are you trying to achieve? I want to fill in the fields on the login page of a SPA that takes a bit to load in and render...

Hello, I trying to retrieve "href" attribute of or inside the element. but it fails and returns a blank object i.e. {} please see below snap of HTML ![image](https://user-images.githubusercontent.com/16791810/174596778-f6987e53-dda3-4b49-8643-4e0f46bcd1f2.png) Below...

#### What are you trying to achieve? I want to write my tests using accessibility roles instead of hardcoding implementation details about how the html of my application is implemented....

#### What are you trying to achieve? I wanted to control what browser is run using `--profile` and fallback to chrome if `--profile` was not provided. #### What do you...

#### What are you trying to achieve? Download a file without providing the fileName using steps: - I.handleDownloads() - I.click(element) #### What do you get instead? > File downloaded having...

Faced that ``` await I.swipe('correct-locator', -100, 1, 50); ``` do nothing while debugging I add log inside performSwipe ``` console.log("!performSwipe!", from, to); ``` and find that destination is incorrect ```...