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
0 answers

Selenium test fails when running phantomjs

I using nightwatch framework for running End-to-End test. I am able to run all the test cases successfully in chrome and IE but few tests fails for phantomjs. Test cases below error out 'Search' : function(browser) { browser …
0
votes
1 answer

Proptractor error when call element methods

All my actions, it is just: element(by.binding('item.order.id')).click(); On this code area:
Oleksii Sytar
  • 353
  • 5
  • 17
0
votes
0 answers

Protractor with jest assertion framework

Using two different frameworks for unit and end-to-end testing seems not the best solution. Is there any chance that jest will be added as supported protractor assertion framework?
Marcel Mandatory
  • 1,447
  • 13
  • 25
0
votes
2 answers

Can end-to-end tests in Visual Studio Team Services Build be run?

I have a set of mocha tests that launch Spectron to do end-to-end testing on an Electron application. When I try to run the tests through npm run, they just time out and fail. It seems that the application isn't launching. There is a Run Functional…
Jon
  • 2,644
  • 1
  • 22
  • 31
0
votes
1 answer

How do I integrate clover current db file and history files , and get the coverage result together?

In my case, I have to get code coverage in server.For that I use clover. I have executed test cases for some scenarios through client side manually That means logging to the web application and manually test some scenarios ). Then I want to get…
dul codes
  • 23
  • 4
0
votes
2 answers

Calling "click()" on checkboxes fails in protractor

in one of my test case, i have to perform a click on checkbox i tried : - var cb = element(by.css('#port'+text)); cb.click() // failed and browser.actions().mouseMove(cb).click().perform(); is anybody face this kind of issue , is there any…
Shailendra Sharma
  • 6,976
  • 2
  • 28
  • 48
0
votes
0 answers

end-to-end delay doesn't change with the number of nodes (cars) in veins

I changed the number of nodes (cars) in erlangen.rou.xml : I used getCreationTime() and simTime to calculate the message delay (end-to-end delay) in TraCIDemo11p and…
0
votes
1 answer

asynchronous for loop with if conitions protractor

var createTime=10:00; var createdPatient="vijay"; /* In for loop after comparing the time with createdTime 'i' value should be the compare index but 'i' value becoming last index each time*/ …
Sai Vijay
  • 21
  • 1
  • 3
0
votes
1 answer

Protractor - Cannot get nested element by css

I've been on this matter for several hours since now and I'm still stuck on it. In this piece of html code:
Andrea Grimandi
  • 631
  • 2
  • 8
  • 32
0
votes
1 answer

Make Protractor sequentially route to different URLs

As expected, browser.get("http://www.google.com"); routes us to Google. My question however, concerns routing to different webpages sequentially. I have the use case to route to a set of (hard coded) pre-defined URLs sequentially, and check each web…
Tim Visser
  • 916
  • 9
  • 28
0
votes
1 answer

Automated integration testing spanning multiple services

I am working on a project in which we keep one wiki platform in sync with the content of other. The way we do this is a document edit on 'Wiki A' kicks of a data flow pipeline that transforms data from format of of 'Wiki A' to format of 'Wiki B' and…
0
votes
1 answer

How to test asp.net webforms(non angular) using Protractor?

I am very new to protractor, and testing .NET Applications. I am trying to build an automation testing script from scratch. Below is the HTML:
Hi ","
Marj
  • 302
  • 4
  • 22
0
votes
1 answer

Chimp.js configuration

I am using Chimp.js(with Cucumber.js) and all the tests need to pass a login page. I know webdriverIO uses testrunner config file for something like .before() and .after(). How would be the best way to achieve that with Chimp? Thanks!
Sotir
  • 13
  • 2
0
votes
0 answers

Automated end-to-end testing a Meteor app in multiple browsers with Karma or similar

I would like to end-to-end test my Meteor/React app in multiple browsers. Karma is great for automating tests in multiple browsers, but I don't see any config options to make it load the page to test from my own server, only the option to specify…
Andy
  • 7,885
  • 5
  • 55
  • 61
0
votes
1 answer

Error with client in mocha when I use grunt

I'm new to E2E test and Grunt. I'm working on end to end test using Nightwatch.js, PahantomJS, and Mocha. Without grunt, the test is passed, but with grunt I get an error with "client". Without grunt : Launch Selenium sever $ selenium-server -p…