Skip to content

Commit

Permalink
add changes
Browse files Browse the repository at this point in the history
  • Loading branch information
irinaBerendeeva87 committed Dec 11, 2023
1 parent ef229fd commit 4bb7e84
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/test/java/pageobject/DriverHolder.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package pageobject;

import io.github.bonigarcia.wdm.WebDriverManager;
import org.openqa.selenium.Dimension;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.chrome.ChromeOptions;
Expand All @@ -17,7 +18,7 @@ public DriverHolder() {
// options.addArguments("--headless");
driver = new ChromeDriver(options);
// driver.manage().window().fullscreen();
// driver.manage().window().setSize(new Dimension(2048,1800));
driver.manage().window().setSize(new Dimension(2048,1800));
}

public WebDriver getDriver() {
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/runner/RunTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
@CucumberOptions(
features = "src/test/resources/features",
glue = "steps",
plugin = {"pretty"}
plugin = {"pretty", "io.qameta.allure.cucumber7jvm.AllureCucumber7Jvm"}
)
public class RunTest {
}

0 comments on commit 4bb7e84

Please sign in to comment.