3,066 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
-3
votes
1
answer
38
views
Running job in CI from UI on demand [closed]
I am writing heavy e2e tests suite.
I want to run the whole e2e setup in ci.
But i want to be able to trigger this job from github UI when i want.
How this can be achieved?
0
votes
0
answers
29
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
157
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
247
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
103
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
172
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
25
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
92
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
77
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
48
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
44
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
180
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
21
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
27
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 ...
0
votes
2
answers
290
views
In httpYac how to assign the current system time to a variable and use this variable in http request payload?
For my e2e tests I'd like to get the current date and time and use this dateTime string in the payload body, like this:
### Precondition: Create a contract with current time stamp in ISO format
# ...