Advertisement
zhytnytskyi

BaseTest(independent Tests)

Feb 26th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.43 KB | None | 0 0
  1. package ua.net.azhytnytskyi.housework;
  2.  
  3. import com.codeborne.selenide.Configuration;
  4.  
  5. public class BaseTest {
  6.  
  7.     public static String baseUrl = System.getProperty("selenide.baseUrl", "http://todomvc4tasj.herokuapp.com");
  8.  
  9.     {
  10.         System.setProperty("webdriver.chrome.driver", "C:/work/web drivers/chromedriver.exe");
  11.         Configuration.browser = "chrome";
  12.  
  13.         Configuration.baseUrl = baseUrl;
  14.  
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement