Today I am going to answer some reader’s questions. Actually I am thinking to start a weekly column on “Software Testing Questions and Answers”. Usually I get dozens of mails daily asking me on some software testing queries. Instead of answering them privately I will put them collectively in posts so that many similar questions of other readers will also get addressed. You can submit your questions in comment sections of posts. Before submitting question I will strongly recommend you to search here on this site if your queries are answered previously.
So I will kick it with some questions in this post.
Shivika asks:
“I have been given the assignment to test a UI based application page. They want me to break the functionality in any way. The first page is Sign up page containing fields like username password, email, url address field and some check box selection options . I have tried all the ways in which I can test the page. Can you also please suggest that what can be possible ways in which we can test the page?”
I will cover some major negative test cases to break the sign up page:
1) See the limit of username field. I mean the data type of this field in DB and the field size. Try adding more characters to this field than the field size limit. See how application respond to this.
2) Repeat above case for number fields. Insert number beyond the field storage capacity. This is typically a boundary test.
3) For username field try adding numbers and special characters in various combinations. (Characters like !@#$%^&*()_+}{”:?><,./;’[]). If not allowed specific message should be displayed to the user.
4) Try above special character combination for all the input fields on your sign up page having some validations. Like Email address field, URL field validations etc.
5) Many applications crash for the input field containing ‘ (single quote) and ” (double quote) examples field like: “Vijay’s web”. Try it in all the input fields one by one.
6) Try adding only numbers to input fields having validation to enter only characters and vice versa.
7) If URL validation is there then see different rules for url validation and add urls not fitting to the rules to observe the system behavior.
Example urls like: vijay.com/?q=vijay’s!@#$%^&*()_+}{”:?><,./;’[]web_page
Also add urls containing http:// and https:// while inserting into url input box.
8 ) If your sign up page is of some steps like step 1 step 2 etc. then try changing parameter values directly into browser address bar. Many times urls are formatted with some parameters to maintain proper user steps. Try altering all those parameters directly without doing anything actually on the sign up page.
9) Do some monkey testing manually or automating (i.e. Insert whatever comes in mind or random typing over keyboard) you will come up with some observations.
10) See if any page is showing JavaScript error either at the browser left bottom corner or enable the browser settings to display popup message to any JavaScript error.
These are all the negative test cases. I assume that you already tested the same sign up page with all valid cases to check application is working fine as per requirements.
If above cases are not breaking the application page then don’t forget to praise the developer
If you have some killer test cases to break such applications that you learned from your experience, you can specify them in comments below.
Jayant asks:
“Normally freshers pass out have a state of their mind as “we are freshers”, recently pass outs from college and expect that the companies to recruit them should consider the knowledge base they have and further should impact them training. In true terms what is meant by fresher for an industry?”
Good question. When I was fresher I was thinking on the similar lines. But think from employer point of view. Employer will think like “Why should we hire candidates having little knowledge base and experience? and need training first before assigning any work? Well, fortunately not all employers think like this and that’s why frehsers are getting the jobs and training on the board. Thanks to the booming IT industry. Demand will continue for freshers having good educational background and appropriate problem solving skill.
Tremendous growth in number of engineering colleges resulted in significant increase in number of graduates passing out each year. And the gap is also increasing between the skill of graduates and the expectations of the companies.
Now I will focus on what industry look specifically in fresh graduates? Typically it will include:
- Problem solving and Analytical skill
- Technical skills
- Communication and interpersonal skill
- Leadership skill
- Extra activities like foreign languages, organization skills etc.
So it will be always better if you try to achieve any experience or skill before trying for any graduate jobs. You are one step ahead than those freshers having no experience at all.
This work experience typically includes:
Internship -
Internship work done in any company during or after the graduation. It may be free or paid internship
Sandwich courses -
In some courses industrial training is included in curriculum itself. It is typically of 6 months to 1 year in most of the universities. You can include this project training in your resume.
Special skill achievements through classes or companies:
Training taken from some institute or companies can be included in your work experience.
Projects:
Projects accomplished for commercial or research purpose. These are the paid or certification projects accomplished for companies during the graduation years.
All above-mentioned work will definitely count as a experience as you get actual idea of company, team work and company working culture. Find out your skill areas and what you can offer to employer before hunting for jobs. Companies always look for all-rounded candidates who can effectively utilize their skill into projects from universities, experience and extra activities.
Don’t want to miss a single testing article? Subscribe to our Email newsletter!



267 comments ↓
Thanks for the great answers for breaking the functionality. I got a lot of points.
Hi i know the expact differances between smoke and Sanity testings ? and where it is used ? when we will use these once? pls give me the answer
How to interact with the developer about the bug?
its true. My favorite negative test case to check input box is insert single or double quote on it. Many times you can see this is not handled.
Also try adding HTML tags as input in such input boxes. You can find many bugs on such html tags as input to text boxes.
Great list bye the way.
HI Vijay
Thanks for the details. IN many of the cases during my visit to corporate there takes the discusison on the similar ground towards how the fresher candidtes can be well technically groomed towards the exact fit for their equriement and hence we have taken an aproach to the institutions right at the inceptio level with the inpus form indystrh client and offered on-campus sandwith courses at nomimnal cost and further FREE internship with our cleitns for a tenure of 90 days full time to work on projects to sharpen their skills which they are going to get work experience certificate form the client. I hope this will bridge the gap between the freshers strength adn industry need of fresher with adequate experience as well hands on.
Regards
Jayant
Hi,
It is great article on negative test cases, Vijay can you please write on “White Box testing” and what Testing professional cover while conducting “Code Inspection”?.
Hi Vijay
Special characters are not been allowed by user entry but may be allowed by copy and paste method. I.e Ctrl + C and Ctrl + V or through mouse.
Hi vijay
Can u pls help me out in learning in Network Management concepts ,and reall testing is carried on with respect to netowork .
hi vijay
can u please send some of interview questions in qtp?
@ Aruna
http://qtpro.blogspot.com/
hi can u send me the answer for difference between test case and test scenario and define both of them
hi vijay,
i am a regular visitor to your site , i like all your articles,those are very helpful for me to understand the concepts, i just started learning testing tools from a month ago, one of my friend has her own company website and i want to test that website for practice ,so can you please tell me how to proceed,and can you sugest me other articles on how to test a website manually and using atomated testing tools. i have seen ur article on this topic , with that i got an idea ,but i want a complete guide , so that i can follow that to complete my task.
waiting for ur replay
Thanks
hi
can u please explain what are the internal, external and broken links in yahoo website?
Do we have to write the test cases for each link?
We need to write test case or test scripts for each link - this can be done using customization of the automation scripts(loadrunner)
Hi GS,
Test Cases can be derived from the Scenarios. If you want to do write test cases for validation of text box, you can write Scenarios or Test Cases.
Scenarios:
Scenario 1. Check with the valid input(write the Expected Result)
Scenario 2. Check with the invalid input (write the Expected Result)
In Scenarios you can just mention Valid & Invalid and while testing try with all permutations and combinations.
In Test Cases you have to mention all the Permutations and Combination as a Case.
This is my live experience.
Pls Correct me If I am wrong..
Hi ,
This is Gayatri From Bhubaneswar.
Right Now I am working as a freelance trainer in software testing for many compnies and institutes.
If you people having intrest to learn it then please fell free to contact me …
My course schedule
1. Manual Testing
2. Win Runner
3.Load Runner
4.Test Director
5.QTP
With required interview tips…
and mock interviews.
Thanks
Gayatri Mishra
Ph - 977044704
testingtrainer@gmail.com
Hi ,
This is Santosh From Bangalore.
Right Now I am working as a Testing Team Lead in an MNC Company..
If you people having interest to learn it then please fell free to contact me …
My course schedule
1. Manual Testing
2. Win Runner
3.Load Runner
4.Test Director
5.QTP
6. Rational Robotics
7. Embedded Testing
With required interview tips…
Thanks
Santsoh
samdec830@gmail.com
hi,
Give me details about penetration testing
Hi Prvin ,
Atleast you have to send yr mail id so that i can send the details in mail attachment.
Gayatri
Hi can any one Give me details about penetration testing. Please reply to my mail id. Please mail me the details supriyashen@gmail.com
Hi Vijay
I M MCA 2002 passout having 4+ Exp in teaching computer sub like C/C++/VB/core java & SQL
also since 6 months i m in testing field as i have done ST course now i want to change the company as my package is very less.
but wherever i apply i don’t get the interview call
kindly suggest me how should i proceed
i m scared whether my year of passout is the hurdle for me??????
just guide me
hi Gayatri,
Give me details about penetration testing.
pravinbate@gmail.com
Hi Pravin and Supriya,
I send the datails regarding penetration test
to both of your mail ids.
Check mail…
Gayatri
Hi Gayathri,
Would be glad if you could send me the details about penetration testing to my email id too. Many thanks in advance
zakir_24@yahoo.com my email id
Cheers..
zakir
Hi Vijay,
I am a regular reader of your blog. Its awesome and very helpful. Could you please provide me the details of configuration management tools like PVCS, CSS etc… thanks.
Thanks Gayathri. I need document related to Testing Methodoligies & techniques,Negative Test cases,Database Testing. If possible pls send t my mail id supriyashen@gmail.com
@Gayathri
Many thanks Gayathri. So nice of u. As requested by our friend supriya I wud like to have details on Testing techniques. Pls do fwd to me too. Thanks a ton again..
@aruna
About internal, external and broken links in any website
An internal link allows you to link to another section on the same web page, so it basically scrolls the page up or down to the desired location. This is helpful to the user to quickly jump to the information he/she is looking for.
External link checks link for outgoing links. It can be any link to any other websites.
Broken link refers to a weak link which does not work while clicking the link. This might happen when the path is not defined clearly by the developer when writing the scripts. There are few sites which checks for broken links. For more details refer to this site http://validator.w3.org/
it is very useful for me.all m doubts are clarrified.thanku.
Hi, I have a BSc degree, and have more than 2 yrs of experience in recruiting, and more than 1 yr in technical support. I am now interested in learning the concepts of software testing. Do you think it will be an ok transition from HR to software testing? Also I plan to take a 6 week course online. Any thoughts?
Great site , great job BTW!!!!
Thanks!
Hi Swapna
Of course yes as you are from HR background it can be considered as a vertical I mean any software development company engaged in develop say ERP module the knowledge at your end is going to be useful as a process which can be termed as DOMAIN EXPERTISE
For further information do write to me at jayant@evologicsoftech.com.
Regards
Jayant
Dear Sir
Greetings!!
After long time getting back to you sorry for delay but was occupied in few personal things that were critical.
Here is the schedule for BFSI training scheduled to be held on 2 week ends starting from 8th & 9th of Dec 2007.
The topics covered will be:
Basic Testing:
- coverage on Manual Testing
- exercise on test plan, test case writing & bug report
Real Time Application handling & working
overview on Product based & Project Based companies
coverage on basic terminologies of Internet banking, application server, web server & DB Server
banking functions – fund transfer, bill payment and other related services and functionalities
overview of banking applications available and commonly used by banks
required list of documents before starting the project & study of those documents in relation to testing &/or BI/BA
real time & off line transaction management
test plan & test scenarios
creating test data for application testing
database migration activities, approach on DB migration
DB migration in details
credit card function management, ATM process and other transactions like clearing house, transfer etc
SQL database server and coverage
Project
- hands on banking application
- test plan & scenarios
Training schedule
Timings: 10am to 5pm
Facility: snacks & working lunch
Courseware & documents: for each participant
Fee per participant: Rs 8000/=
For further details please write to the undersigned.
We also would look for a group batch at other cities for minimum 10 participants
I need document related to Testing Methodoligies & techniques,Negative Test cases,Database Testing.
If possible send it to sand.softnet1@gmail.com
Hi Gayatri
please note below:
Thanks
Gayatri Mishra
Ph - 977044704
testingtrainer@gmail.com
the cell number here is incomplete.
Kindly provide me the same as fo further discussions I wish to take up.
Jayant
9987024419
Hello
All 2007 freshers mainly from Engineering & MCA Degree to send their profiles for further assistance and if interested in Software Testing to provide you further information.
Jayant
Hi,
First of all thanks to your comments,iam working in chennai,i did not where to study the testing course.
do you any institute.I need your help.
Hi Ganesh
please check out for STG or STC there in Chennai or take help of google to search one of it.
Jayant
Hi,
My question is software testing is done in all developement concerns or not ,because some of the companies didn’t do that, they just created the software and they done all the testing by themselves (manually)
and send it to the clients.Then why testers are needed.
Dear Mr Ganesh
please go through few quotes i am mentioning below for your ready reference:
1. In ISTQB-India@ yahoogroups. com, ganeshpp1@.. . wrote:
Hi,
the below answer is 100% correct.
A Old saying to this Question ” A Man(developer) Can’t identifies
his Own mistakes, Unless they are questioned by someone(i.e; Testers)
though it would be related saying…… if hurted, Excuse.
with regards
Siva.
> Below is 100% correct answer
> Regards
> Ganesh
>
>
> —– Original Message —–
> From: Arun Vats
> To: ISTQB-India@ yahoogroups. com
> Sent: Tue, 9 Oct 2007 10:08:00 +0530 (IST)
> Subject: Re: [ISTQB-India] Why tester?
>
> Hi
>
> Though u r right.. but the main reason is moto…… dev develop
the program
> …so they want it to pass only & not fail..so in that case their
main
> concern is on passing the prog.
> But for at tester. his moto is o fail the sys..so think in that
> way……… ……
> Thats one of the main reason for having independent testing
team…….. ….
>
> Hope i m right.. if there any issue pl lemme know..
>
> Arun Vats
>
> On 10/5/07, Rajesh wrote:
> >
> > Interesting question from my friend…
> >
> > “Why we need testers separately in a project, even dev guys can
spend some
> > more time on the build for a quality output?”
> >
> > Regards,
> > Raj
2. Hello All
1) Tester will be having more functional knowledge and there by
testing the application for the usablity and developer will be having
the knowledge in the screen only for which he /She has coded.He might
not be having the Complete picture of the Biz.
2) Interface Testing and system tsting are not possible at the
developers end
Regards
Sharmila
— In ISTQB-India@ yahoogroups. com, Sanjay Bhagat
wrote:
>
> Moreover, sometimes there is difference in interpretation of
requirement. Tester, different from developer will have test
scenarios depending on his interpretation. It happens a lot.
>
> II) Deveoper may thinks that he/she created correct code and need
not be tested that extensively.
>
> —– Original Message —-
> From: Jaideep Khanduja
> To: ISTQB-India@ yahoogroups. com
> Sent: Tuesday, October 9, 2007 1:12:33 AM
> Subject: RE: [ISTQB-India] Why tester?
>
> Hi,
>
> Various reasons for why QA team is separate from developers:
> a good developer will not necessarily be a good tester
> testing by the same developer who developed it will be
unintentionally unbiased as he is not aware about his weak areas
> testing is and should be an independent activity to get effective
and unbiased results
> testing and development are compliments to each other and not
supplements! !!
>
>
> P Please consider the environment before printing this e-mail
>
>
>
> From: ISTQB-India@ yahoogroups. com [mailto: ISTQB-India@
yahoogroups. com ] On Behalf Of Arun Vats
> Sent: Tuesday, October 09, 2007 10:08 AM
> To: ISTQB-India@ yahoogroups. com
> Subject: Re: [ISTQB-India] Why tester?
>
> Hi
>
> Though u r right.. but the main reason is moto…… dev develop
the program ..so they want it to pass only & not fail..so in that
case their main concern is on passing the prog.
> But for at tester. his moto is o fail the sys..so think in that
way……… ……
> Thats one of the main reason for having independent testing
team…….. ….
>
> Hope i m right.. if there any issue pl lemme know..
>
> Arun Vats
> On 10/5/07, Rajesh wrote:
> Interesting question from my friend…
>
> “Why we need testers separately in a project, even dev guys can
spend some more time on the build for a quality output?”
>
> Regards,
> Raj
So the above lines of quotes from verious testing professionals to reply Mr Raj who had asked the similar question WHY TESTERS? which is close to your one does testing happens in every company YES it does without product delivery is not probably done.
Jayant
Hi,
The above quote is nice. My question here is about the salary package.
A tester with 2+ years experience can earn how much. At the same time is there any difference between salary levels of a developer and a tester or it may be same.
Hi Ganesh,
I really appreciate Jayant for sharing his and his friends thoughts on testers need in company.
To your latest question about salary:
Take the example of shopping market. You will get a product for different prices if its made by different companies. New and small companies will sell them to low price whereas big brand companies will not. Why? They have reputation, market and trusted quality since many years.
So as a tester your salary will depends on following factors:
1) Your total experience
2) Your Relevant experience (Say in software testing)
3) Your Skills
4) Your Role in organization (i.e tester, Sr, tester Test lead, Manager)
5) Your education
6) And finally the company salary policy.
Yes companies have salary policy, that what package a fresher will get, and also package for experience professional.
If you are working with equal opportunity employer then there should not be any differentiation between Developers and testers salary. And as per my knowledge most of the CMM companies do not differentiate between tester and Dev.
To be specific to your question as a 2+ experience and if you are on software test engg. position in a CMM level company then you can get around average 4 -5 lacks per annum package.
hi,
Its a very nice observation about the salary package,My qualification is Msc(information tech) and 2+ experience in s/w testing , how much my salary expections is to be.
hi
Can anybody tell me the framework in qtp with detaild examples
@aruna
Give me ur email id or else drop me a test mail to zakir_24@yahoo.com
I have an word file, hope that’ll be helpful to u
and will mail u that one.
Cheers
zakir
Good list of test cases. i would like to add the few.
1.Try to register a user who already exist.
2.Try to register the emailid which is alredy registered, with different details.
3.(Assuming) If the password after the signup is sent to the email id registered, check if it is randomly generated and unique every time.
4.After registration click the back button of the browser and request for the same registration( it should not allow).
5. You register a user and system crashes.
hi Can anybody tell me the framework in qtp with detail examples.
If we want to work on QTP can u state the process of how to carry out testing for web application using tool.
i need the flow of how to organise the task by using features that is made available in QTP.i need related documents.
i request anyone to send mail in detail supriyashen@gmail.com.
If possible send me QTP materials, work proces, FAQ.
In this Blog many of them would have been working on QTP tool. so i request u all to send the tips and test cases related to automation process.
i need documents & test cases related to security testing.
I need test cases and documents related to performance testing for Web application, ecommerce, CMS and desktop applications.
Peoples who are working in this domain please provide guidance and necessary documents.
i need documents related to shell scripting.
i request anyone to send mail in detail supriyashen@gmail.com.
Replying to Jayant:
Well, Vinod has mentioned most of the things that a fresher should have, in addition to his/her degree.
Altough its true that a fresher will be in a state of mind thinking “we are freshers”, but that won’t help anyway. You can’t keep on saying that, instead go attain some crash courses in the subject which you are intrested , that definatey will be a value add. “You have to run pretty fast in this life even just to stay still “.
To get into a good company and to get a first break, you need to have that extra THING in you. This can be anything what Vijay has mentioned above or what I have listed in my post.
The most important thing that a company look into a fresher is his/her Learning Ability, Analytical skills, Aptitude and the Attitude . The one who is recruiting you might have gone through same phase of life one or other day. They do know the ability and limitations of a fresher. Most of the companies have their own inhouse trainings going for months. A fresher also needs to have patience and confidence. I have seen many people giving up after a few months struggle.
Keep learning and try to stay in touch with the people in the industry you know. The best thing is keep visiting the tech forums and tech blogs.
Ultimately, fresher for corporates is the person passionate about technology and having the zest to learn it.
Regards,
Suhas.
its really wondeful this site gives what i search a last one year it gives a few seconds am really happy with this site. thank u
hi
This is my first time iam posting the Question. Firstly i want to thank since it is really a wonderful & very usefulsite.
If possible send me QTP materials, work proces, FAQ.
Since i am preparing for interviews,having 2+ yrs of experience in manual testing.
My mail ID Is sushmaathicom@gmail.com
thanks in advance
How to test Winamp?
Basically the Equilizer?
hi
can u pls tell me salary package for M.E (cse) with 1 year experience in softer testing
I send que
I need documents related to Manual Testing, Quality Control Testing, Negative Test cases.
If it is possible pls send it to lalitmangal2005@gmail.com
What do you mean by “Quality Control Testing”? I have never come across such term.
1, i want to know what is a difference b/w call by value and call by reference in a library function in QTP.
2, difference b/w sub procedure and function procedure in a QTP with examples.
Hi
I’m a frequent visitor of this site, we get many information from here.
Can anyone say what is the standards to be followed during usibality testing for a web application, and from where can we get it
What is the difference between the CLOSE AND CANCEL button
Suresh,
Usability testing is like testing how easy is the application to use for the user.
Consider a application whose target audience are general public (who know nothing abt s/w). Say to use the application u need to make a registeration. While registeration it will ask to enter the LOGIN ID. Now what is the login name? A description needs to be given for that mentioning what the term LOGIN ID stands for.
This is very very simple example of Usabiity testing.
While carrying this testing the very first and important thing to know is what the application is and who the intended USERS are? Without knowing this your testing will not be useful.
Difference between Close and Cancel?
Close: It will close the window, application.
Cancel: It will take you back to the previous page, screen.
ALL,
When you post the question make sure that you give your views/answers to the question you post. This will help the person answering to understand how much you know and what way he needs to answer you. Else it will be more generic and you may not get the expected answer.
Regards, Suhas.
hi Can anybody tell me the framework in qtp with detail examples.
If we want to work on QTP can u state the process of how to carry out testing for web application using tool.
i need the flow of how to organise the task by using features that is made available in QTP.i need related documents.
i request anyone to send mail in detail supriyashen@gmail.com.
If possible send me QTP materials, work proces, FAQ.
In this Blog many of them would have been working on QTP tool. so i request u all to send the tips and test cases related to automation process.
i need documents & test cases related to security testing.
I need test cases and documents related to performance testing for Web application, ecommerce, CMS and desktop applications.
Peoples who are working in this domain please provide guidance and necessary documents.
i need documents related to shell scripting.
i request anyone to send mail in detail supriyashen@gmail.com.
I
Can any body give me an idea about the qualification required for a software testing career.
Hi can anyone tell me, my brother wants to do the software testing course, so what’s the qualification he needs, plz tell me……. his name is Mangesh he has done his 12th in commerce..so what kind of education he will take… plz.. help me……He is in trouble …….Thanks
Hi can anyone tell me, my brother wants to do the software testing course, so what’s the qualification he needs, plz tell me……. his name is Mangesh he has done his 12th in commerce..so what kind of education he will take… plz.. help me……He is in trouble …….Thanks
my email id is prashants_kulkarni@yahoo.co.in
Hi Gayathri,
Your number is not not correct. I am Mercy working as a Software Tester. I want to know more about the freelance and also want to gain more knowledge in Testing for my Career path.
Hi Gayathri,
Your number is not not correct. I am Mercy working as a Software Tester. I want to know more about the freelance and also want to gain more knowledge in Testing for my Career path.
mercy2409@gmail.com
Hi Gayathri,
Your number is not correct. I am Mercy working as a Software Tester. I want to know more about the freelance and also want to gain more knowledge in Testing for my Career path.
mercy2409@gmail.com
Can you give some suggestions on how can we test an application with business prespective like i know what is the basic functional flow in the application
but obviously the developer will not know it & he will surely miss them so what would be proper approach
say for example
Purchase Module - Raise Po , Approve it , Capture the GRN in stores
So apart from this how we can ensure that system will handle all the business flow
Billing Module (patient)
1. Capture the bill details , recieve the payment in Cashier
Corporate patient - generate the bill for bill items segrregate the allowed & disallowed items in cashier & Rebilling corporate , recieve the corporate receipt against the corporate consoliddated bill
2. Rates - appropriate rates should be applied for the patient type like private , corporate, insurance , international, external
these are some basic scenarios apart from this any thing else can be tested in our project we dont focus much on field validations just mostly we focus on business scenarios which i found breaks the system very easily
Need your suggestions mail me
Thanks & Regards
TOM
feetliknsoles@gmail.com
Hi Vijay
I am david from chennai, I am having good knowledge in software testing.I have attended so many interview in these days.one of my interview questions is
what is previous role in your organiation?
Previously i worked has Test development Analyst in….and based on SRS document we write the test case review the test case and execute the test case if any difference from expected result with actual result we will inform to Team lead.,is it correct?
Please check for
Please check for less than with characters then you should get a run time error or the data given after that html tag will not be appear, please check the 69th comment. I have typed the less than symbol and posted that then it is not displaying. Ex: - less than symbol continued with charaters.
Thats related to penetration testing.
Thats related to penetration testing. Mostly it will happen in PHP, .Net and Java applications. I don’t know about other technologies.
Hi,
can any one tell me “what is latent defect?”
and “what is bug density?” my mail id is bindupulikanti@yahoo.co.in
1. Latent Defect
Latent defects are those defects that still remain in the software product even when delivered to the customer.
These can be identified effectively with Inspections.
2. Bug Density
Bug density defines the testing metrics.
It is cost-effective for software practitioners to monitor and control the quality of software from the early phases of development.
Ratio of the number of bugs to the number of code defines the bug density
Hi,
Can u tell me how to pratice QTP? From where i can get a book on practical. I seached quite a few times but i am not able to get.
Thanks
Hi ,
I want to do some serious live projects in testing. Im living in noida.can any one plz help me out.
Can anyone send me the QTP material. I want to practice QTP at home.. or do i need to join the course??
Please send me the material to chandude1@yahoo.com
Thanks in Advance,
Chandu.
thanks for kind information
Can any one let me know what is Testing methodology and in which methodology using for Testing the Application?If any types available?
Can any one help me with real time situations– like how a test case is created how to begin with……?
Please email me the real time lab exercise at rahool246@yahoo.com
Thanks again
Rahool
hi friends,
can any one pls tell me about Bugzillz, how to log a defect.
Pls let me know about database testing
Hi Kavitha,
pls gothrough this link kavitha…
http://www.bugzilla.org/releas.....troduction
its not possible to attach the screnn shot, u can send ur id so that i will forward ……
Is there any opening in testing plz inform to me
chennai
san_davidkumar5002@yahoo.com
hi vijay,
I want to know abt Database testing.Please tell me how to proceed.
Thanks,
Haripriya.
hi vijay,
am currenrly working as a test engineer for a product based company, our company mailnly caters the needs of the market. over here testing team is not receiving any sort of in-hand documents before testing an application.
can u suggest me wat sort of documents, the testing team needs before testing an application
are we suppopsed to get the SRS from B.A?
wat documents we should get from the developers?
pls give me a list of documents that are mandatory for the testing department, so that i can ask the concerned departments for the documents
Give me practice exam for software testing .or any site that will help me to gain knowledge.
type of question ask in interview
Hi frns ,My name is saboor .I hv done MIT in 2005 and worrid about my carrier making in IT field coz I hv been working with BPO for a long time .
I want to make carrier in software quality testing .
So plz anybody advise me about my carrier path .
Is this the right decision for me to chose SQT?
Hi, I want to thank who are all behind the creation of this usefull site, As Iam a new to this field , I can Improve me alote from my Brothers and Sisters.
Thanks for all
Hi Friends Reg-Career in Testing
Hi Friends,
Recently my friend attended a training session in DHS Infomatics PVT Ltd. on testing . She got selected in a MNC witn in the Course Duration(Also with value labs,)She told me that the session is completely designed with interview orientation,followed by Software Standards(Real Time),two projects with screen shots, interactive question and answers session and finally HR Session.
I guess it would be verymuch helpful to your career.
For Further Details
VIJAYALAKSHMI: 9710270072
FORWARD YOUR RESUMES @ enquiry_vijitest@yahoo.com
This is babu, doing testing course in manual testing.
This is my first question.
Please send me the answer for below question.
what are the key challenges of testing?
and also another request please send me some sites to apply for job in testing.
@Santosh
“”"6. Rational Robotics”"”
Please dont give testing training in Rational Robotics, its Rational robot by IBM, So from this dear readers can understand his knowledge in automation tools…So dear bangloorians please have a look at these kind of frauds.
Please send the HR question for software testing.
an any one pls tell me about testopia
Hi, vijay this is sanjeev . i want to know the future of load runner. can we get the jobs in hyd.
hi,this is kumar . what is the difference bet v-model and fishmodel which comp are usingthis models.
hi this is raajkumar , plz send the difrence between regression and re-testing ? and what is mean by Bug failure?
what is mean by Bug failure? and diffrence between regression and re-testing?
Hi,
Please tell me the salary package for 1+ year experience tester in an embedded company
Hi,
Please tell me the salary package for 1+ year experience tester(Manual as well as automated) in an embedded company
6k per month
Enjoy…
Hi vijay
If u dont mind I would like to give u a suggestion that please try to answer the queries which are there in all posts.
Some of the Topic need further improvement.u r going to give new posts but what abt the earlier ones.Wont they need ay more response………..
haripriya
@Haripriya
I’m sorry all on a sudden how can i answer all your questions please ask your doubts to vijay, george etc… also because they are the guys doing good job here.
Data consistency is very important in web application. Check for data integrity and errors while you edit, delete, modify the forms or do any DB related functionality.
Check if all the database queries are executing correctly, data is retrieved correctly and also updated correctly. More on database testing could be load on DB, Security on DB etc…
hey happy now…
Hi i like to know how to join testing company as i’m working in a softwere company who makes the software for PVB and i have to test before releasing those.
HI,
Could you please let me know how to do databse testing? Which are the common queries normally use in databse testing and they are ask in interviews?
@sachin
Go in deapth of retrieval quries, mostly they will ask join, indexing, clusters, then some basic differences like primary key vs unique key, Having vs group by etc
cheers…
george
@George,
Thanks for reply but actaully whn they ask to get 2nd highest salary or count or like lowest salary without using aritnematic operator or group by/order by. then how can we do all this…do you have some question ans answer related to queries. please share with us.
@sachin
For highest or lowest you can use aggregate functions like Max, Min, Count etc, for details refer w3schools or you will get sql tutorial from the net.
cheers
sujin
hey vijay no need to say sorry……
There are many readers waiting for replies….
ya thanks for ur response
so nice of you.
thanks Sijun
Hi,
I have done a normal graduation. B.A. and i am working in BPO however always wanted to be an IT industry. I have thought alot and as per my interest and capabilities I have figured out that software testing is better option. Is this possible that a BPO background Person and has done a normal graduation like BA can do this course and get a job. If yes please let me know some Institue in Bangalore. That will be really geart.
Thanks
Hi Ruchi
Yes offcourse u can but hav to get prepared by going 4 some rite classes.
HI Ruchi,
U can enter into the world of software testing without any fear of your qualification. In fact one of my friend had same exp. he was B.A. and was working with BPO and without doing any coourse he appear for interview at CMMi Level company and he got selected as he was working as quality analyst in BPO. soon he went to Onsite (UK) n last 2 years he is in UK.; so qualification doesn;t matter. Good LUCK ruchi.
Thanks Sachin.
I would appreciate that you have replied to my message. Can you please suggest me any institute in Bangalore or their number so that i can speak to them.
Ruchi,
I am extermely sorry that i couldn’t give u any contact details of Banglore institue beacuse i never had been to bangalore. I from pune. If you could find Seed Infotech institue in Banglore then u can join it or SQTL institute.
Gayatri,
This is Ravi from pune working with MNC as a Tester, Would be glad if you could send me the details about how to perform effective testing on Web based testing and also if you have any templates daily and weekly report plz send to my email id ravikumark23@gmail.com
Thanks in advance,
Regards,
Ravi kumar.k
hi,
i want to make future in software testing.i have started learning from www.onestoptesting.com.Its is enough for passing interview.
can any 1 help me,can any 1 give me the document or notes which i can refer.
Thanks & Regards
Pankaj Bhatt
Ext:13555
plzs mail me at mr.pankajbhatt@yahoo.co.in
Thanks
hi …. i completed msc 2006 pass… now i am working faculty in testing . i have to go software side… i want model testcase and live project model…. please help me….. i am expecting your replay mails….
preethireddy84@yahoo.co.in
please mail me regarding jobs and any douts in testing
@Ruchi,
i know some1 in bnaglore who teaches concept vey well and charged every nominal..if u need i could pass details..
more info ping me back @rahulkumarbangalore@yahoo.co.in
@preethireddy84@yahoo.co.in
Model test case–
its not vey dificultr at all u could wirte by urself//
i will explain wrt opening an excel..
decide precondition..1st..then use keyword VARIFY/CHECK while describing in test setp..
column type depands how many column u need..but some imp col are testcase id,step,precondition,exp . result,priority,severity..u could add more also
more info ping back @ rahulkumarbangalore@yahoo.co.in
@pankaj
this site is really help ful use this to the maximum extent..it would help a lot to u..
more info ping back @ rahulkumarbangalore@yahoo.co.in
@quality analist
What is meant by software testing?
@quality analyst
What is meant by software testing?
hi this raaji from chennai, my U.G qualification is B.B.A.
but now i would like to go to software field.so that i joined M.C.A. doing madras univercity. can i do testing coures. which coures is useful for me. moreover which institued is best . pl help me
Hi Raaji,
STG branch near thousand lights is good as a matter of any STG branch is good,
Pls dont midunderstand that i am promoting STG here, i have nothing to do with them.
I am a Team lead in a Software MNC. I have studied in STG and i felt its good.
I would like to clarify one thing. Have u already joined MCA or going to join.
Second thing, Do u really like testing or your using this as a platform for entering software field.
Third, If you think testing is a easy job, well think again.
So first ask yourself a question and then once your confident. you can join any insititue or even do self learning.
Best of luck,
Tiger2k.
Hi folk,
This is lokesh ,i’m woking as TEstor now i’m searching new job if there any req please forword me..
lokesh
Hi folk,
This is lokesh ,i’m woking as TEstor now i’m searching new job if there any req please forword me..
=================
lokesh
I am attending interviews to get a job as software tester.For a short duration projects companies expect me to have full knowledge of TEST PLAN,TEST METHODOLOGIES,TEST STARTEGY AND TEST DELIVERRABLES. All these topics are very important to make test plan. can anybody tell me how to prepare test plan and all these topics.I am confused so, Please help me with these questions.
As a tester to get good job we should have some other soft skills. I have knowledge about SQL QUERIES,MS access, less knowledge of VB.What type of soft skills should i learn to get a good job in software testing field? Is it useful to do courses in SQL language, VB, VB.NET and .NET to enhance my skills in this field?
I am trying to take some course, but i am confused which course is useful for me in software testing field.
Please help me to clear my confusion.Answer me ASAP.
Ekta: Soft skills do not comprise of any programming language or some data base knowledge, soft skills are mostly your communication skills and how you present your technical knowledge out there!
So with your technical knowledge and communication skills you are ready to take testing challenges.
There is no limit for learning and again nothing can be learnt overnight. Some jobs need pre-requisites and some others will provide you on the job training.
Hey Ekta,
You seems to be highly confused.
Alright, here is the plan:
what you need to do is a software testing course, which ideally covers manual testing and automation(winrunner, Qtp, test director, etc) above that you need to have a little bit knowledge about scripting for enhancing your automation scripts.
Test plan templates are available on the internet, if you face difficulties finding it, i will send it out to you.
communication skill is a must as far as i am concerned, if you dont talk, how will i know what are you talking about, does not mean anyone is demanding an accent or free flowing english( good to have though) .
Bottomline is be strong with your basics.
Regards,
Tiger2K
Sir,
Actually i have to join the Software Testing course but im from commerce faculty and i have heard that after completing the software course n if we have to apply for job the companies give first preference to the people who r from science stream so is it ok if i do the course and please recomend me some good institutions in Pune so that i can join and i dont have any knowledge about the software. So if possible please guide me for the same.
Thaking you,
with regards,
Afzan Shaikh
hai
plz reply for que
What is the difference between use case and test case with example
thanks
manjula
@Manjula
USE CASE:
A use case is a description of a system’s behavior as it responds to a request that originates from outside of that system.
The use case technique is used in software and systems engineering to capture the functional requirements of a system. Use cases describe the interaction between a primary actor—the initiator of the interaction—and the system itself, represented as a sequence of simple steps. Actors are something or someone which exists outside the system under study, and that take part in a sequence of activities in a dialogue with the system, to achieve some goal: they may be end users, other systems, or hardware devices. Each use case is a complete series of events, described from the point of view of the actor.
TEST CASE:
A test case in software engineering is a set of conditions or variables under which a tester will determine if a requirement or use case upon an application is partially or fully satisfied. It may take many test cases to determine that a requirement is fully satisfied.
Test cases are often incorrectly referred to as test scripts. Test scripts are lines of code used mainly in automation tools.
Written test cases are usually collected into test suites.
Hope this helps.
Regards,
VijayD
I need documents related to mobile games & application Testing Test case format,test case Methodoligies & techniques,other related docs and usefull sites related that.Negative Test cases,Database Testing. If possible pls send t my mail id bht.patil@gmail.com
I need to know how a tester do database testing? What are the basic steps for it:? What knowledge should require for a software test engineer to become a data base tester?
I need to know how a tester do Sap testing? What are the basic steps for it? What knowledge should require for a software test engineer to become a Sap tester?
hi pramod,
even i want to know why database knowledge is necessary for testers.and how do TE make use of it.
@ Rajatha
As a Test Engineer, you need to have database knowledge.
1) Your application always interacts with a database schema in order to display information on GUI.
2) Lets assume, in your application you want to see all the existing users list, then you need to write a query like, SELECT * FROM USERS;
3) Some times, you may need to test the application with customer specific data, then you need to take the database backup from the customer and need to restore your local database with the backup taken from the customer.
4) In order install your application, you may need to create your own database schema, for that you may need to create an user and then run the SQL queries.
etc…
How can you do all these tasks without having database knowledge.
As far as I know, for any Test Engineer the basic skill set should be as follows,
- Knowledge about the Applications (2-tier, 3-tier etc)
- Database knowledge (atleast writing queries)
- Communication Skills (both written and Verbal)
Regards,
VijayD
I have few questions regarding manual testing. I was asked these questions during an interview.
1. Difference between System testing and End to End testing
2. Is accessibility testing different from GUI testing ?
3. What is the outcome of a walkthrough meeting and a review meeting?
4. What is requirement tracking?
5. What is usability testing and backend testing?
How do u do usability testing,security testing,installation testing,ADHOC,safety and smoke testing?
Please anybody answer me this question.
Give a brief description of Ticking Box Testing ?
Hi all,
can any of u tell me how to validate the email address field like how many characters are allowed before and after the @ symbol and after the dot(.).
Hi
Nice website For those Who Have Lots of queries in testing application…
can u plz explain about agile testing?
k i got the answer by searching the google
and the answer is “testing the software continuously throughout its development”
means”It is a conceptual framework for software engineering that promotes development iterations throughout the life-cycle of the project.”
the answer is “testing the software continuously throughout its development”
means”It is a conceptual framework for software engineering that promotes development iterations throughout the life-cycle of the project.”
Hi Aruna,
This is Suresh Working as a Test Engineer . i have QTP materials as well as Interview Questions so please give me ur mail id i ll send to u through mail.
Thanks,
Suresh
bsuresh7282@gmail.com
wish to know is there any prrequisits or educational background required to learn software testing?
Hi Friends,
Currently i am working in Non-IT field and planned to switch my career to testing.I had learned the basics of testing,and now i am very eager to learn testing practically with real time projects.
If any one interested to teach testing personally with real time projects , i will be more grateful, or else show me the right place in chennai.
Thanks & regards
selvam.ba@rediffmail.com
hi sriram
i saw ur answers regarding testing tools i am appreciate a lot , can u help me out .
Right now i am in australia pursuing diploma in computer field but not related to PR so i am deciding to comeback to india (some family problem) and do some course in testing tools what u think , i have some knowledge about computers i have done Bsc (2005) after that i am not taken any interested in doing job in india wasting my precious time by going abroad. I am 29 now i am sorry what i have done. Can u please suggest me that its good to do testing tools on this age.But i know that its difficult for me to go form the scratch but i can do, if u suggest good reply for my future.
By reading all this u get the idea what guy i was,from the bottome of my heart i am very regret what i have done, Now i am realised that how important the career is please please suggest me what to do , i am interest in computers field.
Thanks for ur preciuse by reading this.
One important think my english also not so good .
send the qtp and manual interview questiones and answers
hi i am vesuna
this is very nice and very useful any every one
i completed my graduation with bsc computers now i am doing as tester since from one year i am doing only in manual i want a guidance how to develop my carrer same in testing for higher positions how to get good offers for high positions can any one help me
this is ramu
what is windows application and web application. pls send me.
Hi Gayatri,
I have 5 years of experience in software testing in various MNCs. I want to jump to freelance testing training career. Could you please suggest, how shoud I proceed for the same.
Thanks.
Regards,
Nitin
can any one please tell me the difference between use cases and test cases with example.
hi Manjula,
usecase : it describes the functional flow of requirement.
tecases: it is derived from srs and usecases.
hi priya,
usecase : it describes the functional flow of requirement.
tecases: it is derived from srs and usecases.
for any question ping me at ramesh16j@gmail.com.
all the best
hi ekta,
Generally for every new we perform smoke testing in this we check the basic/core functionality of the application.
Useability : in this we check look and feel and understandability of application.
Insatllation: in this check the instructions given in installation guide by installing the build as these instructions.
Adhoc: testing with no proper documents, testplan,test data.. etc
ping me if u have any concerns at ramesh16j@gmail.com
How do u do usability testing,security testing,installation testing,ADHOC,safety and smoke testing?
Please anybody answer me this question.
Hi, pls anybody help me out, I m working on web based application and need to automate it using QTP, what are the man concern while automating web app and which area can be automate, pls provide me adequite information about to automate web app,
below my Email id, thanks
shakiraliassup@yahoo.co.in
i saw ur answers regarding testing tools i am appreciate a lot , can u help me out .
Right now i am in australia pursuing diploma in computer field but not related to PR so i am deciding to comeback to india (some family problem) and do some course in testing tools what u think , i have some knowledge about computers i have done Bsc (2005) after that i am not taken any interested in doing job in india wasting my precious time by going abroad. I am 29 now i am sorry what i have done. Can u please suggest me that its good to do testing tools on this age.But i know that its difficult for me to go form the scratch but i can do, if u suggest good reply for my future.
By reading all this u get the idea what guy i was,from the bottome of my heart i am very regret what i have done, Now i am realised that how important the career is please please suggest me what to do , i am interest in computers field.
Thanks for ur preciuse by reading this.
One important think my english also not so good .
#158 praveen on 06.20.08 at 5:40 pm
send the qtp and manual interview questiones and answers
#159 vesuna on 06.24.08 at 11:47 am
Very nice Information Patrick!!! Thanks a lottttttttt!!! U r correct!!!
Can anyone give some realtime example of non-functional test cases for Login page or any other application…
Can anybody tell me the Tool in Dot Net that can be used to measure Latent Defects and Efferent Coupling.
Hi,
I have done Bsc(chem) my passing year is 07. I want to take admition in software testing but i m very conffuse becouse i have no computer background .Many friend tolled to me in testing many chancess in computer holder so pl help me
pl mail me
jaydeepdhumal@rediffmail.com
Hello,
Can any one share sample project for qtp, winrunner, load runner
Thanks
–Reddy
I wanted to learn Automation tool Load Runner, Quality Center but I am not getting any Software trail version to practise. Is there any Institute in Kolkata. Please suggest me.
i have 6 yrs gap bitween bsc@diploma in software testing i am not getting job due to that reason give me idea…..
Hi Vijay,
I have to go for an interview at IFLEX SOLUTION, I have around 2.5 years of experience in manual testing, but never worked on any Automation tool on real time.
Can you pls guide me about the level of interview and how should i prepare to crack.
As far as my practical experience is concern i am confident about the project on which i am working or worked, but in times i stuck to define something with a proper defenation.
Pls tell me Do’s and Dont’s.
Hope to hear from u soon.
rgds
Vishal
Call: +919830704327
E-mail: bishalchaperia@gmail.com
can i know what is extended testcases
thnks for the testing stuff thnks
thanks those testers who r writing the answes to all the questios
Hi..Gayatri please can u send the details on penetraton testing to me also..and this is my email id ramesh264@gmail.com advanaced thanks for u..
Hi,
I would like to take a course on QTP. Please suggest me the best institute to learn at Bangalore.
Thanks!
Kumar.
Hi Gayathri,
Would be glad if you could send me the details about SQL or database testing to my email id . Many thanks .
Thyanks
Thiru….
thiru.pogakula@gmail.com
HI,
Im Dev from B’lr, doing MBA in corres, graduated in B.com… Could anyone guide me if i plan to do some technical courses, say Software testing, as im interested to get into IT field…
I also have one year work experience with TCS in Investment Banking Project..
Hi, Can some one please tell me if a Commerce graduate can take IT as a profession. If yes, then Which course would be beneficial for beginners. Is CSQA a good option? Thanks in Advance!
Pls anybody send the FAQ for QTP
hi
i am rani
please send to interview questions in manual testing
ani qtp
@ rani
I have some interview question on QTP
Can u pls send me a test mail so that I can send u the requried doc.
Regards
Vishal
Mail: bishalchaperia@gmail.com
Call: +91-9830704327
can u tell me what is the difference between the quality assurance and testing?
Hi,
Can u send me material of QTP and how to use secipting.
my mail ID is indra7917@gmail.com, please send testing requirement and some consultant mail id…….
Hi i am shailendra. I want to know about how to find bugs ?
HI, sameer here i having 2 + years experience in mannual testing.I am looking for new job if their any requirment please late me know my cell no is 09766498598 .Pune
What is Suspension/Resumption Criteria in a Software Testing?Please explain in detail.
What is positive and negative testing?How we do these types of testing?
How do the cookies efffect in web applications
testing?
Hi Chandana,
As you asked question about difference between QA and testing………
Quality of product includes two things quality assurance and quality control(testing).
1.Quality assurance is related to the process done for quality of product.Where quality control is related to product(meet the final specification).
2. Audits in an industry is the example of QA where as
Testing is the example for QC.
3.Output of QC(testing) is input for QA.If we find any problem in QC(testing) we need to change or correct our testing process(QA).
4.QA is productive in nature where QC is detective in nature.
what is the reason to change job?
how much salary will u expected ? more than that(my salary) is it correct?
Hello,
I am working for a MNC in Banglore, i would like to join a testing course immeditley. I am a fresher to this filed so i would like to know if i shold go for a manual testing or Automation testing course, where is the best training institute in Banglore?
My Number: 9741199227
How do we do load testing practically at work for a website application?
How we test a login page or other page performance when many users try to request the same page?
Because it is not possible at work to manage many(eg. 500) user just to test a login page or other page in a website application.
I was asked for the same question in an interview so someone who has experience with load testing in an website application please answer me in datail.
Hi Ekta,
The answer is very simple, use any performance testing tool like load runner or eloads .
This tools provides you with a concept of Vuser who simulates the real time user actions.
This way you can find out the performance. let me know if you have any doubts.
Regards,
Tiger2K
Hi Tiger2K,
Thanks very much for your help.You also helped me before to get good answers of my problems.But i want to request you if u will provide me this answer with full detail because i never did load testing by my self. I have only theoretically knowledge(i think not in detail).I didnot get your this answer properly so i am requesting you to help me with this.
I will wait for your answer.
Thanks again
with Regards
Ekta
check for negative test case
Hi Priya,
My main question is ……………
How we test a login page or other page performance when many users try to request the same page?
Because it is not possible at work to manage many(eg. 500) user just to test a login page or other page in a website application.
As you told check for negative test case but with this how can i check webpage for many users.
Is it easy work to find bugs in an application?
if somebody ask this question in an interview what should be the proper answer.
Please tell me how to answer this question?
i want to information about software testing course
HI, Venkatesh here i having 2 + years experience in mannual testing.I am looking for new job if their any requirment please late me know my cell no is 9964585966 .B’lore
Hey Venkaetsh, Itz silly that u want to change ur platform.. I wonder why u are looking out for a new job again.When u already possess 2 + yrs of exp in manual testing , then why dont u try out for any Automation tool, may be u may get some extra knowledge on automation too and who knws that may be handy in the near future, rite!!!. just think abt it and try to come out of the phobia of looking for a new job.
Strictly speaking Venkatesh, the present scenario is not so gud in software as the Recission period is in full swing .
My kind suggestion to u is, not to look for any new job till this year end.
There are many ppl who r looking for jobs and u r the one who wants to go for a new job , how strange that is ! am i rite venkatesh?
So dont give up the present one.
Contact me ,if u have any queries
here is my mail id.
cynosure001@rediffmail.com
Regards,
Me.
@Ekta
If this Question raised to me. I would have told we need the analytical skill to find the bugs in the an application. Some caught easily (e.g) design issue by an eye some are not found in a glance. We need to test in a zikzak way to find more bugs.
It is not easy in some case.
what is Agile Testing
COuld somebody please Please tell me atleast6-8 advantages of V-Model over waterfall Model?
Thanks,
Umaraj
COuld somebody please Please tell me atleast6-8 advantages of V-Model over waterfall Model?
Thanks,
Umaraj
umaraj.singh@gmail.com
sir i have completed my b.e in cse in 2003.but due to some problems i did not take engineering asprofession.but now i wanted to enter in IT field.somebody told me about software testing course.will i get the job after doing this course.there is 5 years gap.plese tell me should i go for this or do something different
Hello, This is in response to the Query Raised by Namrata whether is there any scope for her in testing if she wills to enter.
As u have completed ur Be with Cse in the year 2003 and since u possess 5 years of gap ,I think u have a Gud chance of making it into Testing.
But the pros and cons are always there for any field,rite?
So First U need to Learn Testing thoroughly (MANUAL and Automation).
I bet Manual testing is easy .This will be like a Theory dealing wit some of the Important concepts.But Namrata the only factor u need to worrry abt in manual is The Templates used in the Real time Environment. Since u said u have 5 yrs of gap after ur Be(2003).
U need to be perfect in all those aspects .
Coming to the Automation, Im sure tat will also be an easy for u as u have some computer knwledge,since u r a CSE student.
In Automation, u need to be Perfect in Scripting Part.
Im sure u might have heard abt Java script, Vbsript ?? rite?..If so.. that woud be handy for u in understanding the Script.
There are few Automation Tools available in the market, like…Qtp,LoadRunner,Winrunner,Silktest,RationalRobot,SqaSuite and so on…..
So if u learn Qtp, there the Scripting language used is VB Script….
Scripting languages vary from Tool to Tool.
Namrata, If at all u r projecting with 5 yrs of exp in testing , then u need to knw the Real time Environment and all the Templates used in the Testing.
All in can say abt testing is,Manual is quiet easy ,But u need to concentrate more on the Automation tool(Choose any of the automation tool and be perfect in that).
Ppl use qtp ,which is easy and it is used for Functional testing.so itz up to u to go for Qtp or any other tools.
Wish u a gud luck in the Testing Namrata..Hope u do wel and Be confident in ur answering !.
I m working in the Testing platform and so i just gave u my view..
If itz beyond ur reach, Then just Forgive me Namrata.
Regards,
Me.Gud luck 4ur career!
Hello, This is in response to the Query Raised by Namrata whether is there any scope for her in testing if she wills to enter.
As u have completed ur Be with Cse in the year 2003 and since u possess 5 years of gap ,I think u have a Gud chance of making it into Testing.
But the pros and cons are always there for any field,rite?
So First U need to Learn Testing thoroughly (MANUAL and Automation).
I bet Manual testing is easy .This will be like a Theory dealing wit some of the Important concepts.But Namrata the only factor u need to worrry abt in manual is The Templates used in the Real time Environment. Since u said u have 5 yrs of gap after ur Be(2003).
U need to be perfect in all those aspects .
Coming to the Automation, Im sure tat will also be an easy for u as u have some computer knwledge,since u r a CSE student.
In Automation, u need to be Perfect in Scripting Part.
Im sure u might have heard abt Java script, Vbsript ?? rite?..If so.. that woud be handy for u in understanding the Script.
There are few Automation Tools available in the market, like…Qtp,LoadRunner,Winrunner,Silktest,RationalRobot,SqaSuite and so on…..
So if u learn Qtp, there the Scripting language used is VB Script….
Scripting languages vary from Tool to Tool.
Namrata, If at all u r projecting with 5 yrs of exp in testing , then u need to knw the Real time Environment and all the Templates used in the Testing.
All in can say abt testing is,Manual is quiet easy ,But u need to concentrate more on the Automation tool(Choose any of the automation tool and be perfect in that).
Ppl use qtp ,which is easy and it is used for Functional testing.so itz up to u to go for Qtp or any other tools.
Wish u a gud luck in the Testing Namrata..Hope u do wel and Be confident in ur answering !.
I m working in the Testing platform and so i just gave u my view..
If itz beyond ur reach, Then just Forgive me Namrata.
I told u the Exact scenario, prevailing in the market.
Regards,
Me.Gud luck 4ur career!
I am MCA graduate and having 2+ exp in s/w testing (manual)… I want to study more related to testing.. what can be done? Is ISTQB ceritificate have weightage in the market. I want to study more degree or diploma anything.
pls suggest. Thanks in advance.
hi all,i have 2 years of exp in manual testing and now interested in shifting to sap testing..can any one of u suggest where can i learn sap testing..?
I have few questions in winnrunner plz anybody help me “If the application has GUI changes between previous test and current test process,how to identify them” this is my question plzzzz answer me
Hi,
This is Aparna. I am new for this site, I have few questions about the winnrunner so plzzz anyone can help me. ” If the application has GUI changes between previous test and current test process, how to identify them…” this is my question plzzzz answer this question.
hai to all,
thanks for all i learn so many things in that forums very useful site this is everyday i am read this site for my doubts in testing once again tks to all.
Hi Vesuna
ven do u did testing course ?? immediate after ur graduation??? n how was self study
does it matter from wich city u do testing course???
can i do it frm Aurangabad SQTL its a first batch
semd me some interview question and answer for
qtp and winnrunner and mannual testing now
i am looking for the job.
i an searching for the software in qtp and td can any one have the web id. can give me how to prepare for the inter view general asked question on qtp and TD and winnrunner . can reply me to my mail id moon_tiki@rediffmail.vcom
what is mean by software testing? where it is used
Hi Madhusmita,
If you want some QTP material, then I can help you. Could you please send me a test mail from your mail id to my gmail id. ahirrao.rajesh@gmail.com
- Regards,
Rajesh Ahirrao.
Software testing is a process of executing a program with the intent of finding errors by applying valid as well as invalid inputs and verifying the expected outputs whether its as per the user perspectives.It can be done manually and automatically.
Manual testing : Testing the software manually by applying positive(valid) and negative(invalid) inputs and verifying the expected outputs.
There are mainly two types of Manual Testing.
1) Static Testing : Non execution based.
2) Dynamic Testing : Execution based.
Automation Testing : Testing the software by using automated testing tools.
Hi friends,
I want to know what all the content of test pan and various test case for testing an gmail/yahoomail applications ,i had given different answer to my interviewer but he is not fully satisfied
Even I have faced this kind of quetion in my earlier career. Actually, have you told …. Unique email id in your whole story. I have told interviwer about evrything in every angle but the only answer they have expected is that the word “Unique” ….!
Success is ours!
Keep Hunting!
@ Ashwini
I raise my right hand for SQTL. because I am the X-student of SQTL Mumbai 1st Batch in Ghatkopar !!!! I feel proud to be a SQTL Student
I have done my course in the year 2004. Now working for a US based Software Company.
You can join STQL but better you can do in Metro City because you will get more oppourtunity over there.
All the best….
hi janu,
Thanks for your information can u please explain about the unique mail id concept ? and what is the expansion of SQTL ,is it located in chennai
Previously SQTL named as Software Quality Testing Labs. Here you can get full address all over india branch.
http://www.sqtl.com/areas-of-operations.php
Reg Test plan you can visit http://jaanujeeva.blogspot.com.....-plan.html
My Answer :
1) the limit of username field. I mean the data type of this field in DB and the field size. Try adding more characters to this field than the field size limit.
2) Repeat above case for number fields. Insert number beyond the field storage capacity. This is called typically a boundary test.
3) For username field try adding numbers and special characters in various combinations. (Characters like !@#$%^&*()_+}{”:?><,./;’[]). If not allowed specific alert message should be displayed to the user.
4) all the above above special character combination for all the input fields on your sign up page having some validations.
Like Email address field, URL field validations etc.
5) Many applications crash for the input field containing ‘
(single quote) and ” (double quote) examples field like: “Vijay’s web”.
you can try it in all the input fields one by one.
6) Try adding only numbers to input fields having validation to enter only characters and vice versa.
7) If URL validation is there then see different rules for url validation and add urls not fitting to the rules to observe the system behavior.
Example urls like: vijay.com/?q=vijay’s!@#$%^&*()_+}{”:?><,./;’[]web_page. Also add urls containing http:// and https:// while inserting into url input box.
8 ) If your sign up page is of some steps like step 1 step 2 etc. then try changing parameter values directly into browser address bar. Many times urls are formatted with some parameters to maintain proper user steps.
Try altering all those parameters directly without doing anything actually on the sign up page.
9) Do some monkey testing manually or automating (i.e. Insert whatever comes in mind or random typing over keyboard) you will come up with some observations.
10) See if any page is showing JavaScript error either at the browser left bottom corner or enable the browser settings to display popup message to any JavaScript error.
few years back I was sticky to all these tips…
These are known as negative test cases.
Once we used to do in this way .. sometimes we forget to do with the right data. We don’t even if we give correct and valid data application may not react accordingly.. In that case try always with valid data once and than do monkey testing.
Imagine you are the interviewer hope you must be statisfied in this answer right? butttt …..
Atlast …. My Interviwer was expecting me to say that User name should be “unique”
I don’t know whats your interviewer was expecting from you?
Anyhow I got my Cup tea!
Best Luck! Keep hunting …
Could anybody provide me some online broken link checker?
@Malathi
You can check with the below mentioned site for broken link check malathi.
http://www.dead-links.com/
Hi,
Please can u tel what are the Access Control Test Case Checklist
Questions and Answers are so good
how is the future for software testing…………………
plz sent me Please can u tel what are the Access Control Test Case Checklist
plzzzzz zakir contect me my maile add is muskuratay_ansoo2@yahoo.com
Hi
Can anyone tell me the details about LoadRunner
Hi, I would like to add one more points when any(Client - Server or Web side) application gets crash.
when user press ctrl + F4 key from keyboard then application gets crash .
can any1 plz tell me is System testing can be done manually?? or is it require various tools for each System testing type
for ex: Security testing does it require any tool 4test???
@ jaanu
can u tell me ur email id??
@ Ash
We can do system testing by both manual and auto.
System testing falls within the scope of black box testing, and should require no knowledge of the inner design of the code or logic.
a. The purpose of Unit is to detect any inconsistencies in the single Module.
b. The purpose of integration testing is to detect any inconsistencies between the software units that are integrated together.
c.System testing is a more limiting type of testing; it seeks to detect defects both within the “inter-assemblages” and also within the system as a whole.
jaanujeeva@yahoo.co.in
Thanks
Any question one mail ask me,
What information need not be included in a test incident report:
a) how to fix the fault
b) how to reproduce the fault
c) test environment details
d) severity, priority
e) the actual and expected outcomes
if ur answer is ‘e’ then why cant it be ‘a’. please explain?
What information need not be included in a test incident report:
a) how to fix the fault
b) how to reproduce the fault
c) test environment details
d) severity, priority
e) the actual and expected outcomes
why cant it be ‘a’. please explain?
i am new in testing….should anybody tell me the process of testing,,and all the procedure to be followed while testing a software …..
nisha
send me your email id and i would send you some documents which would give u clear picture on testing as i work as a corporate trainer in the field of testing
or do even send me a test mail - testing.nazeer@gmail.com
i have completed b.com is the sqt is better course for me
Hello Sir
Its personal but still i would like to ask u plz give me roght suggestion
I have complited MCA in 2006 but bcz of some problem i am not in touch of sw devlop .
Now i would like to do sw testing corse
Can I?
Is there is scope in this industry that i get job instantly?
You can do!
Get trained from good institute.
Get some real time experience and then search you will get it.
send me a test mail to (jaanujeeva@yahoo.co.in)
i will send the material and more information about it.
Hi
Pls tell me which load testing & performance testing tools are used in industry.Is there any site from where i get to know which company is using which tool.I need to compare some most used tools in industry.
Id research.shruti@gmail.com
Hi Shruti,
Itz …Mercury Tool
Thanx jagdish.
I want to know the tools used most frequently by different companies.Loadrunner is one of them.Pls tell me others also.bcos on net a big list is there n i’m confused
Thanx
Shruti,
send me a mail : Srireddy333@gmail.com. i will send the required info
Hi all,
I’m planning to do phd.n thinking abt website usability testing.can anybdy guide me thr the process like hypothesis etc.
thanx
Has anyone worked on IVR automation, if so can you please help me
This is the very excellent information given which would help to grow in testing career. If possible plz suggest the best freeware load testing tool for web application testing. –Thanks to all.
I have few questions in winnrunner plz anybody help me “If the application has GUI changes between previous test and current test process,how to identify them” this is my question plzzzz answer me.
hi
this is nagarjuna. i Am doing MCA final year. I see this web site today. It is very useful to everyone. ok guys i am asking one thing that is please suggest me for doing a project in c or c++.
plz can anyone let me know the difference between Negative testing and Non Functional requirement
@ Sharada
Non-functional testing covers that part of the application
in which the functionality of the application is
irrelevant. For example, look and feel[GUI] testing.
Negative testing is nothing but testing the functionality
with invalid inputs and conditions
Thanks for the info …. Jaanu
hi jaanu .. can u giv me ur e-mail id?
@ Ash - jaanujeeva@yahoo.co.in
Leave a Comment