Skip to content

Tawc #3

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 15 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
added https to url
  • Loading branch information
student committed Apr 1, 2019
commit e1060add653384376e72b83f161dbaa36bfac8b9
2 changes: 1 addition & 1 deletion src/test/java/com/safebear/auto/utils/Utils.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
public abstract class Utils {

// Get our URL and Browsername from the CI or use the default
protected static final String URL = System.getProperty("url", "localhost:8080");
protected static final String URL = System.getProperty("url", "https://localhost:8080");
private static final String BROWSERNAME = System.getProperty("browser", "chrome");
private static final String WAIT = System.getProperty( "waitTime", "10");

Expand Down