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

Answer Posted / nazir bhat

For QTP8.2 and below Mercury recommends that OR size should not be greater than 1.5MB

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain what is the hybrid framework?

576


What are the types of the framework used in software automation testing?

526


Why automation testing?

602


What is test tool?

581


What are the pre-requisites to start automation testing?

481






Give some examples for defect management tools?

570


Tell me what databases can test director reside on?

463


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 to login into any site if it's showing any authentication pop-up for username and password?

548


What is the major difference between Acceptance test , Functional test , Usability test and Performance test with special reference to auotomotive domain

1502


Do you know how can we make one test method dependent on other using testng?

565


Explain how to perform load-testing?

611


what is dynamic window and dynamic model ? (worksoft automation tool)

1584


Where to maintain information like login, password and url?

534


hi, I want to study TIA portla V11. where can I get online courses?

1389