Skip to main content
How are we doing? Please help us improve Stack Overflow. Take our short survey

All Questions

Tagged with
0 votes
0 answers
32 views

Testcafe how to test dynamic url popup window that is dependat on previous tab still being opened

I am testing a payment checkout. The normal flow is that you press a button with a dynamic url (href="javascript;:"), a popup window opens up, you enter the payment details and accept, when ...
Nermin's user avatar
  • 859
0 votes
1 answer
31 views

Cypress - Office365 Redirect causes the test to hang on 'Tests are loading'

I am writing a test where user goes to the Settings page of our application, then clicks on 'Connect Calendar'. This opens a new tab and user is on a Cronofy connection page, then I click on 'Office ...
Michel12's user avatar
  • 101
0 votes
0 answers
15 views

End to end testing for a pipeline involving multiple nodes

Context: I have a pipeline for getting the metrics from all the hosts system which are spread across different sites. Each site has a gateway node (let's refer it as site gateway) and all the site ...
SRM KTR's user avatar
  • 29
0 votes
0 answers
19 views

When using cucumber in androidTest I have no access to classes in main folder

I use Cucumber for my android tests (in 'androidTest' folder). I start a test of a feature file. During the test (cucumber-step) I call a function which is located in the 'main' folder and not in the '...
manu's user avatar
  • 183
0 votes
1 answer
34 views

How to allow a browser permission in NightWatch.js tests?

I'm using NightWatch.js to build e2e tests. One of my tests requires to grant the Chrome browser's microphone permission. When I run this test, I get a permission notification from the Chrome browser ...
skaihugger's user avatar
0 votes
1 answer
36 views

I can't get full chrome browser console logs in the NightWatch.js test

I'm trying to get full browser console logs in the NightWatch.js test. This is my test script. module.exports = { 'Console Log Test': function (browser) { browser // Navigate ...
skaihugger's user avatar
2 votes
1 answer
997 views

How to fix flaky test on Playwright?

Hi I have this app that I'm testing. The app itself will fill the value and click the button to provide the data on table. However, in reality it takes more than 40 seconds to load the data itself so ...
Chukchak's user avatar
0 votes
0 answers
26 views

Multiple API testing e2e with different bodies and responses

We have what we call an aggregator in our company, basically we have more than 15 APIs, all which have different headers, bodies and also expect different responses. We aggregate and consume those ...
pengwin's user avatar
  • 87
0 votes
1 answer
79 views

Pact testing issue in Windows machine

While runing the pact testing in my Nextjs spa app, am facing the pact testing issue in windows machine error : [email protected]: Pact Binary Error: ..\node_modules@pact-foundation\pact\node_modules@...
Prem Kumar's user avatar
0 votes
0 answers
103 views

E2E test environment in microservices

My backend project includes some microservices and I have a frontend project. I have a development branch and a production branch on GitLab. each backend service has its repository environment and ...
milad_vayani's user avatar
0 votes
0 answers
285 views

Cls is undefined on my testing module nestjs

I have an interceptor that works in production but doesn't work when I run tests. The implementation of the test module is the following: const moduleFixture: TestingModule = await Test....
Nicola's user avatar
  • 1
0 votes
2 answers
100 views

cypress tests. How to test deeplink [closed]

I have one issue with cypress test. I have such test const deeplinkUrl = 'https://deeplink.page.link/2WmRA4zbfUcQz5AY9'; describe('upload scan view', () => { beforeEach(() => { cy.visit('/...
shivetay's user avatar
  • 344
0 votes
0 answers
399 views

Is there a way to throttle e2e tests (Cypress) by CPU and RAM? (i.e. throttle Chrome)

Writing e2e tests has a problem of potential test flakiness (i.e. tests that sometimes pass and sometimes fail, depending on connection speed, rendering speed, etc). A typical approach to detect flaky ...
YakovL's user avatar
  • 8,040
0 votes
0 answers
264 views

Page load timeout after clicking login button in Cypress

I'm new to Cypress and trying to write E2E test of logging in to application. My test looks like this: describe('my_test', () => { it('login', () => { cy.visit(Cypress.env('...
bieluk's user avatar
  • 9
0 votes
0 answers
54 views

Implementing Cypress's Application Actions to Nuxt3

In this 2019 Cypress's blog post they recommend to move away from Page objects in favor of Application Actions. React is used in the post's example: // app.jsx code var model = new app.TodoModel('...
codekoriko's user avatar

15 30 50 per page
1
2 3 4 5
71