Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Hello, I am interested to make a career in software
testing. I am searching for a recommended book in Automated
Testing tools which covers winrunner, loadrunner, qtp and
test director....Please advise recommended books which is a
good text book for learning software testing.

Answer Posted / rajendra

Hai Friend
I am Rajendra,
As you are very beginner for software testing
first you should have a strong knowledge in manual
software testing concepts and methodolies.

Once if you get some command on manual then try the
automation tools.

Be rememeber always one thing-
"Automation is part but Manual is HEART!"
Without having sufficient foundation on Manual testing
learning automation tools is mere waste.

If you already knew Manual testing
then i suggest you the book titled

1. "Software Testing Tools"
By Dr.K.V.K.K Prasad
Dreamtech Press
Cover price Rs:279/-(with CD)

2. "Software Testing
Principles and Practices"
By Srinivas desikan,
Gopalaswamy Ramesh
Pearson education
cost around Rs:200/-
This book is best for understanding Manual
testing process and concepts

ok
then byeeeee

Rajendra_penumalli@yahoo.com
9885162742
Hyderabad

Is This Answer Correct ?    10 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How is Jmeter tool very useful in projects when it does not have features like online monitoring,WAN emulation,caching like other performance tools.

2437


What are the primary features of good automation tool ?

1038


What all things can you automate?

1062


What you know about table-driven testing?

1093


Hi, Below is the code that i ran on selenium RC using eclipse IDE and java coding.: package source; import org.testng.annotations.BeforeSuite; import org.testng.annotations.Test; import com.thoughtworks.selenium.*; public class parameterized extends SeleneseTestCase { private Selenium browser; public static void main(String []args) { String arr[] = new String[5]; arr[0]= "bert"; arr[1]= "regular"; arr[2]= "copyonly"; arr[3]= "doert"; arr[4]= "inter"; parameterized obj = new parameterized(); obj.setUp(); obj.login_parameterize(arr); } @BeforeSuite public void setUp() { browser = new DefaultSelenium("localhost",4444, "*chrome", "http://goolge.com"); browser.start(); browser.open("http://goolge.com"); browser.waitForPageToLoad("30000"); browser.windowMaximize(); browser.open("/"); browser.click("gb_23"); } @Test public void login_parameterize(String[] arr ) { for(int i=0;i<=5;i++) { for(int j=0;j<=2; j++) { browser.type("//input[@id='Email']", arr[i]); browser.type("//input[@id='Passwd']", arr[i]); browser.click("//input[@id='signIn']"); browser.waitForPageToLoad("30000"); } } } public void EnterValuesIntoTextField_CheckWithGetValue() throws Exception { selenium.open("http://www.essaywriter.co.uk"); assertEquals("", selenium.getValue("id=textInput")); selenium.type("id=textInput", "Text In The Field"); assertEquals("Text In The Field", selenium.getValue("id=textInput")); } } When i ran this test i got an error which says: "Method login_parameterize requires 1 parameters but 0 were supplied in the @Test annotation." Any help is much appreciated. thank Gab

2617


Tell us what is the difference between @factory and @dataprovider annotation?

1102


Can you tell some good coding practices while automation?

1040


pls tell me any open source test case managment tool ? its urgent.also tell me any autmation testing tool also for functional testing?

2288


Can the activities of test case design be automated?

1875


What are the phases in automation testing life cycle?

1007


VSTET (Visual Studio Team Edition for Testers) which is in TFS (Team Foundation Server) - In what way is VSTET better than QTP?

3689


Tell us how to select a value in a dropdown?

1017


Tell me how can we find the value of different attributes like name, class, value of an element?

1015


Tell me how can you switch back from a frame?

987


I am new to Test Complete ,can any one suggest me the steps to create/Record and replay a test in Test complete 6....

2340