pls suggest me a good institute for loadrunner in hyderabad
also what about a practice project?
Answer Posted / balaji
Best institute for Load Runner in hyderabad is TESTQ
TECHNOLOGIES. they are giving training with practical
project exposure. It is near Nargarjuna school, SR
Nagar.Ph:040-64567966, 9966048282.
Their teaching methodology is best in hyderabad and have
computer classroom. i.e you can practice Loadrunner in class
room itself while faculty explaining.
Is This Answer Correct ? | 21 Yes | 29 No |
Post New Answer View All Answers
Explain me what is a framework and what are the frameworks available in rc?
In general, how do you see automation fitting into the overall process of testing?
What are the disadvantages of Hybrid framework
Tell us how could you explain the main difference between webdriver and rc?
what is the advantage and dis-advantages of using framework ?
On Test Complete I recorded some keyword test. while I'm running the batch test, if one test case failed, then how test complete skip the failed test case and again continue to run the test case? please provide some way to resolve this issue.
can anyone suggest me any low cost tool that can support both Manual and Automation testing ?
What is vendor tool and give examples?
Stop automating the tests which run once?
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
What are the different types of an automation tool that you are aware of?
22. Scenario: There are 1 to 100 numbers. Each number should be keep in the each column like from A column to Z column ie 1 to 26. From 27 to 52 should be in 2nd row in the excel sheet. This has to be continue till 100. How do you write Java program and what are various methods.
if i want to use different values in datatable with each iteration of for loop what would i do ??/
I am testing a GIS based application so Can anyone tell me which automation testing tool is best for this application?
Where you have applied oops in automation framework?