Questions tagged [end-to-end]

Is a technique used to test whether the flow of an application right from start to finish is behaving as expected. For anything relating to applying a test, protocol, or other desired action to a set of servers from front-end to back-end.

While testing all of the individual components and connections in large system can help to give confidence in a system overall, ensuring that the expectations of system work together as a continuous entity will provide the greatest confidence in its viability.

Many other concepts also apply on an end-to-end level, such as ensuring that data is encrypted from the moment a user submits it until it reaches a database or other back-end or other similar considerations. Particularly as a multi-tiered infrastructure increases in complexity, so to does the burden of ensuring that the expectations of the system hold true across the various components of the system.

659 questions
0
votes
1 answer

Order of execution of AngularJS E2E tests

So, I noticed that the it() functions inside describe() blocks don't (always) run in the order I wrote them. Are they asynchronous then? And how to force them to run in a certain order ? I want to chain a bunch of UI mutations and basically have…
holographic-principle
  • 19,688
  • 10
  • 46
  • 62
-1
votes
1 answer

What is the best practice regarding waiting for loading spinners in cypress?

In my application, I have the following flow that I need to check in cypress: User goes to page The request needed to render the page is being sent. In the time between the request has been sent and the response has been received, the user should…
Amitkk
  • 7
  • 1
-1
votes
1 answer

Azure pipeline : When and how to do end to end testing?

I have a react project and all the backend stuff is hosted as docker images. I understand most of what azure pipelines are and i have set up a initial pipeline which does the following. Installs nodes Installs packages Runs unit tests Finalises and…
Craig
  • 35
  • 3
-1
votes
1 answer

Mini mock server for rspec without rails

I would like to test an API client in rspec. I'm currently mocking Typhoeus - but I wondered if there is a more end-to-end way of doing this. Essentially, what I would like is something like: it "makes a connection to the server" do MockServer.new…
user208769
  • 2,216
  • 1
  • 18
  • 27
-1
votes
1 answer

can i run React UI automated testing by clicking a button in my react app?

I want to automate some UI end-to-end tests by making the user click a button inside the react app, then the tests run and the user is able to see them in real-time. is there a library that does that?
Marwan-Ezzat
  • 79
  • 1
  • 7
-1
votes
1 answer

Cypress, page content and variables

Right or wrong: In Cypress, its impossible to read a value on page X, then keep this value and compare it to a value on page Y. I can read a value from the page and log it: cy.get('[data-e2e-selector=whatever]').then(elm => cy.log('Value from page X…
user9347168
-1
votes
2 answers

How to perform auto Scroll to element in Protractor test if Protractor fails to locate the element int the view?

I have a suite of tests and would like to auto scroll to elements on the page if protractor fails to locate the element in the current view. The tests have been written prior to a few changes made to the UI to make the headers fixed. This caused few…
kokeen
  • 326
  • 1
  • 2
  • 8
-1
votes
1 answer

Generating test-result report in Endly for Jenkins

How do I generate an XML test result report in Endly for parsing and viewing in Jenkins?
-1
votes
1 answer

nightwatchjs selector is not selecting an attribute with space

I have a few pages on which I am running nightwatchjs to execute an end to end test.
MyReal TV
I have a few tabs that I try to verify using code similar to…
Nuru Salihu
  • 4,756
  • 17
  • 65
  • 116
-1
votes
1 answer

Testing relative positions of elements

On the page under test I have the following Support link: Which is represented with the following HTML:
alecxe
  • 462,703
  • 120
  • 1,088
  • 1,195
-1
votes
1 answer

Low Impact End-to-End Database Connection & Query Test

The database is Oracle. The goal is to perform a status check in code that is: Robust End-to-end (healthy connection does NOT mean healthy objects, i.e. views with offline tables) Creates minimal overhead for calling application To suffice these…
Matt Borja
  • 1,509
  • 1
  • 17
  • 38
-1
votes
1 answer

Get text of input in Protractor

How do I get text of input and use it in my test? The code bellow returs an Protractor Object and not the text. var typed = element(by.css(css + ' input')).getAttribute('value'); if (typed === 'something') { // doSomething() }
puppeteer701
  • 1,225
  • 3
  • 17
  • 33
-2
votes
1 answer

C# JsonSerializationException

I have a little problem with EndToEnd test in C#. It's my code from the Microsoft Site with examples of End-to-End tests. var email = "mail1@testmail.com"; var response = await…
MB_YD
  • 41
  • 1
  • 2
  • 8
-3
votes
1 answer

End-to-End communication between two networks

I studied your article (CoAP) in https://www.rfc-editor.org/rfc/rfc7228. we are developing Home automation Solution with IoT enabled devices. I have following doubts to provide the seamlessly solution for Home Automation. 1. I have some…
1 2 3
43
44