This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <configuration status="WARN"> | |
| <appenders> | |
| <!-- Console Appender --> | |
| <console name="Console" target="SYSTEM_OUT"> | |
| <patternlayout pattern="%d{yyyy-MM-dd HH:mm:ss} [%t] %-5level %C{1} - %msg%n" /> | |
| </console> | |
| <!-- General File Appender --> | |
| <file name="FileLogger" filename="logs/app.log" append="true"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.orangehrm.actiondriver; | |
| import java.time.Duration; | |
| import org.openqa.selenium.By; | |
| import org.openqa.selenium.JavascriptExecutor; | |
| import org.openqa.selenium.WebDriver; | |
| import org.openqa.selenium.WebElement; | |
| import org.openqa.selenium.support.ui.ExpectedConditions; | |
| import org.openqa.selenium.support.ui.WebDriverWait; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Eclipse | |
| .classpath | |
| .project | |
| .settings/ | |
| .metadata | |
| bin/ | |
| tmp/ | |
| *.tmp | |
| *.bak |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE suite SYSTEM "https://testng.org/testng-1.0.dtd"> | |
| <suite name="OrangeHRM Suite" parallel="tests" thread-count="2"> | |
| <!-- Test 1 --> | |
| <test name="Login Tests"> | |
| <classes> | |
| <class name="com.orangehrm.tests.LoginTest"/> | |
| <class name="com.orangehrm.tests.InvalidLoginTest"/> | |
| </classes> |