WinRunner (592)
Load Runner (730)
QTP (4305)
Test Director (199)
Rational TestSuite (121)
Silk Test (103)
Selenium (886)
Apache JMeter (102) Please anybody can tell the where can i get the information about pharma and bank testing, i put the pharma&bank projects in my resume, so i dont know what to tell about them, so where can i get the information and what we test for these, i need domain information, what r the screen we test?
1856hi, which opensource tool is used for load testing. Will any one guide me for learning how to do load testing. Thanks in advance
2 5492If it is possible to test 5000 vuser through single machine? Then how you can test? plz explain
2 6738If client is not given in the requirement? In that case how you are going to perform performance testing?
4 9004Hi, I am new into the field of testing and I need to know how can I begin automating the testing of Mainframe applications using QTP. Can anyone help me?
1953If I want to run more than one test (With different functionality) with in one script, then what i do? plz. explain with any example.
4 6250I have a 10 lines of qtp script, while executing i got an error at line 7 but i dont want to stop the execution i want to continue the execution up to last line and display the test result window, wts the syntax we use?
3 17833Hi, Has anybody attended IBM interview on 17th APR 2010,and got offer letter? I had given interview and selected also but still did not recieve offer letter.
IBM,
5 8172
What is vendor tool and give examples?
If i am doing the automation of test suites in a project. Then what will be the system interfaces for that?? The tools I am using or something else... please help..!!
what types of documents we need to write the nonfuntional test scripts?
What are the differences between quicktest professional and winrunner?
What type of scenarios can't be automated?
Whats the realtime QTP testing process
Which test cases can be automated?
During run time where the hosts saves the files?
can any one please tell me QTP 9.2 supports which version of IE and Mozilla firefox.
Which are online monitors and windows resource monitors
What are the changes that can be made to run-time settings?
Is there any way of passing values at runtime? Like scanf does in C.
Can any one give me the script for drag and drop or setselection functions ?like in a not pad i want to select 5 lines
What is the difference between lr_error_message and lr_debug _message?
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