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

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

SeleniumTestCase and other browsers

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