Skip to content

Commit

Permalink
Merge pull request #86 from zebrunner/develop
Browse files Browse the repository at this point in the history
1.1.3 [archetype]
  • Loading branch information
akamarouski authored Jun 29, 2023
2 parents 3fdb257 + 4dfc01f commit c254216
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions archetype/src/main/resources/archetype-resources/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<carina-cucumber_version>1.0.0</carina-cucumber_version>
<carina-cucumber_version>1.1.3</carina-cucumber_version>
<java.version>11</java.version>
<zebrunner-agent.version>1.9.3</zebrunner-agent.version>
<zebrunner-agent.version>1.9.6</zebrunner-agent.version>
<suite>helloWorld</suite>
</properties>

Expand Down Expand Up @@ -63,7 +63,7 @@
sesssion(s) declaration -->
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>1.12.10</version>
<version>1.12.18</version>
</dependency>
</dependencies>

Expand All @@ -72,15 +72,15 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version>
<version>3.11.0</version>
<configuration>
<release>${java.version}</release>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.3.0</version>
<version>3.6.0</version>
<executions>
<execution>
<id>copy</id>
Expand All @@ -105,7 +105,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M6</version>
<version>3.1.0</version>
<configuration>
<argLine>-javaagent:${project.build.directory}/agent/zebrunner-agent.jar</argLine>
<useSystemClassLoader>false</useSystemClassLoader>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
import java.lang.invoke.MethodHandles;
import java.util.List;

import com.zebrunner.carina.utils.Configuration;
import com.zebrunner.carina.utils.R;
import com.zebrunner.carina.utils.config.Configuration;
import com.zebrunner.carina.webdriver.config.WebDriverConfiguration;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.support.FindBy;
import org.slf4j.Logger;
Expand Down Expand Up @@ -38,7 +38,7 @@ public class HomePage extends AbstractPage {
public HomePage(WebDriver driver) {
super(driver);
setUiLoadedMarker(newsColumn);
setPageAbsoluteURL(R.CONFIG.get(Configuration.Parameter.URL.getKey()));
setPageAbsoluteURL(Configuration.getRequired(WebDriverConfiguration.Parameter.URL));
}

public FooterMenu getFooterMenu() {
Expand Down

0 comments on commit c254216

Please sign in to comment.