Skip to content

Commit

Permalink
BaseTest.java
Browse files Browse the repository at this point in the history
  • Loading branch information
EbrahimSalem1 authored Jun 22, 2024
1 parent 725a123 commit 2f4657a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/base/BaseTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@

public class BaseTest {

public WebDriver driver;
WebDriver driver;
protected LoginPage log;
protected String url = "https://opensource-demo.orangehrmlive.com/web/index.php/auth/login";



@BeforeMethod
public void testSetUp1(){
driver = new FirefoxDriver();
driver = new ChromeDriver();
driver.get(url);
driver.manage().window().maximize();
driver.manage().timeouts().implicitlyWait(Duration.ofSeconds(7));
Expand Down

0 comments on commit 2f4657a

Please sign in to comment.