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

How to select dropdown option by matching text?

I want to select dropdown option by matching option text. HTML code:
  • Rashmi Chauhan
    • 135
    • 2
    • 12
  • 0
    votes
    1 answer

    What is end-to-end service deployment in the area of cloud computing

    I faced this term end-to-end service deployment what does it means in the area of cloud computing?
    Xelian
    • 16,680
    • 25
    • 99
    • 152
    0
    votes
    1 answer

    protractor Page Object - method is not being called

    I am in the process of learning protractor using paject object. Here is my Page object file and my test spec. files: Page Object (file name PO_Login.js) var ptor; var LoginPage = function () { ptor = protractor.getInstance(); …
    gvhelp
    • 1
    • 1
    0
    votes
    1 answer

    Identify correct Locators forCapturing Objects

    I am new to building automation using Protractor. Can you please help me in identifying which locator I can use to capture a element which is a text box field in my protractor tests? Below is the HTML I captured from Firebug: input class="input…
    0
    votes
    1 answer

    Getting to a nested element via protractor

    The web app (Ember) renders the page as a bunch of div's. The contents of the table are dynamic. Is there a way to programatically walk through the table, reading the details of the element and clicking on the hyperlink? Firebug reports my rendered…
    user3062327
    • 1
    • 1
    • 3
    0
    votes
    2 answers

    Protractor: Finding the right element to test

    I think I'm misunderstanding how elements works.. HTML code:
    A link
    Jason
    • 1,787
    • 4
    • 29
    • 46
    0
    votes
    1 answer

    Can we give test case name as title of screenshot in protractor?

    from protractorConfig.js : jasmine.getEnv().addReporter(new HtmlReporter({ baseDirectory: './reports/'+outputFolder+'/screenshots', takeScreenShotsOnlyForFailedSpecs: true })); There is an option, docTitle, but not sure how to fetch test case…
    Meghna
    • 31
    • 2
    0
    votes
    1 answer

    Phpstorm with protactor unresolved functions

    I`m using phpstorm with protactor for angular and for some reason the IDE doesnt recognize some functions. but the functions is working fine when i`m running the test. for example: element(by.buttonText('toggle')).click(); …
    Bazinga
    • 10,716
    • 6
    • 38
    • 63
    0
    votes
    1 answer

    TestNG functional testing @Test order sequence

    I am currently trying to write some automation tests using TestNG, which will verify some users actions on a website, so the tests are end-to-end functional tests as opposed to unit tests. I have created an XML file which will hold the test data…
    johnnyc007
    • 1
    • 1
    • 3
    0
    votes
    1 answer

    how can I edit TCP protocol (tcp.cc)

    My research is about minimizing End to End retransmission delay by touching Transport Layer Process to Process communication. I did some changes to tcp.cc , changed window size. the changes i am doing are not affecting. ex: even if i removed tcp.cc…
    Shanka
    • 23
    • 4
    0
    votes
    1 answer

    No access to source code, still possible for automated end-to-end testing?

    I'm dealing with a legacy application and I have no access to its source code. It's a Windows application written in PowerBuilder. Is it possible to do automated end-to-end testing on an application that I have no access to its source code? I…
    Carven
    • 14,988
    • 29
    • 118
    • 161
    0
    votes
    2 answers

    How to test form validation in Angular

    I'm attempting to write tests around a form that uses Angular. After following this solution, I'm able to access the form's scope inside the e2e test. Now with this code: scope('Form', function(scope) { scope.email = "test@test.com"; …
    DefZep
    • 153
    • 2
    • 11
    0
    votes
    1 answer

    How can I modify an array model in an Angular end-to-end test?

    I've got an angular app which has a table defined in the controllers like so: $scope.rowHeaders = ["Revenues","Costs","Profit"]; $scope.data = [[100,230,300,400,500,600,700,800,900,1000,1100,1200], [30,40,50,60,70,80,90,100,110,120,130,140],…
    Somik Raha
    • 171
    • 1
    • 10
    0
    votes
    1 answer

    How can I see what karma sees when I use browser().navigateTo()

    I am just getting started with karma, and although it seems that everything is hooked up properly and my unit tests are being run as expected, I can't get my end to end tests to find any elements. When I go to the debug page, I can see a very brief…
    whtevn
    • 509
    • 1
    • 3
    • 9
    0
    votes
    2 answers

    End to end email encryption web application

    Hope this question is within the scope of stackoverflow, it contains some questions that are closer to a discussion but others that can be answered. For my final year project I would like to try and set an end-to-end secure email web application…
    1 2 3
    43
    44