Skip to content

Commit

Permalink
Support custom Selenium webDriverFactory and Update version to 3.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
nickebbutt committed Jun 11, 2019
1 parent 8820430 commit 724d5d3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,8 @@ public String getUserName() {
@ConfigProperty(
name="userName",
description = "User Name to provide if remote component's JMX server requires authentication",
mandatory = false
mandatory = false,
order = 70
)
public void setUserName(String userName) { this.userName = userName; }

Expand All @@ -187,7 +188,8 @@ public String getPassword() {
@ConfigProperty(
name="password",
description = "Password to provide if remote component's JMX server requires authentication",
mandatory = false
mandatory = false,
order = 80
)
public void setPassword(String password) { this.password = password; }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -224,16 +224,16 @@ at the top level on your classpath. Here you could list all your UAT components,
<td>One of: SCENARIO, FEATURE</td>
</tr>
<tr>
<td>password</td>
<td>userName</td>
<td>no</td>
<td>Password to provide if remote component's JMX server requires authentication</td>
<td>User Name to provide if remote component's JMX server requires authentication</td>
<td></td>
<td></td>
</tr>
<tr>
<td>userName</td>
<td>password</td>
<td>no</td>
<td>User Name to provide if remote component's JMX server requires authentication</td>
<td>Password to provide if remote component's JMX server requires authentication</td>
<td></td>
<td></td>
</tr>
Expand Down

0 comments on commit 724d5d3

Please sign in to comment.