Questions tagged [e2e]
146 questions
0
votes
0 answers
Detox e2e React Native (android) at Windows OS
I can not select an image below image enter image description here

bala ji
- 1
- 1
0
votes
1 answer
Fails to launch browser in cluster using playwright
I am trying to deploy playwright into a cluster using as docker image,
Evrything works fine in local system but as soon as I put it in a pod, gets an error saying
1) [webkit] › dummy.spec.js:7:8 › API Designer › Should display data in All Services…

92sharmasaurabh
- 166
- 11
0
votes
0 answers
Is it possible to limit storageState/use to the test describe block in Playwright?
I am working on storageState/use for a one-time authentication strategy, the problem is that storageState is not reflected on the page on each test suite while limiting a storageState to a test describe block.
import { faker } from…

James Lin
- 162
- 3
- 18
0
votes
0 answers
How to mock or bypass Navigator.credentials in E2E test cypress?
How do I mock this message when using cypress?
its comes out of
Navigator.credentials
how to pass this authentication when trying to use cypress ? do I need to adjust the app to provide a bypass?

David
- 1,284
- 1
- 11
- 21
0
votes
1 answer
how to allow cypress cookie same site lax ? during SSO
Part of my cypress e2e is to do google authentication. however part of the redirects that occurs one of the domain can't save the cookie because it's define as samesite=lax.
How to allow cypress to do SSO process with cookie that need to be…

David
- 1,284
- 1
- 11
- 21
0
votes
2 answers
Cypress - using select() method with {scrollBehavior: 'center'}
Website i am testing uses fixed menu, so i need to use {scrollBehavior: 'center'} setting for click methods, to avoid getting error saying that element i want to interact with is covered by my menu.
Same problem occurs with

piotrpog
- 109
- 5
0
votes
2 answers
How to test otp login in cypress?
How does one E2E test OTP login?
I have set up an OTP login, I want to write a Cypress test for it where the user enters the OTP and gets it in email. How do I write a test for this, given that the OTP changes every time I send an email?
The current…

Gaurav Tewari
- 1
- 2
0
votes
1 answer
The function cy.clock(), cy.tick() aren't working
Use this functions to write e2e tests with cypress. Need to check that after few minutes I can send request and receive successful message.
it.only('successful message', () => {
$.name.type('name')
$.phone.type('444444444')
…

Figo Tester123
- 1
- 2
0
votes
1 answer
How to debug an intermittently failing Nightwatch test running in Jenkins (that doesn't fail locally)?
I'm trying to debug a failing Nightwatch test. Specifically, the test suite reports:
Wait for graph column to be selected - expected "visible" but got: "not found" (60058ms)
The test is attempting to click on the 'graph column' element in the DOM…

John Peden
- 657
- 1
- 10
- 24
0
votes
0 answers
Playwright: do not reuse existing web server in container environment
I am using playwright for e2e testing of my (angular) web application and loving it so far. I would like to configure playwright test to reuse an existing web server when not in CI environment nor when running from a Docker container.
The playwright…

Z. Hans
- 1
- 1
0
votes
2 answers
testcafe electron mainWindowUrl | what to do with tmp location
When using testcafe-browser-provider-electron, I get stuck with the mainWindowUrl. I have the original source file in the renderer folder, the version that is in the build folder and apparently a temporary created in some random /tmp/ folder.…

Steffen
- 1
- 1
0
votes
2 answers
What are the benefits of Pact testing other than contract verifying?
I want to know this pact testing in more details. I know by pact testing we can verify request and response and mostly it is consumer driven. Are there any more benefits other than this. If yes, can someone help me to understand this in details?

Darshan Sachaniya
- 389
- 2
- 17
0
votes
1 answer
Cypress button click return 422 Unprocessable Entity
I'm actually going through some cypress test and i'm facing a strange bug.
I'm filling a form with some data, then I submit it by pressing a button.
The form is composed of 2 vuetify select and 1 input.
Everything goes fine, but when I press submit…

Jérome BORGA
- 555
- 1
- 3
- 12
0
votes
1 answer
Stenciljs e2e test doesn't work for no apparent reason
Line within render() :
Test :
it('should display correctly', async () => {
const page = await newE2EPage();
await…

dejansavic
- 1
- 1
0
votes
0 answers
What are the best practices in automating end 2 end testcases?
I am trying to get a clear understanding of what e2e test cases look like.
And I am confused about how e2e testing is handled by companies. In my understanding, e2e testing is the testing of different systems and layers of the application. An…