Geeks Talk

Prepare for your Next Interview


Welcome to the Geeks Talk forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.

Choosing between Automation or Manual Testing

This is a discussion on Choosing between Automation or Manual Testing within the Testing Issues forums, part of the Software Testing category; How we can decide Automation or Manual Testing for a project ? NOTE : [This question was asked by Shankar]...

Go Back   Geeks Talk > Software Testing > Testing Issues
Register Blogs FAQ Tag Cloud Calendar Mark Forums Read
  #1 (permalink)  
Old 12-09-2006
Moderator
 
Join Date: Oct 2005
Posts: 1,038
Blog Entries: 76
Thanks: 3
Thanked 168 Times in 136 Posts
Lokesh M has a spectacular aura aboutLokesh M has a spectacular aura about
Choosing between Automation or Manual Testing

How we can decide Automation or Manual Testing for a project ?

NOTE : [This question was asked by Shankar]
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 12-19-2006
Expert Member
 
Join Date: Nov 2006
Location: Hyd-IND
Posts: 528
Thanks: 1
Thanked 63 Times in 50 Posts
sutnarcha is on a distinguished road
Re: Choosing between Automation or Manual Testing

It’s simple,
Manual Testing means, we have to input and trigger actions in the s/w application ourselves , while in automation testing, the tool takes the ownership of these actions .

If it becomes tedious and time-consuming to manually input data and trigger actions in the s/w build, we go for Automation testing.
__________________
Lack of WILL POWER has caused more failure than
lack of INTELLIGENCE or ABILITY.

-sutnarcha-
Reply With Quote
  #3 (permalink)  
Old 12-19-2006
Expert Member
 
Join Date: Sep 2006
Location: Bengalooru (Formerly called Bangalore), India
Posts: 486
Thanks: 2
Thanked 29 Times in 28 Posts
kalayama is on a distinguished road
Re: Choosing between Automation or Manual Testing

There are other aspects too. Ideally we would like to run the automated testing for all the possible cases. But, in reality manual testing becomes necessory as there is no way to perform automated testing. (Or automated testing becomes more expensive that manual testing).

There are certain things like monitoring traffic, load balance testing etc. which can not be tested manually. In these cases we go for automated testing.

[In most of the cases nobody ever bothers how difficult it is for the tester to test. It is always business and that means whichever is cheaper will be chosen]
__________________
[COLOR="Blue"][SIZE="2"]"If you are not living on the edge of your life, you are wasting space"[/SIZE][/COLOR]

Someone says "Impossible is nothing". The man next him says "Let me see you licking your elbow tip!"
Reply With Quote
  #4 (permalink)  
Old 12-19-2006
Junior Member
 
Join Date: Dec 2006
Location: Faridabad(India)
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
ruchikak is on a distinguished road
Re: Choosing between Automation or Manual Testing

First we go for manual testing .When we find that functionality is now quite stable and fixed, we can go for automation.

Last edited by ruchikak; 12-19-2006 at 09:20 AM. Reason: the term 'functionality' was missed out
Reply With Quote
  #5 (permalink)  
Old 12-19-2006
Junior Member
 
Join Date: Dec 2006
Location: California, US
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Pateel saritha is on a distinguished road
Re: Choosing between Automation or Manual Testing

After completion of the test cases preparation, usually test eng's are conducting manual testing only ,

but due to repetition of the test execution [/B][/COLOR]like regrression testing and due to complexity like load testing ..test engg opt for Automation tools
Reply With Quote
  #6 (permalink)  
Old 07-15-2008
Junior Member
 
Join Date: Jul 2008
Location: powai
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
sreekiran986 is on a distinguished road
Re: Choosing between Automation or Manual Testing

Hi,everybody
this is sreekiran and i am new for qtp.I had a problem with this code.
steps:
1.save the data with excel file 'kid'
2.Import the data to the qtp
3.write the code as given below
4.execute the code
it is displaying the result is pass and the test result window is showing the currect values,but the thing is while executing it is taking 4 iterations instead of 2 iterations(give 2 rows of data in the excel file and check this)


DataTable.Import "C:\Documents and Settings\sreekumar.kiran\Desktop\kid.xls"

row_cnt=datatable.getrowcount
For i=1 to row_cnt
datatable.getsheet(i)

SystemUtil.Run "C:\Program Files\Mercury Interactive\QuickTest Professional\samples\flight\app\flight4a.exe"

Dialog("text:=Login").WinEdit("Attached Text:=Agent Name:").Set DataTable("Agent_Name", dtGlobalSheet)
Dialog("text:=Login").WinEdit("Attached Text:=Password:").Set DataTable("Pword",dtGlobalSheet)
Dialog("text:=Login").WinButton("text:=OK").Click

If Dialog("text:=Flight Reservation").Exist then
Dialog("text:=Flight Reservation").close
DataTable.Value("Act_Res")="Pass"
Reporter.ReportEvent 0,"Login Details","Valid Values"
else
Dialog("text:=Login").Activate
Dialog("text:=Login").WinButton("text:=Cancel").Click
DataTable.Value("Act_Res")="Fail"
Reporter.ReportEvent 1,"Login Details","Invalid Values"
End If


er=DataTable("Exp_Res",dtGlobalSheet)
ar=DataTable("Act_Res",dtGlobalSheet)
If Strcomp(er,ar)=0 Then
DataTable.Value("Remarks")="OK"
Else
DataTable.Value("Remarks")="Defect"
End If

datatable.setnextrow
Next

'DataTable.Export "C:\Documents and Settings\sreekumar.kiran\Desktop\kiran.xls"




so can any body help me to restrict the repeated iterations

Regards,
sreekiran
Reply With Quote
  #7 (permalink)  
Old 07-15-2008
Junior Member
 
Join Date: Jan 2007
Location: new delhi
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
nareshgupta12 is on a distinguished road
Re: Choosing between Automation or Manual Testing

Selection between Automated and manual testing is decided by the tester according to the requirement of the software interaction with the user or with its internal database.
e.g. If we want to check the login page of the software it involves user interaction with the software therefore now testing can be done manually.
If the situation comes to check the behavior of the software with different values of the database with dynamically changing requirement , you should go for automated testing tools like win runner , QTP etc.
Reply With Quote
Reply

  Geeks Talk > Software Testing > Testing Issues

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads

Thread Thread Starter Forum Replies Last Post
When will testers go for automation praveen98480 Test Cases 20 09-17-2009 12:42 PM
Build in a manual testing project Lokesh M Testing Issues 9 02-07-2008 05:22 AM
Choosing the best format for your resume timmy Resume Help 5 06-21-2007 06:19 PM
Automation through WinRunner abhaybharti WinRunner 3 04-30-2007 01:22 AM


All times are GMT -4. The time now is 09:26 AM.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.3.1
Copyright © 2009 GeekInterview.com. All Rights Reserved