профиль maven не может получить site.url - PullRequest
0 голосов
/ 24 мая 2018

работа с Java-проектом с Maven и TestNG.Попытка поместить переменные окружения в профили maven и вызвать их с помощью mvn clean install -Pdevhost

Проблема в том, что браузер не может получить siteurl.Ошибка:

java.lang.NullPointerException: null value in entry: url=null

Профили файлов Pom:

  <build>
    <plugins>
        <plugin>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.7.0</version>
            <configuration>
                <source>1.8</source>
                <target>1.8</target>
            </configuration>
        </plugin>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>2.21.0</version>
            <configuration>
                <suiteXmlFiles>
                    <file>${project.basedir}/suites/smoke.xml</file>
                </suiteXmlFiles>
                <systemPropertyVariables>
                    <environment.properties>/environment.properties</environment.properties>
                </systemPropertyVariables>
            </configuration>
        </plugin>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
                <source>1.8</source>
                <target>1.8</target>
            </configuration>
        </plugin>
    </plugins>
    <testResources>
        <testResource>
            <directory>src\test\resources</directory>
            <filtering>true</filtering>
        </testResource>
    </testResources>

    <resources>
        <resource>
            <directory>src\test\resources</directory>
            <filtering>true</filtering>
        </resource>
    </resources>

</build>

    <!-- Profiles configuration -->
    <profiles>

        <!--Environments "mvn test -P dev3"-->

        <profile>
            <id>devhost</id>
            <activation>
                <activeByDefault>true</activeByDefault>
            </activation>
            <properties>
                <site.url>https://siteurl.com</site.url>
            </properties>
        </profile>
</profiles>

Файл со свойствами, называемыми файлом "environment.properties", находится в каталоге src / test / resources:

site.url=${site.url}

Java-класс, где драйвер получает siteurl:

public void SetUp() {


    driver = new ChromeDriver();
    System.setProperty("webdriver.chrome.driver", 
    ConfigFileReader.getDriverPath());

    driver.manage().window().maximize();

    driver.get(System.getProperty("site.url"));

    driver.manage().timeouts().implicitlyWait(40, TimeUnit.SECONDS);

1 Ответ

0 голосов
/ 30 мая 2018

Добавлен загрузчик свойств в класс java.

 PropertyLoader config = new PropertyLoader();
 baseUrl = config.getProperty("site.url");
 driver.get(baseUrl);
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...