WinRunner (592)
Load Runner (730)
QTP (4305)
Test Director (199)
Rational TestSuite (121)
Silk Test (103)
Selenium (886)
Apache JMeter (102) While testing .net applications with QTP 9.1 in normal recording mode, QTP records my unintentional mouse clicks and window dragging which I don't want. But I can't stop QTP recording those mouse clicks and window dragging. Can somebody let me know how I can get rid of it, please ! Thanks.
1 3780If there r 1000 test scripts that were written. If a change to any functionality is to be made then how can we know in which script is this functionality existing.
4 8732In a shared Object Repository in QTP if some object is changed how can the other script which is using the same object can be known
6 12502Today only i joined in this site. Can u please tell me definition of parameterization. and how i can do the parameterization?
4 6238Today only i joined in this site. Can u please tell me definition of parameterization. and how i can do the parameterization?
6 8719Hi, Plz give best Definition of Software Testing? Why we need Software Testing? and plz send 2+yrs experience Interview qutions (Manual,Qtp).
1 4379Hi, Plz give best Definition of Software Testing? Why we need Software Testing? and plz send 2+yrs experience Interview qutions (Manual,Qtp).
10 14692Hi Friends, Would be great if you can provide the Model Question paper, Web site link or any reference s. Thanks & Regards, Byzoor,
1771
Hi this is chandra if any one have Navigation of LAB RATIONAL ROBOT I want Navigation of those tools, if any one have the and know the Navigation each and every part of the Rational Robot and plz send me my mail naruboinac@yahoo. com,naruboinas@ gmail.com
What is soft assertion in selenium?
What are the advantages of test automation?
Do you know the difference between close and quit command?
What are the modes of script recording in winrunner ?
write a script to validate the content in the web application. (do it by OR method) and (do it by Descriptive method by creating a description object.. (give a filter condition only WEbelement- not easy need to use some more property while giving filter condtions- use google for your help...))
How to handle dynamic objects in quicktest professional?
What do you verify with the database check point custom and what command it generates, explain syntax?
Why is it recommended to run jmeter in gui mode?
What are its advantages of pom?
Hello, Is there any source from which i can get any live tutorial or trial of Automation tools?? Also i have a query that is there any certification course or exam available for Automation tools QTP and QC?
How you can write contexts to text file in qtp?
What are the advantages and disadvantages of using selenium as testing tool?
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
Does jmeter simulate actual browser behavior?