I am looking for selenium RC Training in Hyderabad. can any
one tell me the best institute ?
Answer Posted / john
Yes I accept Sandhya, I am John(not interested to share my
original name) after inquiry a lot i found Kalt is
providing training on Selenium and i personally meet its
trainer Sriram 9700331521, felt confident and joined there.
Yes, he is excellent and i am sure he has lot of experience
on selenium.
After getting trained and through my hard work in both java
and selenium. i got a job in ebay Chennai. "Thanks to Sriram"
Let me share few things both Pro's and Con's.
1) Excellent Faculty Sriram.
2) He teaches Selenium with some many examples so that
everyone is clear. Almost all he teaches with suitable real
time examples. This is very important once you take the job
this tips would be helpful. (I joined one institute earlier
in Ameerpet he examples around the Google search page only).
3) Very good material
4) Support after completing the training ( i felt this very
helpful sometimes when i got struck up he used to help me
and almost all my problems got solved through his help).
5) Batch is limited to less than 4 people
Con's
1) Training takes more than 40hrs where kalt claims to
complete it by < 40hrs only (i think this is due to more
number of examples) not sure for all batches for my batch it
took 60hrs
2) Should have weekends and short term batches.
3) Little costly but affordable.
4) Daily you need to carry your laptop for doing examples. I
felt they should have some kind of lab.
I can say "GREAT WORTH FOR WHAT YOU PAY AND WHAT YOU WANT"
| Is This Answer Correct ? | 22 Yes | 11 No |
Post New Answer View All Answers
notice the distinction between data driven testing and retesting?
Write a short compiled module which selects random numbers?
What do you think holds the testers back to do automation? Is there a way to overcome it?
Tell me what is the firefoxdriver, class or an interface? And which interface does it implement?
What is data - driven automation?
How would you test your own element locator?
I am new to jmeter and i am working on .net application.I am recording the requests and pop up images data are not recording.can some one suggest an idea regarding this
Do you know how to check if a button is enabled on the page?
VSTET (Visual Studio Team Edition for Testers) which is in TFS (Team Foundation Server) - In what way is VSTET better than QTP?
Do you know what is selenese?
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 issues come up in test automation, and how do you manage them?
How can the user get a text of a web element?
can any one tell me the examples of white box testing
Tell me an example of the languages supported by webdriver?