Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Automation Testing AllOther Interview Questions
Questions Answers Views Company eMail

default time for executing 1000 lines of script in winrunner and also in qtp.

Accenture,

3 6933

VSTET (Visual Studio Team Edition for Testers) which is in TFS (Team Foundation Server) - In what way is VSTET better than QTP?

3703

why should we choose VSTET(Visual Studio Team Edition for Testers) and not QTP?pleas give me the reasons for "WHY" we have web and client server app, supports power builder and on windows OS so this is the background of tech and envir things we have and now VSTET is good to use or not? if "NO" then tell me why

2271

To retrive testdata which tool vl use?

IBM,

1 5060

In realtime what is the Testing Process especially in automation plz its very urgent

IBM,

1 6683

wat is difrenc btwn test case and test senario . can anybody know the answer just post it

3 5780

can any one tell me the examples of white box testing

2486

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

2052

What are the steps to perform Load and Stress testing on a Website? What resources do I need to do this? Please advise. Thanks in advance.

2004

How to download QTP 9.5 Trail version? please explain the complete process?

2074

what is the dictionary objects in QTP? and what is method of vb script using virtual object wizard........

Quintegra,

1969

i need test cases for defect maganement tools

2063

Hi, I am working as QA Engineer in Bangalore having around 2 yrs of experience in manual testing. I wanted to learn automation tool side by side which currently has value in market. Can anybody suggest good automation tool to learn and institute in Bangalore? Thanks in advance, bbn

2 5799

test cases test wheather window? test cases to test calculaor? test cases to test a reverse string program? test cases to test program{ int.parse(sting str) $return (int)}? test cases to test program{display string length}?

Adobe, Microsoft,

2299

Hi This is raghu.Now am learning the QTP.Please let me know any one how to write the VB Scripts. & Please let me know about the QTP Frame work ( Key word driven frame work) in Detail. Thanks, Raghu(786)

iGate,

2171


Post New Automation Testing AllOther Questions

Un-Answered Questions { Automation Testing AllOther }

Tell me how can we find the value of different attributes like name, class, value of an element?

1025


How do select which automation testing tool is the best for you?

995


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

2515


can anyone suggest me any low cost tool that can support both Manual and Automation testing ?

1991


can any one please tell me QTP 9.2 supports which version of IE and Mozilla firefox.

2218


1. How would you Test & then automate an antivirus application? 2. How would u test & automate windows screen saver? (expected: "test scenarios" & "test approch": points)

2129


Tell us how can you find if an element is displayed on the screen?

989


4. How we implement Winrunner,in our project?

2471


Name some of the commonly used automation testing tools that are used for non-functional automation.

1022


Does every software project need testers?

1001


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

979


What are the most popular tools for automation testing?

1018


Do you know the difference between close and quit command?

986


Tell me which web driver implementation is the fastest?

999


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

2621