What do you mean by a dependent functionality in a build?
The main focus of acceptance testing is:a) finding faults in the systemb) ensuring that the system is acceptable to all usersc) testing the system with other systemsd) testing from a business perspective.
I would say all above the reasons are correct. Testing should takes place at user end(Different environment)testing should meet end user specification.
I totally disagree with "kurtz182" answer.
The answer is both B & D.
What is the need of testing functional part of an application when structural part is tested properly?
I didn't understand structural testing means, in functional testing to check the application functionality not only individual , but also different part(Combination) of the application functionality t...
Functionality testing is testing for requirements. So now tell us wouldn't you like to check if the application adheres to the requirements that client desires as they are paying for the entire project?
Functional and functionality testing
Can anybody describe the difference between the functional testing and functionality testing?
Functional testing and Functionality testing: Functionality testing is part of the functional testing to check the application behavior by giving some inputs, expected out come it should be as per the...
Functional testing means block box testing it defines to test the each and every functionality of the whole application
Functionality testing defines to test the selected functionality of the application
What are the modules and sub modules manually tested in retail banking project?
There are 3 modules in retail banks 1. Admin, 2.Banker 3.Customer. i wanted to know, commonly what are the change requirement occurs in these modules(in a already working bank)? Also, provide few test scenarios the respective change requirement?
What are the limitations of black box testing?
Hi Black box testing which is otherwise termed as Specification based technique.Hence the major job of this technique is abiding the specification made for the project.This technique is handicapped w...
What is the difference between agile methodology and waterfall model?
For testing;
Agile require more effort for regression testing and automation testing than Waterfall.
In Agile methodology we are repeating the cycle of develop and test.We started from FRD to do coding and then testing,small builds are coded and tested again if any new modifications are needed it ca...
There is a new build and you have not much time lEFT behind to test(manual test), what will you do? (apart from prioritizing functionalities..... Risk analysis, what other answers are valid approaches to this interview question?
Best ways to test during time crunch:
- Adhoc testing. FSD, BRD etc are available so life is easier.
- Scenario-based testing. Pick positive, common and negative scenarios and test UI, component functionality, etc while QA proceeds through a scenario.
Apart from prioritizing functionalities......
The black box testing technique for reduce number of test cases can help.
What type of testing you will do once the frd is in place and approved?
Sanity testing will be do after FRD is approved and testcases are designed
Once the FRD is ready...we will Review the Document...and start designing the test cases...
Bakward testing & regression testing
Are both 'bakward testing' & 'regression testing' one and the same? If not, what is the difference between them?
I'm guessing you mean backward compatibility testing?? Given multiple version releases, an application created on a new version should still work with the older versions making it backwards compatibl...
Backward testing means testing the application backward means if you find any defect while testing the application find out the route cause of that defect by checking the testcases properly written o...
Manual test case for login page
Here is the template below. I would like to see the detailed test cased for login page column 1 is the "test case id number" column 2 is the "test case name" column 3 is the "test objective" column 4 is the "test conditions/setup" column 5 is the "input data requirements/steps" column 6 is the "expected...
Hi krishna, I m explaining it with the functionality of the OK button for login. "test case ID number" : TC1 "test case name" : Login module for OK button "test objective"...
What is a break-in function? How do you perform this in software testing?
Enables or disables the users' ability to exit a script from the tray icon menu.
Seems to me a Break-In Function refers to setting a breakpoint in a particular function using an debugger in order for the program to halt when the breakpoint is reached.
Test cases for mandatory fields
A page/form has 4 mandatory fields to be entered before you submit.How many no. Of test cases are required to verify this?And what are they?
Assume the four fields are present in the application those areuser namepassword phone numbermail idIn this Password and Mail id both are required fields o complete the registration1. Press submit b...
Along with all these tests we also have to test for the next tab. After entering first field and when we press tab to go to next field exactly where it taking the control.
Functional test case for water heater
Write the functional test case clearly for the water heater
Question to ask from Interviewer: Is it a geyser or a simple water heater rod? TCs for water heater rod: Acceptance Test case: Verify if the water heater heats given amount of water in specified ...
Functional test cases tests the basic functionality of the product.For water heater we can have following test cases:1. Verify if it heats the water.2. Check if it satisfied the claims mentioned in sp...
How the functional test cases could be mapped?
Functional test cases can be mapped with functional requirement document with the help of Requirement traceability matrix (RTM).RTM is a document which shouws the mapping of test cases against require...
How will you check for a selected list box value using selenium?
How many possibilities are there to test a text field? What are they?
If the field accepts positive numeric values
1. Test for max length
2. Test for negative value
3. Test Boundatory values
4. Test Equivalance
If alpha numeric
1. Test for max length
2. Test for special char
One other possibility not mentioned above.On international web sites the character set may very well change, e.g. English in one region, Japanese in another.Test that only valid sequences are allowed,...
What is the min amd max length of password
Min and Max length of Password is as per the functional spec/SRS. But ideally it is 6 to 18.Testing at boundary values is called Boundary Valuec Analysis. Testing has to be done for Values at 6, 6-1, ...
The minimum and maximum length of a password is defined in the application's business requirements or technical specifications. It is generally 6 to 12 characters in length. To test it...
Hi,can any one answer me the following question? I have three text fields, one should accept a string as input, second text box should accept a float as input and the third text box is for output. The output should be an integer. What are the possible test cases we can write for the above functionality?My...
Here are possible test cases:1. Verify 'string' text box accepts all alphanumeric characters as defined in specifications2. Verify upper limit value in 'float' text box3. Verify upper ...
1. Before that check that both the Text box fields are enable or not.2. Enter the Blank, numerics, Alphanumerics, Special characters,Single quote, maximmum value or the combination of all in the Text ...
Testing a flash file and HTML file
Have you found any difference while testing a flash file and HTML file? If yes what are they?
I can think of three major differences between testing a flash file and an html file:1) Testing an html file is about verifying the static elements on a web page while testing a flash file is more abo...
Nothing difference.
For run a flash file in browser needs the plug-ins. if the plugin is not available(not installed), the screen areas shows empty
For Html file its not needed.
functional testing: testing each and ever functionality in the application whether it is working properly or not giving valid information to the implication,and invalid information to the application,functionality is a black box testing.
Functional testing is a type of black box testing that bases its test cases on the specifications of the software component under test. Functions are tested by feeding them input and examining the output, and internal program structure is rarely considered (Not like in white-box testing)