What is the memory size of one object repository file in Qtp

Answer Posted / sankar

Up to QTP8.2 , limit is 5MB
After QTP 9.0 series, no such limitation.

Is This Answer Correct ?    1 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Which test cases can be automated?

577


How to Rcognize the Objects in the Web Page Dialog Using QTP

2013


When is automation testing useful?

565


Can any one give information on "Content Disposition" in TEST COMPLETE automation tool? mail me to pdamarakonda@smart-bridge.co.in call me to 09849423932

1545


What are pros and cons of automating tests at ui layer?

555






What is test automation or automation testing?

538


Tell us what is the difference between single slash (/) and a double slash ( //) in xpath?

648


How the object properties will be recognised by the tool If the functions/ statements are written manually?

1750


wat is database testing....how to develop data driven framework in selenium enviromnent. please explaing in detail

1632


what are the steps followed in unit testing, system testing, integration testing

1553


What are the different types of an automation tool that you are aware of?

582


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

2157


How would you test your own element locator?

545


Tell me what is a keyword-driven framework?

512


What do you think holds the testers back to do automation? Is there a way to overcome it?

572