Hi Setya,

Since Tellurium separates test methods such as openUrl() and connectUrl()
from the DslContext class, i.e., UI module, it is fine if you put multiple
UI modules
into one test class. For example, the following code should work fine.

UiModule1 m1 = new UiModule1();
m1.defineUi();
m1.openUrl(URL1);
test code for m1
UIModule2 m2 = new UiModule2();
m2.defineUi();
m2.connectUrl(URL2);
test code for m2

Please clarify you question if this is not what you want to ask.

Thanks,

Jian


On Thu, Sep 24, 2009 at 2:47 PM, Setya <[email protected]> wrote:

>
> Hi all,
>
> We have 2 web pages which basically come from 2 completely separate
> application, we have tested each of them separately using their own UI
> module. But now it's time to test the navigation between them in
> single test case. I've checked Tellurium examples and none of them
> uses multiple UI modules in 1 test case.
>
> Is it possible to reuse the UI modules in this single test case ?
>
> Any help would be greatly appreciated.
>
>
> Regards,
>
> Setya
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"tellurium-users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/tellurium-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to