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

What is a framework and what are the frameworks available in rc?

1067


Please explain what is a relative xpath?

1093


Tell us what automation tools could be used for post-release validation with continuous integration?

1046


Tell us the difference between assert and verify commands?

1136


Do you know what is a data-driven framework?

1044


if i want to use different values in datatable with each iteration of for loop what would i do ??/

2098


Differentiate between hdam and hidam database?

969


Tell me what are pros and cons of automating tests at ui layer?

1049


Can you explain me what is object repository?

1015


Tell me what is automation testing?

1025


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

2441


Highlight attributes of good framework?

1054


What are the different types of an automation tool that you are aware of?

1055


I am surekha new commer for this site? I have some doubt's pls clarify it..... I finished my B.tech and S/w Testing Course Now iam searching for a job in Testing, I did not have any experience in real time projects. Any body can send me the sample Testcases,Srs,Matrix for Banking,ERP Projects etc.Here is my email id surekhai@yahoo.com

4517


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

2621