selenium « Development « Maven/Ant Q&A

Home
Maven/Ant Q&A
1.Ant
2.artifact
3.dependency
4.deploy
5.Development
6.eclipse
7.glassfish
8.hudson
9.integration
10.jetty
11.junit
12.m2eclipse
13.module
14.netbeans
15.package
16.plugin
17.POM
18.repository
19.svn
Maven/Ant Q&A » Development » selenium 

1. Selenium Grid + Maven 2    stackoverflow.com

Is there a good tutorial or does anyone have experience with setting this up ? I have a Testsuite.html which launches my tests in one browser atm. This is done in the ...

2. Maven Selenium HTTPS    stackoverflow.com

I am testing my web application's security and all of my pages are served over ssl. The issue I am having is the certificate is not trusted as firefox starts ...

3. Symbol not found: when running selenium with maven    stackoverflow.com

Hi I'm getting a symbol not found error, when running mvn -e integration-test. Why could this happen if the package is in my repository? I have tried downloading it and installing ...

4. Building Current Selenium?    stackoverflow.com

On the official Selenium blog (http://seleniumhq.wordpress.com/) it mentions that Maven is no longer used to build the Selenium project. Can anyone provide me some guidance on the new preferred method for ...

5. Selenium RC testing with Maven    stackoverflow.com

I'm trying to run a series of selenium tests using maven and I get this error:

Running com.myapp.web.selenium.MySeleniumTest
WARN  [SocketListener0-1] HttpConnection - POST /selenium-server/driver/ HTTP/1.1
java.lang.RuntimeException: Firefox refused shutdown while preparing a profile
 ...

6. How do I get Maven to run Selenium tests in Firefox 3.6?    stackoverflow.com

Question partly answered in http://stackoverflow.com/questions/3481851/selenium-rc-testing-with-maven - basically stating go back to using Firefox 3.5 (but one answer suggesting that does not work). Not an option anyway - 3.6.8 is what ...

7. Running a single test in maven -> No tests were executed!    stackoverflow.com

When I run a single test in Maven with this command:

mvn test -Dtest=InitiateTest
I'm getting the following result:
No tests were executed!
It worked a couple of minutes ago, but now it stopped working ...

8. Where to keep Page Objects in a Maven project    stackoverflow.com

I'm using the Page Objects approach with Selenium2 and wondering the best way to organize the page objects in the Maven project structure. I currently have a completely ...

9. What is the "official" way to use Selenium 2 (Selenium WebDriver) with Maven?    stackoverflow.com

I'm just trying to make the basic Selenium2Example work with Firefox 4 using Maven to get the Selenium jars :

public class Selenium2Example  {
    public static void main(String[] ...

10. How can I run HTML Selenese Tests using Selenium 2.0 and Maven?    stackoverflow.com

I have a series of HTML tests that I am able to run using the selenese goal, selenium-maven-plugin (version 1.1). I was able to run this for IE. However, this doesn't ...

11. Measuring code coverage for selenium tests that reside in separate project    stackoverflow.com

I have two separate java maven projects: one is my web app itself and other one is tellurium+selenium automation tests for my web(I moved these tests to separate projects as their ...

12. Running Selenium RC with maven - having certificate issue for https site    stackoverflow.com

I am trying to set up automatic java testing with Selenium RC. Since my site is using https, I get an annoying certificate popup that I have to remove before the ...

13. selenium html test using maven    stackoverflow.com

I am trying to run selenium html test using maven my pom is asl following:

<parent>
    <groupId>id</groupId>
    <artifactId>asap-root</artifactId>
    <version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>yyyy</groupId>
<artifactId>zzzz</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>asap-webtest</name>
<scm>
    <connection>xxxx</connection>
  ...

14. Maven structure for automated UI test    stackoverflow.com

I have got to know that src/test/java is used for writing unit tests. I was wondering if I should use same location for automated UI tests I write in Selenium. And if so ...

15. how to run tests parallel with maven and testNG?    stackoverflow.com

iwant to run test classes in parallel as i set up all with the snippet of testNG.xml

<suite name="Tests" verbose="1" parallel="tests" thread-count="2">
<test name="test-2" parallel="classes" thread-count="3">
<classes>
<class name="test.java.TestCase1"/>
<class name="test.java.TestCase2"/>
<class name="test.java.TestCase3"/>
</classes>
</test>  
<test name="test-3" parallel="classes" ...

16. starting selenium hub from maven with console    stackoverflow.com

I do not get the web console for the hub when I run this code:

    <profile>
        <id>server</id>
   ...

java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.