Skip to content
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

update build name #17

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ concierge.exe
logs/
nucleus.log
artifacts
.idea
2 changes: 1 addition & 1 deletion src/test/java/Test1.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public void testSetUp(String browser, String version, String platform, String re

DesiredCapabilities capabilities = new DesiredCapabilities();

capabilities.setCapability("build", "[HyperExecute - 1] Demonstration of the TestNG Framework");
capabilities.setCapability("build", "testng-selenium-hyperexecute-sample");
capabilities.setCapability("name", "[HyperExecute - 1] Demonstration of the TestNG Framework");
capabilities.setCapability("platform", System.getenv("HYPEREXECUTE_PLATFORM"));
capabilities.setCapability("browserName", browser);
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/Test2.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public void testSetUp(String browser, String version, String platform, String re
String platformName = System.getenv("HYPEREXECUTE_PLATFORM") != null ? System.getenv("HYPEREXECUTE_PLATFORM") : platform;

DesiredCapabilities capabilities = new DesiredCapabilities();
capabilities.setCapability("build", "[HyperExecute - 2] Demonstration of the TestNG Framework");
capabilities.setCapability("build", "testng-selenium-hyperexecute-sample");
capabilities.setCapability("name", "[HyperExecute - 2] Demonstration of the TestNG Framework");

capabilities.setCapability("platform", System.getenv("HYPEREXECUTE_PLATFORM"));
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/Test3.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public void testSetUp(String browser, String version, String platform, String re
String platformName = System.getenv("HYPEREXECUTE_PLATFORM") != null ? System.getenv("HYPEREXECUTE_PLATFORM") : platform;

DesiredCapabilities capabilities = new DesiredCapabilities();
capabilities.setCapability("build", "[HyperExecute - 3] Demonstration of the TestNG Framework");
capabilities.setCapability("build", "testng-selenium-hyperexecute-sample");
capabilities.setCapability("name", "[HyperExecute - 3] Demonstration of the TestNG Framework");

capabilities.setCapability("platform", System.getenv("HYPEREXECUTE_PLATFORM"));
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/Test4.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public void testSetUp(String browser, String version, String platform, String re
String platformName = System.getenv("HYPEREXECUTE_PLATFORM") != null ? System.getenv("HYPEREXECUTE_PLATFORM") : platform;

DesiredCapabilities capabilities = new DesiredCapabilities();
capabilities.setCapability("build", "[HyperExecute - 4] Demonstration of the TestNG Framework");
capabilities.setCapability("build", "testng-selenium-hyperexecute-sample");
capabilities.setCapability("name", "[HyperExecute - 4] Demonstration of the TestNG Framework");

capabilities.setCapability("platform", System.getenv("HYPEREXECUTE_PLATFORM"));
Expand Down