What are the scripting languages used in WinRunner,
LoadRunner, QTP, Test director, ClearQuest, Rational Robot?
How do you decide which tool will be a best fit for your
test enviorment?
Answer Posted / anand kumar
In different tules different scripting is used
WinRunner------Test script language(TSL)
QTP -----------VB Script
Testdirector----TSL
LoadRunner -----TSL scripting of LR like c
Java Script
VB script
Lr functions are 2 types one is LR functions second one
is protocol based functions So depending on protocol
selected for scripting it fecilitaqtes to use either c like
logic(TSL), Java like Object oriented laguage or vb script
2) Comi9ng to tool selection most of the time depends on
client. if client instruct u to use specific tool u should
prefer it. If it's ur company choice u have consider few
things like
Ur requirement,
Budget,
Time,
Tool cost,
Available features in the tools,
Future useful to ur testing needs,
Tool experts in ur company,
Supporting environments of tool,
Limitations of the tool and so on.
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
what is dynamic window and dynamic model ? (worksoft automation tool)
What criteria do you consider for automating a test?
is anybody suggest me which one is the best testing institute in ameerpet hydrabad
What type of scenarios can be automated?
Elaborate the fields in bug report in automated testing
can any one tell me the examples of white box testing
What are the pre-requisites to start automation testing?
Bug report formate in bugzilla
Program/pseudo code on FIFO? Input a string and make sure that output is in FIFO manner. Eg, Enter 'John Dave' as input and output should be 'John Dave' not 'Dave John'. (inbuilt functions like push, pop were given)
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
Tell me how can we find the value of different attributes like name, class, value of an element?
hi to all, if we open a browser(for ex. yahoomail.com) using navigate command. the cursor by default focussing on the 'yahoo id' html edit box. how to get the label(ie.,yahoo id) of that html edit box using descriptive program. here we should not use identify tool to get the property,thtml editbox method. by tracing the cursor position we have to get the label name. is it possible? please let me know.
In Selenium how a test suit is run and report is generated.
It is a 30 days project & the client is in Singapur and we have to submit daily report regarding 1) What are the completed works, 2) What are the Pending Works ,3) Work planed for next day. You are free to assume regarding the project. can anybody help me to write an email to the client or Senior person who is staying in abroad
What are the different types of an automation tool that you are aware of?