We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64db763 commit 45b93d1Copy full SHA for 45b93d1
2 files changed
pom.xml
@@ -70,6 +70,11 @@
70
<groupId>org.apache.maven.plugins</groupId>
71
<artifactId>maven-surefire-plugin</artifactId>
72
<version>${maven.surefire.version}</version>
73
+ <configuration>
74
+ <systemPropertyVariables>
75
+ <webdriver.chrome.verboseLogging>true</webdriver.chrome.verboseLogging>
76
+ </systemPropertyVariables>
77
+ </configuration>
78
</plugin>
79
80
<!--
src/test/java/com/eviltester/webdriver/basicsOfPageObjects/UsingPageObjectsTest.java
@@ -12,7 +12,6 @@ public class UsingPageObjectsTest {
12
13
@BeforeAll
14
public static void initiateWebDriver(){
15
- System.setProperty("webdriver.chrome.verboseLogging", "true");
16
driver = new ChromeDriver();
17
}
18
0 commit comments