Re: SeleniumTestCase and other browsers

2010-12-25 Thread Christian Riedel
If you are using 5.2 you should have a look at SeleniumTestCase:
http://tapestry.apache.org/tapestry5.2-dev/apidocs/org/apache/tapestry5/test/SeleniumTestCase.html#testStartup(org.testng.ITestContext,%20org.testng.xml.XmlTest)

Christian

Am 25.12.2010 um 15:04 schrieb Mark:

 Is there an easy way to tell tapestry-test to use Google Chrome instead of
 Firefox?
 
 Mark


-
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org



Re: SeleniumTestCase and other browsers

2010-12-25 Thread Aleksandra Mrkic
Hi Mark!

Try to change browser *from *firefox to* googlechrome* in setUp() method
like this:

public void setUp() throws Exception {
setUp(http://localhost:8080/projectname/;, googlechrome***);// or
try with *chrome instead of *googlechrome
 }


Take a look at this very useful Firefox plugin, because he can generate a
code of Selenium tests.
http://seleniumhq.org/docs/03_selenium_ide.html#running-test-cases.

Regards,
Aleksandra Mrkić





2010/12/25 Mark mark-li...@xeric.net

 Is there an easy way to tell tapestry-test to use Google Chrome instead of
 Firefox?

 Mark