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
How is Jmeter tool very useful in projects when it does not have features like online monitoring,WAN emulation,caching like other performance tools.
What are the primary features of good automation tool ?
What all things can you automate?
What you know about table-driven testing?
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
Tell us what is the difference between @factory and @dataprovider annotation?
Can you tell some good coding practices while automation?
pls tell me any open source test case managment tool ? its urgent.also tell me any autmation testing tool also for functional testing?
Can the activities of test case design be automated?
What are the phases in automation testing life cycle?
VSTET (Visual Studio Team Edition for Testers) which is in TFS (Team Foundation Server) - In what way is VSTET better than QTP?
Tell us how to select a value in a dropdown?
Tell me how can we find the value of different attributes like name, class, value of an element?
Tell me how can you switch back from a frame?
I am new to Test Complete ,can any one suggest me the steps to create/Record and replay a test in Test complete 6....