|
View:
New views
12 Messages
—
Rating Filter:
Alert me
|
|
|
selenium plugin?Is this plugin available for maven 2?
-- Thanks DJ MICK http://www.djmick.com http://www.myspace.com/mickknutson |
|
|
RE: selenium plugin?In the latest version of Selenium (using Selenium Remote Control or
"RC") tests run in JUnit or TestNG... Maven already has plugins for those. Just write your tests and use "mvn test" to run them. -Dan > -----Original Message----- > From: Mick Knutson [mailto:mickknutson@...] > Sent: Friday, October 20, 2006 3:06 PM > To: maven > Subject: selenium plugin? > > Is this plugin available for maven 2? > > -- > > Thanks > > DJ MICK > http://www.djmick.com > http://www.myspace.com/mickknutson Notice: This email message, together with any attachments, may contain information of BEA Systems, Inc., its subsidiaries and affiliated entities, that may be confidential, proprietary, copyrighted and/or legally privileged, and is intended solely for the use of the individual or entity named in this message. If you are not the intended recipient, and have received this message in error, please immediately return this by email and then delete it. --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@... For additional commands, e-mail: users-help@... |
|
|
Re: selenium plugin?Where did you put selimuim then?
I made a whole sub project for it and deploy a war file. Sounds like I went the wRong way. On 10/20/06, Dan Fabulich <dfabulic@...> wrote: > > In the latest version of Selenium (using Selenium Remote Control or > "RC") tests run in JUnit or TestNG... Maven already has plugins for > those. Just write your tests and use "mvn test" to run them. > > -Dan > > > -----Original Message----- > > From: Mick Knutson [mailto:mickknutson@...] > > Sent: Friday, October 20, 2006 3:06 PM > > To: maven > > Subject: selenium plugin? > > > > Is this plugin available for maven 2? > > > > -- > > > > Thanks > > > > DJ MICK > > http://www.djmick.com > > http://www.myspace.com/mickknutson > _______________________________________________________________________ > Notice: This email message, together with any attachments, may contain > information of BEA Systems, Inc., its subsidiaries and affiliated > entities, that may be confidential, proprietary, copyrighted and/or > legally privileged, and is intended solely for the use of the individual > or entity named in this message. If you are not the intended recipient, > and have received this message in error, please immediately return this > by email and then delete it. > > --------------------------------------------------------------------- > To unsubscribe, e-mail: users-unsubscribe@... > For additional commands, e-mail: users-help@... > > -- Thanks DJ MICK http://www.djmick.com http://www.myspace.com/mickknutson |
|
|
Re: selenium plugin?On 10/20/06, Mick Knutson <mickknutson@...> wrote:
> Where did you put selimuim then? > I made a whole sub project for it and deploy a war file. Sounds like I went > the wRong way. Not wrong, just different. :) You might want to look at how we've set up Selenium tests for the Shale and MyFaces example apps. There is some information on the wiki: http://docs.codehaus.org/display/MAVENUSER/Maven+and+Selenium We're set up with HostedQA to run the tests remotely on various browsers. I'm not sure what running Selenium tests in JUnit buys you, since what I'm interested in is whether the complicated JavaScript stuff in JSF components works in IE6, IE 7, Firefox, etc. -- Wendy --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@... For additional commands, e-mail: users-help@... |
|
|
RE: selenium plugin?In Selenium RC, you don't have to put Selenium into your WAR. You just
run JUnit tests. Take a look here: http://www.openqa.org/selenium-rc/ -Dan -----Original Message----- From: Mick Knutson [mailto:mickknutson@...] Sent: Friday, October 20, 2006 3:20 PM To: Maven Users List Subject: Re: selenium plugin? Where did you put selimuim then? I made a whole sub project for it and deploy a war file. Sounds like I went the wRong way. On 10/20/06, Dan Fabulich <dfabulic@...> wrote: > > In the latest version of Selenium (using Selenium Remote Control or > "RC") tests run in JUnit or TestNG... Maven already has plugins for > those. Just write your tests and use "mvn test" to run them. > > -Dan > > > -----Original Message----- > > From: Mick Knutson [mailto:mickknutson@...] > > Sent: Friday, October 20, 2006 3:06 PM > > To: maven > > Subject: selenium plugin? > > > > Is this plugin available for maven 2? > > > > -- > > > > Thanks > > > > DJ MICK > > http://www.djmick.com > > http://www.myspace.com/mickknutson > > Notice: This email message, together with any attachments, may contain > information of BEA Systems, Inc., its subsidiaries and affiliated > entities, that may be confidential, proprietary, copyrighted and/or > legally privileged, and is intended solely for the use of the individual > or entity named in this message. If you are not the intended recipient, > and have received this message in error, please immediately return this > by email and then delete it. > > --------------------------------------------------------------------- > To unsubscribe, e-mail: users-unsubscribe@... > For additional commands, e-mail: users-help@... > > -- Thanks DJ MICK http://www.djmick.com http://www.myspace.com/mickknutson _______________________________________________________________________ Notice: This email message, together with any attachments, may contain information of BEA Systems, Inc., its subsidiaries and affiliated entities, that may be confidential, proprietary, copyrighted and/or legally privileged, and is intended solely for the use of the individual or entity named in this message. If you are not the intended recipient, and have received this message in error, please immediately return this by email and then delete it. --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@... For additional commands, e-mail: users-help@... |
|
|
Re: selenium plugin?We in Geronimo 1.2 also use Selenium in our testsuite. We have created
a selenium-maven-plugin to start selenium. http://geronimo.apache.org/maven/server/maven-plugins/selenium-maven-plugin/index.html We use TestNG to run the tests. Check out the following links for a basic example. http://svn.apache.org/viewvc/geronimo/server/trunk/testsuite/console-testsuite/ Remeber that this is in trunk. So this is work in progress. Cheers Prasad On 10/20/06, Mick Knutson <mickknutson@...> wrote: > Is this plugin available for maven 2? > > -- > > Thanks > > DJ MICK > http://www.djmick.com > http://www.myspace.com/mickknutson > > --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@... For additional commands, e-mail: users-help@... |
|
|
Re: selenium plugin?Can you move this plugin in MOJO project?
Emmanuel Prasad Kashyap a écrit : > We in Geronimo 1.2 also use Selenium in our testsuite. We have created > a selenium-maven-plugin to start selenium. > > http://geronimo.apache.org/maven/server/maven-plugins/selenium-maven-plugin/index.html > > > We use TestNG to run the tests. Check out the following links for a > basic example. > http://svn.apache.org/viewvc/geronimo/server/trunk/testsuite/console-testsuite/ > > > Remeber that this is in trunk. So this is work in progress. > > Cheers > Prasad > > On 10/20/06, Mick Knutson <mickknutson@...> wrote: >> Is this plugin available for maven 2? >> >> -- >> >> Thanks >> >> DJ MICK >> http://www.djmick.com >> http://www.myspace.com/mickknutson >> >> > > --------------------------------------------------------------------- > To unsubscribe, e-mail: users-unsubscribe@... > For additional commands, e-mail: users-help@... > > > > --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@... For additional commands, e-mail: users-help@... |
|
|
Re: Re: selenium plugin?You can have a look at mavenium. It's a simple plugin that lets you
use Selenium-IDE HTML tests in your maven webapp project and integrates in maven's build life cycle, stopping it whenever a test fails. Upload to the maven central repository pending. http://mavenium.sourceforge.net/ David 2006/10/24, Emmanuel Venisse <emmanuel@...>: > Can you move this plugin in MOJO project? > > Emmanuel > > Prasad Kashyap a écrit : > > We in Geronimo 1.2 also use Selenium in our testsuite. We have created > > a selenium-maven-plugin to start selenium. > > > > http://geronimo.apache.org/maven/server/maven-plugins/selenium-maven-plugin/index.html > > > > > > We use TestNG to run the tests. Check out the following links for a > > basic example. > > http://svn.apache.org/viewvc/geronimo/server/trunk/testsuite/console-testsuite/ > > > > > > Remeber that this is in trunk. So this is work in progress. > > > > Cheers > > Prasad > > > > On 10/20/06, Mick Knutson <mickknutson@...> wrote: > >> Is this plugin available for maven 2? > >> > >> -- > >> > >> Thanks > >> > >> DJ MICK > >> http://www.djmick.com > >> http://www.myspace.com/mickknutson > >> > >> > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: users-unsubscribe@... > > For additional commands, e-mail: users-help@... > > > > > > > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: users-unsubscribe@... > For additional commands, e-mail: users-help@... > > --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@... For additional commands, e-mail: users-help@... |
|
|
Re: Re: selenium plugin?looks like mavenium and selenium-maven-plugin at
http://svn.codehaus.org/mojo/trunk/mojo/selenium-maven-plugin/ may want to merge. -D On 12/8/06, David <davidst@...> wrote: > > You can have a look at mavenium. It's a simple plugin that lets you > use Selenium-IDE HTML tests in your maven webapp project and > integrates in maven's build life cycle, stopping it whenever a test > fails. > > Upload to the maven central repository pending. > > http://mavenium.sourceforge.net/ > > > David > > 2006/10/24, Emmanuel Venisse <emmanuel@...>: > > Can you move this plugin in MOJO project? > > > > Emmanuel > > > > Prasad Kashyap a écrit : > > > We in Geronimo 1.2 also use Selenium in our testsuite. We have created > > > a selenium-maven-plugin to start selenium. > > > > > > > http://geronimo.apache.org/maven/server/maven-plugins/selenium-maven-plugin/index.html > > > > > > > > > We use TestNG to run the tests. Check out the following links for a > > > basic example. > > > > http://svn.apache.org/viewvc/geronimo/server/trunk/testsuite/console-testsuite/ > > > > > > > > > Remeber that this is in trunk. So this is work in progress. > > > > > > Cheers > > > Prasad > > > > > > On 10/20/06, Mick Knutson <mickknutson@...> wrote: > > >> Is this plugin available for maven 2? > > >> > > >> -- > > >> > > >> Thanks > > >> > > >> DJ MICK > > >> http://www.djmick.com > > >> http://www.myspace.com/mickknutson > > >> > > >> > > > > > > --------------------------------------------------------------------- > > > To unsubscribe, e-mail: users-unsubscribe@... > > > For additional commands, e-mail: users-help@... > > > > > > > > > > > > > > > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: users-unsubscribe@... > > For additional commands, e-mail: users-help@... > > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: users-unsubscribe@... > For additional commands, e-mail: users-help@... > > |
|
|
Re: Re: Re: selenium plugin?Hmmm... haven't been able to access the website URL specified at their
pom: http://mojo.codehaus.org/selenium-maven-plugin > > > On 12/8/06, David <davidst@...> wrote: > > > > You can have a look at mavenium. It's a simple plugin that lets you > > use Selenium-IDE HTML tests in your maven webapp project and > > integrates in maven's build life cycle, stopping it whenever a test > > fails. > > > > Upload to the maven central repository pending. > > > > http://mavenium.sourceforge.net/ > > > > > > David > > > > 2006/10/24, Emmanuel Venisse <emmanuel@...>: > > > Can you move this plugin in MOJO project? > > > > > > Emmanuel > > > > > > Prasad Kashyap a écrit : > > > > We in Geronimo 1.2 also use Selenium in our testsuite. We have created > > > > a selenium-maven-plugin to start selenium. > > > > > > > > > > http://geronimo.apache.org/maven/server/maven-plugins/selenium-maven-plugin/index.html > > > > > > > > > > > > We use TestNG to run the tests. Check out the following links for a > > > > basic example. > > > > > > http://svn.apache.org/viewvc/geronimo/server/trunk/testsuite/console-testsuite/ > > > > > > > > > > > > Remeber that this is in trunk. So this is work in progress. > > > > > > > > Cheers > > > > Prasad > > > > > > > > On 10/20/06, Mick Knutson <mickknutson@...> wrote: > > > >> Is this plugin available for maven 2? > > > >> > > > >> -- > > > >> > > > >> Thanks > > > >> > > > >> DJ MICK > > > >> http://www.djmick.com > > > >> http://www.myspace.com/mickknutson > > > >> > > > >> > > > > > > > > --------------------------------------------------------------------- > > > > To unsubscribe, e-mail: users-unsubscribe@... > > > > For additional commands, e-mail: users-help@... > > > > > > > > > > > > > > > > > > > > > > > > > --------------------------------------------------------------------- > > > To unsubscribe, e-mail: users-unsubscribe@... > > > For additional commands, e-mail: users-help@... > > > > > > > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: users-unsubscribe@... > > For additional commands, e-mail: users-help@... > > > > > > --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@... For additional commands, e-mail: users-help@... |
|
|
Re: Re: Re: selenium plugin?On 09/12/06, David <davidst@...> wrote:
> Hmmm... haven't been able to access the website URL specified at their > pom: http://mojo.codehaus.org/selenium-maven-plugin Try now, I've just deployed the site. It's documentation is a bit thin on the ground though.. Mark --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@... For additional commands, e-mail: users-help@... |
|
|
Re: Re: selenium plugin?I don't think there is really much to merge... just peeked at the source for mavenium and there isn't much there. Also appears that its trying to run tests with Selenium, which is not the point of the selenium-maven-plugin, all we do is start the server for remote access, then use the Java API to control Selenium and drive the process from surefire.
I will add an example to the site docs so this is clearer. --jason
|
| Free embeddable forum powered by Nabble | Forum Help |