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 Interview Questions
Questions Answers Views Company eMail

Please anybody can tell the where can i get the information about pharma and bank testing, i put the pharma&bank projects in my resume, so i dont know what to tell about them, so where can i get the information and what we test for these, i need domain information, what r the screen we test?

1856

hi, which opensource tool is used for load testing. Will any one guide me for learning how to do load testing. Thanks in advance

2 5492

If it is possible to test 5000 vuser through single machine? Then how you can test? plz explain

2 6738

If client is not given in the requirement? In that case how you are going to perform performance testing?

Wipro,

4 9004

what is the extension of new local object repository?

5 7936

Hi, I am new into the field of testing and I need to know how can I begin automating the testing of Mainframe applications using QTP. Can anyone help me?

1953

Write Descriptiv prg 4 login logn....txt bx password---txt bx ok---btn

Hewitt,

2 7263

What are the Limitations/Disadvantages of Rational Function Test?

IBM,

7110

If I want to run more than one test (With different functionality) with in one script, then what i do? plz. explain with any example.

4 6250

what is bandwidth in loadrunner.

IBM,

2 10469

who is developed QTP ? is it from Mecury or HP

2 15022

I have a 10 lines of qtp script, while executing i got an error at line 7 but i dont want to stop the execution i want to continue the execution up to last line and display the test result window, wts the syntax we use?

BirlaSoft, Collabera,

3 17833

Hi, Has anybody attended IBM interview on 17th APR 2010,and got offer letter? I had given interview and selected also but still did not recieve offer letter.

IBM,

5 8172

What is the entry criteria and exit criteria for your test automation

HP, Virtusa,

2 32426

Write a QTP script to print all the link names displayed in a web page

TCS, Virtusa,

4 42609


Un-Answered Questions { Automation Testing }

What is vendor tool and give examples?

1146


If i am doing the automation of test suites in a project. Then what will be the system interfaces for that?? The tools I am using or something else... please help..!!

2239


what types of documents we need to write the nonfuntional test scripts?

2036


What are the differences between quicktest professional and winrunner?

1062


What type of scenarios can't be automated?

1213


Whats the realtime QTP testing process

2515


Which test cases can be automated?

1058


During run time where the hosts saves the files?

1140


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

2275


Which are online monitors and windows resource monitors

1544


What are the changes that can be made to run-time settings?

1103


Is there any way of passing values at runtime? Like scanf does in C.

2802


Can any one give me the script for drag and drop or setselection functions ?like in a not pad i want to select 5 lines

2045


What is the difference between lr_error_message and lr_debug _message?

1132


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

2680