hi, please anyone write test case for "Print" screen
Hi !
Test donditions :
1. To verify the appearance of print screen when Ctrl+P
hotkey is pressed.
2. Test to verify the layout of Print screen
3. Test ot verify that the default printer is selected.
4. You can write test cases to test the functioning of
(a) different buttons present on the Print screen (Like
Cancel,Properties,Help etc.)
(b) Combo boxes (Like "No. of copies")
(c) Radio buttons (Like "Current page" , "Selection")
But while making test cases make sure that you are nor
repeating.
Cheerz,
Saurabh
| Is This Answer Correct ? | 7 Yes | 2 No |
how we write test cases for navigation or links with example?
# A large IT company is in the process of revising salary structure for its employees. The salary will be on the basis of assessed performance of the previous year for all employee who have completed six months or more. # The rules for salary revision are provided below :- Performance level 1 : Increase existing salary by 30% Performance level 2 : Increase existing salary by 20% Performance level 3 : Increase existing salary by 10% Performance level 4 : Increase existing salary by 5% Performance level 5 : No Increase # For those who have not completed six months, provide a flat increase of 7.5% in their salary. In addition to above provide a special loyalty allowance of Tk. 800 to all employees who have complete THREE years with the organization. # Compute the minimum number of paths that you would require to cover the application and how many test cases would you require?
What is gray box testing?
User registration form so many details will be there to enter like Username,Phone No,Email id ect.how do we write test cases for that? in one textbox i have to write all the test cases and go to next textbox
Hi recently in an interview I was asked to write API test cases. Since I am not familiar with it can someone put more light towards API testing and give some example test cases for the same. Thanks!
if we ve data 100 how we can check and create equvalnces an bva .if we ve data 1-5,6-10so on wat will we bva how we will chk
What is the difference between Test Input and Test Data??
my friend has done one project using .NET framework with C# coding and backend SQL Server 2005. In it, he has prepared and execute the test cases and stored that in the centralized database. in software testing, Do the testers do like this or use excel sheet to store the test cases? tell me .... i have so confuse.. pls anybody answer me as quickly as possible
Who will decide what the test cases you have written are correct?
4 Answers Mind Q Systems, Satyam,
HOW TO WRITE TEST CASES FOR MEGHA MENU DROP DOWN BOX.
write the testcases for migrating data from one database to another database?
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);