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
What is a framework and what are the frameworks available in rc?
Please explain what is a relative xpath?
Tell us what automation tools could be used for post-release validation with continuous integration?
Tell us the difference between assert and verify commands?
Do you know what is a data-driven framework?
if i want to use different values in datatable with each iteration of for loop what would i do ??/
Differentiate between hdam and hidam database?
Tell me what are pros and cons of automating tests at ui layer?
Can you explain me what is object repository?
Tell me what is automation testing?
How is Jmeter tool very useful in projects when it does not have features like online monitoring,WAN emulation,caching like other performance tools.
Highlight attributes of good framework?
What are the different types of an automation tool that you are aware of?
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
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