Re: [m2] Selenium, profiles and executing certain browsers on certain OSs

2007-03-06 Thread mraible
My current setup only executes Cargo and Selenium when -Dmaven.test.skip=true is not passed in. If I move the information to the regular part of my pom.xml, do I leave the information in profiles? After adding another profile for Selenium on OS X (for Safari), my "integration-testing" section

Re: Selenium, profiles and executing certain browsers on certain OSs

2007-03-06 Thread Eric Redmond
Sure... pull the build configurations out of the profiles into the project build and replace the ant config values with properties... then use the profiles to set those property values. Eric On 3/6/07, mraible <[EMAIL PROTECTED]> wrote: I'm using the Ant task to run some Selenium tests in my

Selenium, profiles and executing certain browsers on certain OSs

2007-03-06 Thread mraible
I'm using the Ant task to run some Selenium tests in my project. I want tests to run in Firefox on all platforms, and Firefox and IE when running on Windows. I've got everything working using the XML below, but it's quite verbose. Is there a way to simplify, or is this the recommended strategy