I am looking for selenium RC Training in Hyderabad. can any
one tell me the best institute ?
Answer Posted / rajasekhar
sriram is a fake candedate.he has taken 8000 from me aome 1 year back and he didnt teach me aNYTHING except basic java fpor me and my friend.we demanded him to give the money back ..he didnt gave anything ...worst tutor..wasted my time
| Is This Answer Correct ? | 3 Yes | 6 No |
Post New Answer View All Answers
What are the different types of scripting techniques for automation testing?
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
What kind of tests should not be automated?
What all different approaches can be used for designing an automation solution?
did anybody take online training from Mind Q systems hyderabad? please share your experience. thanks
Tell us what is the alternate way to click on login button?
What is a ‘test plan’? What is a ‘test case’?
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
Do you know what is a data-driven framework?
What are the different types of an automation tool that you are aware of?
can any one tell me the examples of white box testing
What are the primary features of good automation tool ?
What are the types of framework used in software automation testing ?
What is junit? And what is junit annotation?
Tell me how can you switch back from a frame?