Re: How can I specify a browser that GWT tests should be run on?

2010-07-28 Thread Damian Rodziewicz
Hey Arthur, Thanks for help! Eventually I found out that in order to test in other browsers, one has to launch the test case manually in production mode by adding the VM Arguments: -Dgwt.args="-runStyle Manual:1" This will show a link that one can paste to the browser he wants tests to be run i

Re: How can I specify a browser that GWT tests should be run on?

2010-07-27 Thread Arthur Kalmenson
Hey Damian, It doesn't look like that's possible: http://code.google.com/webtoolkit/doc/latest/DevGuideTestingHtmlUnit.html. HtmlUnit only supports emulating FF 2, FF 3 and IE 6 - 8. For doing GUI testing, I'd suggesting looking at Selenium. GWTTestCase is good for doing integration testing that i

How can I specify a browser that GWT tests should be run on?

2010-07-25 Thread Damian Rodziewicz
Hi! I am writing a GWT project that uses HTML5 canvas. To test application I use GWTTestCase. For firefox some functions are supported since gecko 1.9. While testing, firefox 3.0.1 is being used and errors occur. How can I set up GWT tests to be launched on firefox 3.6? (in Eclipse using GWT pl