Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions src/test/java/hyperexecute/SelPlayGroundTest1.java
Original file line number Diff line number Diff line change
Expand Up @@ -59,18 +59,18 @@ public void SetUpBrowser(String browserName, String version, String platform, St
capabilities.setCapability("video", true);
capabilities.setCapability("console", true);

try
{
driver = new RemoteWebDriver(new URL("https://" + user_name + ":" + access_key + gridURL), capabilities);
}
catch (MalformedURLException e)
{
System.out.println("Invalid grid URL");
}
catch (Exception e)
{
System.out.println(e.getMessage());
}
// try
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's not add any commented code in our public repos.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is actually a required code, commented it only for a demo purpose, need to record demo from the quickstart, after which this will be uncommented

// {
// driver = new RemoteWebDriver(new URL("https://" + user_name + ":" + access_key + gridURL), capabilities);
// }
// catch (MalformedURLException e)
// {
// System.out.println("Invalid grid URL");
// }
// catch (Exception e)
// {
// System.out.println(e.getMessage());
// }

csv_source = "/test-combinations/win/junit-test-data.csv";
}
Expand Down
3 changes: 3 additions & 0 deletions yaml/linux/junit_hyperexecute_autosplit_sample.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ partialReports:
type: html
frameworkName: extent

errorCategorizedReport:
enabled: true

testDiscovery:
type: raw
mode: dynamic
Expand Down