-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CLDR-17248 Change cldr-apps-webdriver system for simulated users (#31)
-New SurveyDriverCredentials.java -Simulated users have pseudo email addresses like [email protected] -See related PR 3424 for cldr -Remove cldr-add-webdrivers.sql, no longer needed -Store new CLDR_WEBDRIVER_PASSWORD in new file surveydriver.properties, not in git, see .gitignore -Avoid dependency on old survey?email... api, simulate click on Log In button instead -New methods loginWithButton, clickButtonByXpath, inputTextByXpath, getClickableElementByXpath -Update selenium-java from 4.3.0 to 4.16.1 -Simplify selenium-grid-start.sh; only one call is needed with current selenium; add --selenium-manager true -Update apache.logging.log4j from 2.17.2 to 2.20.0 -Remove gson dependency, no longer needed -Minor refactoring -Comments
- Loading branch information
Showing
6 changed files
with
216 additions
and
179 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
.DS_Store | ||
/target | ||
surveydriver.properties |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,2 @@ | ||
#!/bin/bash | ||
|
||
HUB_URL=http://localhost:4444/grid/register java -jar selenium-server-4.16.1.jar standalone & | ||
|
||
for ((PORT = 5555; PORT <= 5563; PORT++)) | ||
do | ||
HUB_URL=http://localhost:4444/grid/register java -jar selenium-server-4.16.1.jar standalone --port $PORT & | ||
done | ||
java -jar selenium-server-4.16.1.jar standalone --selenium-manager true & |
Oops, something went wrong.