3,066 questions
-2 votes
0 answers
30 views
Cypress Application Crashes when Clicking E2E [closed]
Suddenly My Cypress App crashes when I click on E2E This is the error I am getting Circular symlink detected: "C:\Users\PoojaPatel\AppData\Local\Application Data" points to "C:\Users\...
0 votes
1 answer
73 views
Is there a beforeAll in Playwright that will run only once across all projects?
Running user profile actions in multiple Playwright projects causes errors. A test case that e.g. resets a password will only pass in one project and fail in the others as the reset works only once. I ...
0 votes
0 answers
45 views
Headlamp e2e tests on Minikube always redirect to /c/<cluster>/login (“Something went wrong with cluster …”)
I’m running Headlamp’s e2e tests locally. The app never shows the cluster chooser and always lands on http://127.0.0.1:50883/c/test/login with a red banner: “Something went wrong with cluster test.” ...
1 vote
1 answer
170 views
Cypress cannot access Angular server, even though it is started on localhost
I have an Angular application, that I start locally via ng serve --proxy-config proxy.config.json and a Cypress set-up that has a baseUrl of http://localhost:4200. After starting the server I can ...
0 votes
1 answer
266 views
Detox upgrade to React Native 0.79 from 0.77 - an error occurred while waiting for the app to become ready
I've been trying to resolve the following problem for quite some time now: I started implementing the tests with Detox when our app was on RN 0.77, and everything was working fine. However, after ...
0 votes
0 answers
113 views
Cypress fails to launch the browser in CI
In my project, I'm trying to test the OAuth login with NextAuth.js and Cypress.js and it worked all well on my development environment (windows 11, Ubuntu - WSL 2.5.9.0) where cypress uses Electron as ...
0 votes
1 answer
184 views
How to wait for Angular lazy-loaded chunks before interacting with elements in Playwright? [closed]
I'm testing an Angular web application with Playwright where buttons are loaded via lazy-loaded chunks (chunk-XXXXXXXX.js). When Playwright tries to click a button too quickly, the click doesn't work ...
1 vote
0 answers
31 views
How to re-run a single specflow scenario outline in github workflow using NUnit
I am trying to implement re-run logic for my scenario outline @DOC-136 @DOC-137 @DOC-138 @DOC-139 @Browser:Chrome Scenario Outline: AT01.01 - Test Workflow - Create a case When I open Create New ...
1 vote
1 answer
103 views
Skip cucumber playwright test in the Hooks file using tag name
I have scenarios in my cucumber feature file with a tag labeled as @skipTest, and I want to skip all the tests in this file using the before hooks. The reason I want to do this is that in the local ...
2 votes
1 answer
83 views
Error converting example VS Code extension test from typescript to JavaScript
I am trying to write end-to-end tests for a VS Code extension. I would like to use JavaScript, not TypeScript. So, I took the example from here: https://github.com/microsoft/vscode-extension-samples/...
0 votes
0 answers
56 views
Accessing disabled fields in Datadog synthetic testing
Problem: I'm currently creating my first synthetic tests in datadog. I'm encountering some difficulty testing whether a form field is disabled or not. I can't select disabled elements for assertions. ...
1 vote
0 answers
48 views
Apache Camel End2End test
I try to write an end to end test for my Apache Camel process that goes through a pipeline consisting of many routes. But I have got stuck on the very first one. My route definition looks like ...
1 vote
1 answer
190 views
Run Playwright tests with Console tab open in dev tools (Electron env)
I'm writing e2e tests for my electron app and using the experimental module of playwright electron.To open devtools with const page = await app.firstWindow(); const browserWindow = await app....
0 votes
0 answers
25 views
Nestjs E2E Test - Module not found
I am trying to run e2e test case in Nestjs project which has multiple modules, but getting the below error. It seems to import a service like a module Cannot find module 'src/helper/helper.service' ...
1 vote
0 answers
30 views
Mocha Test Explorer Not Working After Moving Test Project Inside e2e Folder
I have a test automation project using TypeScript, WebdriverIO, and Mocha. Previously, the test project was standalone, and I was able to use the Mocha Test Explorer extension in VS Code to run test ...