On Thu, Jul 03, 2008 at 04:41:27AM -0700, richardwilko wrote:
> 
> hi,
> 
> I've used selenium in the past and I do like it.  However it uses domIds
> quite a bit, and as these are autogenerated by wicket they can prove
> troublesome.  For example, you might get a test working, then add a new
> component to the page, which then changes all the dom ids on the page,
> breaking all your tests.  I know that you can specify a static domId in the
> wicket code, but I would be interested to hear how other people have solved
> / got around this problem.  I had thought about using wickettester at the
> same time as selenium and using this to get the correct domids, but that
> didnt seem like a very good way of doing things.
> 
> Richard

I find that for Wicket form components the name attribute is more
predictable than the ID, and from Selenium's point-of-view they're
interchangable.  Unfortunately, Selenium IDE defaults to using the ID,
so now I tend to just write my scripts by hand while looking at the page
source.

jk

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to