What version of Selenium are you using? Since 0.4 the "click" command doesn't wait by default. So in earlier versions you did: | click | radio | nowait | | click | submit | |
but now you do: | click | radio | | | clickAndWait | submit | | A hanging test may be caused by Selenium waiting when you click the radio button. ciao Daz On 6/30/05, priya sumal <[EMAIL PROTECTED]> wrote: > Hello, > First let me thank you for creating Selenium. It is a great product. I > tested out a bunch of the automated testing tools on our product. Selenium > was one of the more easier and better tools to manipulate, learn and use, > especially with our product. Everyone in my group can use it. So thank you! > Now to my problem, I understand that 'click' can be used for radio buttons, > but TestRunner seems to hang after the radio button is selected, I have to > select the next/continue button for the test to move on (this is just an > inconvience and annoying). Also, I have tried using 'clicknowait', and the > radio button wasn't selected at all. Any suggestions? > Thanks for any and all help, > Priya > > ________________________________ > Yahoo! Sports > Rekindle the Rivalries. Sign up for Fantasy Football > > > _______________________________________________ > Selenium-users mailing list > [email protected] > http://lists.public.thoughtworks.org/mailman/listinfo/selenium-users > > > _______________________________________________ Selenium-users mailing list [email protected] http://lists.public.thoughtworks.org/mailman/listinfo/selenium-users
