How to write test scenarios for a Web application, with an
example?
Answers were Sorted based on User's Feedback
Answer / kalyani
for example
take login page
scenario 1: validating login button
2: '' password button
3: '' ok button
4: '' cancel button
it depends on requirements
| Is This Answer Correct ? | 8 Yes | 5 No |
Circle any inconsistencies in the following text: User Story 3005 - Dave wishes to talk to Fred using a radio. Business Requirements: 1. Dave needs the ability to put a line into select. 2. Dave receives a visual color and text indication that the line is selected (picked up). a. Default indication will be that the pad turns red and the text ‘Select’ appears as the 3rd line of text. 3. David hears audio from a selected line in his defined audio path. 4. Dave uses Push-To-Talk to talk to Fred. 5. Dave receives a visual color and text indication that the line has been de-selected (hung up). • The default inactive state is a white pad with no text on the 2nd line. 6. Multiple Freds can select the same radio. 8. If a radio is selected while another radio is already selected, then the first phone is automatically deselected.
IF A > B THEN C = A – B ELSE C = A + B ENDIF Read D IF C = D Then Print "Error" ENDIF A. 1 test for statement coverage, 3 for branch coverage B. 2 tests for statement coverage, 2 for branch coverage C. 2 tests for statement coverage. 3 for branch coverage D. 3 tests for statement coverage, 3 for branch coverage E. 3 tests for statement coverage, 2 for branch coverage
How to write test case for this scenario. The system shall auto populate the Email Address on the contact screen with the Email Address of the user profile
Explain the sanity testing?
How should I maintain the test cases and Test Log for different versions/builds of the application.
what are those parameters or matrixes for tesing a software user interface?
Explain the state testing?
what is parametrization ? How do you parametrize in qtp ?
How you test IP address
In a log in page what will be test procedure, test scenario, test description & test steps?
Roads concatenation Problem Consider we have some GIS (Geo Information System) operating over some road network. Each road represented as array of two-dimensional geographical points. Road network is a set of roads. System has function called Concatenate(). This function takes raw road network and should return optimized road network. Optimization lies in concatenating roads with matching start or end points, i.e. if road AB end point matches road BC start point, then optimized network should contain concatenated road AC. Optimized network shouldn’t contain two roads which can be concatenated. Your task is to suggest set of test cases for Concatenate() function in order to make sure it works correctly. public interface IPoint { double Lat { get; } double Lon { get; } } public Road : List<IPoint> { } public RoadNetwork : List<Road> { } public RoadNetwork Concatenate(RoadNetwork roads);
What is p0,p1,p2,p3 in software tesing