Symbol not found: when starting selenium with maven

Hi, I get a symbol for an error not found at startup mvn -e integration-test. Why can this happen if the package is in my repository? I tried to download it and install it manually, but it does not matter. Is this a common mistake in maven?

I am using the home version of vista,

Error message

[INFO] ------------------------------------------------------------------------
[ERROR] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Compilation failure
D:\MyWorks\steps\step6\functest\src\it\com\mycompany\app\functest\FirstTest.java:[22,25] cannot find symbol
symbol  : constructor SeleniumServer(int)
location: class org.openqa.selenium.server.SeleniumServer

Used tutorial. http://binil.wordpress.com/2006/12/08/automated-smoke-tests-with-selenium-cargo-testng-and-maven/

P

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <parent>
    <artifactId>myapp</artifactId>
    <groupId>com.mycompany</groupId>
    <version>1.0-SNAPSHOT</version>
  </parent>

 <artifactId>functest</artifactId>
  <name>functional-tests</name>
  <packaging>pom</packaging>

  <dependencies>
    <dependency>
      <groupId>org.seleniumhq.selenium.client-drivers</groupId>
      <artifactId>selenium-java-client-driver</artifactId>
      <version>1.0</version>
      <scope>test</scope>
    </dependency>

     <dependency>
      <groupId>org.openqa.selenium.server</groupId>
      <artifactId>selenium-server</artifactId>
      <version>1.0.1</version>
      <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>org.testng</groupId>
      <artifactId>testng</artifactId>
      <version>5.1</version>
      <scope>test</scope>
      <classifier>jdk15</classifier>
    </dependency>
  </dependencies>

  <build>
    <testSourceDirectory>src/it</testSourceDirectory>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <executions>
          <execution>
            <goals>
              <goal>testCompile</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <source>1.5</source>
          <target>1.5</target>
        </configuration>
      </plugin>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>2.4.3</version>
        <executions>
          <execution>
            <phase>integration-test</phase>
            <goals>
              <goal>test</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <suiteXmlFiles>
            <suiteXmlFile>src/it/testng.xml</suiteXmlFile>
          </suiteXmlFiles>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>

PATH for the selenium server class on my machine. Everything is there, I checked.

.m2 \ repository \ org \ OpenQA \\ selenium server \ selenium server \ 1.0.1 \ selenium server 1.0.1.jar \ org \ OpenQA \\ selenium server \

+3
3

(org.openqa.selenium.server.SeleniumServer) - .

, , , - -java-- 0.9. , , int, 1.0.1.

0.9, , API, 1.0.1 .

Javadoc 1.0 ( 0.9 ), , ( int ) :

**main**

public static void main(java.lang.String[] args)
             throws java.lang.Exception

Starts up the server on the specified port (or default if no port was specified) and then starts interactive mode if specified.

Parameters:
    args - - either "-port" followed by a number, or "-interactive" 
+2

, int () , (. ": 2260). no-arg SeleniumServer() SeleniumServer ( 4444 - ):

@BeforeSuite
public void startSeleniumServer() throws Exception {
  seleniumServer = new SeleniumServer();
  seleniumServer.start();
}

SeleniumServer(RemoteControlConfiguration configuration), .

+4

, SeleniumServer(int) (1.0.1), .

javadocs SeleniumServer , , .

+3

Source: https://habr.com/ru/post/1718576/


All Articles