Re: Easyb and Tellurium

2009-03-04 Thread Harihara Vinayakaram
Hi
  I have not yet tried. I hope to try this during the week end and I will
let you know the status

Regards
Hari

On Wed, Mar 4, 2009 at 10:24 PM, John  wrote:

>
> Hari,
>
> Have you got the easyb with Tellurium working? If you have, would
> you mind sharing your experience here?
>
> Thanks in advance,
>
> Jian
>
> >
>

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



Re: Easyb and Tellurium

2009-03-04 Thread John

Hari,

Have you got the easyb with Tellurium working? If you have, would
you mind sharing your experience here?

Thanks in advance,

Jian

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



Re: Easyb and Tellurium

2009-03-03 Thread John

The magic is in BaseTelluriumGroovyTestCase and
TelluriumGroovyTestCase if you use Groovy.
The above two classes handle the initialization procedure for
Tellurium.

As a result, for the following,

before "start selenium", {
 given "selenium is up and running", {
  selenium = new DefaultSelenium("localhost",
   , "*firefox", "http://acme.racing.net/greport";)
  selenium.start()
 }
}

You may want to try

before "start tellurium", {
 given "tellurium is up and running", {
  TelluriumFramework aost  = TelluriumSupport.addSupport()
  aost.start()
  SeleniumConnector connector =  aost.connector
  initUi()
 }
}

when "filling out the person form with a first and last name", {
 connector.connectUrl("http://acme.racing.net/greport/
personracereport.html")
 type("fname", "Britney")
 type("lname", "Smith")
}

after "stop tellurium" , {
 then "tellurium should be shutdown", {
 aost.stop()
 }
}

The thing is I do not really know how the DSL is implemented and how
the variable such as connector
should be passed.


On Mar 3, 2:25 am, Harihara Vinayakaram  wrote:
> Hi
>   The following page indicates how there is an integration of Selenium and
> easyb.http://code.google.com/p/easyb/wiki/SeleniumAndEasyb
> What is the method to replace the selenium.open so that I can use the
> Tellurium framework
>
> Regards
> Hari
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"tellurium-users" group.
To post to this group, send email to tellurium-users@googlegroups.com
To unsubscribe from this group, send email to 
tellurium-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tellurium-users?hl=en
-~--~~~~--~~--~--~---