WHAT IS THE ARCHITECTURE OF QTP?
IS THE ARCHITECTURE AND FRAMEWORK BOTH ARE SAME?

Answer Posted / pavan kumar. m

Hi go through the below URL for the QTP architecture
http://qa-qtp.blogspot.com/2007/10/qtp-architecture.html

Hi go through the below URL for the QTP Frame work

http://www.ibm.com/developerworks/rational/library/591.html#N10223

Is This Answer Correct ?    2 Yes 6 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Which is the best place to learn Loadrunner performance testing in hyderabad ?

1080


What are the frameworks available in rc?

585


Can we prioritize tests in Junit. What is the sequence of execution in Junit?

1429


Does every software project need testers?

551


I am testing a GIS based application so Can anyone tell me which automation testing tool is best for this application?

2390






how to re-install QTP 11.0 trial version

2252


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

2155


how to map requirements& test cases in quality center ???

2063


how to test an webbased application?

1568


What u mean by infrgistics control (What is infrgistics Controls)?

1607


wat would be the parameteries for ul testing for web applilcation

1690


How can you create html test report from your test script?

494


Tell me how could the web element attributes be inspected in order to use them in different locators?

562


what is the difference between keyword driven frame work and data driven frame work.

1883


Do you know what is the purpose of creating a reference variable- 'driver' of type webdriver instead of directly creating a firefoxdriver object or any other driver's reference in the statement webdriver driver = new firefoxdriver();?

519