VSTET (Visual Studio Team Edition for Testers) which is in TFS (Team Foundation Server) - In what way is VSTET better than QTP?
3703why should we choose VSTET(Visual Studio Team Edition for Testers) and not QTP?pleas give me the reasons for "WHY" we have web and client server app, supports power builder and on windows OS so this is the background of tech and envir things we have and now VSTET is good to use or not? if "NO" then tell me why
2271What are the steps to perform Load and Stress testing on a Website? What resources do I need to do this? Please advise. Thanks in advance.
2004what is the dictionary objects in QTP? and what is method of vb script using virtual object wizard........
1969Hi, I am working as QA Engineer in Bangalore having around 2 yrs of experience in manual testing. I wanted to learn automation tool side by side which currently has value in market. Can anybody suggest good automation tool to learn and institute in Bangalore? Thanks in advance, bbn
2 5799test cases test wheather window? test cases to test calculaor? test cases to test a reverse string program? test cases to test program{ int.parse(sting str) $return (int)}? test cases to test program{display string length}?
2299Hi This is raghu.Now am learning the QTP.Please let me know any one how to write the VB Scripts. & Please let me know about the QTP Frame work ( Key word driven frame work) in Detail. Thanks, Raghu(786)
2171Post New Automation Testing AllOther Questions
Tell me how can we find the value of different attributes like name, class, value of an element?
How do select which automation testing tool is the best for you?
How to Rcognize the Objects in the Web Page Dialog Using QTP
can anyone suggest me any low cost tool that can support both Manual and Automation testing ?
can any one please tell me QTP 9.2 supports which version of IE and Mozilla firefox.
1. How would you Test & then automate an antivirus application? 2. How would u test & automate windows screen saver? (expected: "test scenarios" & "test approch": points)
Tell us how can you find if an element is displayed on the screen?
4. How we implement Winrunner,in our project?
Name some of the commonly used automation testing tools that are used for non-functional automation.
Does every software project need testers?
What are the types of framework used in software automation testing ?
What are the most popular tools for automation testing?
Do you know the difference between close and quit command?
Tell me which web driver implementation is the fastest?
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