147 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
16
views
Nightwatch test doesn't fail if element was not found
I am using Nightwatch + Cucumber + Selenium for some automated tests and I noticed that when a element can't be found then functions like click and sendKeys won't fail the test.
The error message is ...
0
votes
0
answers
98
views
How to test signature_pad component with Cypress
I'm implementing some Cypress tests for a system that uses signature_pad package in a sign field, but for some reason I couldn't generate a signature using Cypress mouse events.
My current code is the ...
0
votes
0
answers
260
views
Cypress Angular Test with cy.clock and RxJS Timer Doesn't Display View Changes
I'm writing E2E tests for my Angular app using Cypress. I have a component with a toggle, and if the toggle is enabled, this subscription is created:
this._sub = timer(60000, 60000)
.pipe(
...
0
votes
2
answers
171
views
Is there an equivalent to an 'containsExact' function in Cypress?
I have a Cypress E2E test suite in which I want to search for row in a table by the text displayed in the table cells.
I've had some success with the following:
cy.get('.p-datatable-tbody').should('be....
1
vote
1
answer
1k
views
Cypress off auto run in local client
When i go my tests in local browser (cypress open), i'm switching between windows - cypress(chrome), webstoms and my tests started automatically. How can i switch off auto run, and use only CMD + R ...
0
votes
1
answer
202
views
Im built a docker file for selenide java testing but all the e2e test are not running and only the api test are wroking
when I'm trying to run only e2e in the docker its says 0 tests.
I believe the problem is in the chrome and chrome driver installation in the docker file.
I tried many things but noting had worked and ...
0
votes
0
answers
20
views
How to locate an element with part of the id in Playwright? [duplicate]
I have an HTML like this
<div class="tox-sidebar-wrap">
<div class="tox-edit-area">
<iframe id="_tinymce-0qcgf3evlihj_ifr" frameborder="0&...
3
votes
1
answer
2k
views
How to locate a div with specific text and test id with Playwright?
I have a HTML like this:
<div>
<div>Internal Description</div>
<app-rich-text-editor>
<div data-testid="rich-text-editor">
</div>
</app-...
0
votes
0
answers
444
views
Copy S3 bucket to E2E Object Storage using MinIO Client
I want to Copy S3 bucket Object to E2E Object Storage using MinIO Client.
I can't figure out how to configure and copy, some things i tried using official doc of minio client.
Referral Links
https://...
2
votes
0
answers
366
views
Unable to set the geoLocation on Playwright
I need to test a cookie banner not showing up at certain regions, and I tried to set the geolocation to the USA where it shouldn't appear.
However, I haven't been able to do so. I've tried creating ...
0
votes
0
answers
166
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 ...
0
votes
1
answer
173
views
Detox React native reloading with no sense
So I'm getting desperate about this. I'm just trying to setup detox for my react native project and this is my first test using it. When the test starts, it reload like 2-3 times before actually ...
2
votes
1
answer
167
views
In Cypress, can you call the .click() method on an Element without it identifying an error?
I have an Angular app that I am creating Cypress E2Es for.
A page of the app has a table in which the third column contains a link that goes by the class name 'link ng-star-inserted' that I want the ...
1
vote
1
answer
121
views
How can I use adb shell commands in detox tests?
`it('TC-30: WIFI', async () => {
child.exec('adb shell cmd connectivity airplane-mode enable');
await element(by.label('Violation No1')).tap();
const errorMessage = 'no connection';
...
1
vote
2
answers
1k
views
Angular Cypress component test error: Cannot access '<Component>' before initialization
I am trying to run spec for my Angular component using Cypress. But I've got the following error in Cypress logs:
The following error originated from your test code, not from Cypress.
> Cannot ...