You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by sm...@apache.org on 2020/05/13 18:32:55 UTC

[directory-fortress-commander] branch master updated: update selenium test section.

This is an automated email from the ASF dual-hosted git repository.

smckinney pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/directory-fortress-commander.git


The following commit(s) were added to refs/heads/master by this push:
     new 47ab6d8  update selenium test section.
47ab6d8 is described below

commit 47ab6d88cbd2975874b45249037e4ad4a4afb7e8
Author: Shawn McKinney <sm...@symas.com>
AuthorDate: Wed May 13 13:32:48 2020 -0500

    update selenium test section.
---
 README.md | 16 +---------------
 1 file changed, 1 insertion(+), 15 deletions(-)

diff --git a/README.md b/README.md
index 294384e..eff0499 100644
--- a/README.md
+++ b/README.md
@@ -208,21 +208,7 @@ ________________________________________________________________________________
 ___________________________________________________________________________________
 ## SECTION 6. Test with Selenium
 
-1. There version of Webdriver being used for Selenium now requires downloading and installing the gecko (firefox) and/or chrome drivers as separate binary packages. For more info:
-https://github.com/bonigarcia/webdrivermanager
-
-2. Once that download has been completed, you will need to set the location of the driver as a system.property.
- For example, these lines may need to be added to the FortressWebSeleniumITCase test class, or set via other means:
-
- ```
-     @BeforeClass
-     public static void setupClass()
-     {
-         System.setProperty("webdriver.gecko.driver", "/home/user/drivers/geckodriver");
-         System.setProperty( "webdriver.chrome.driver", "/home/user/drivers/chromedriver");
-         ...
-     }
- ```
+1. Fortress Web uses [WebDriverManager](https://github.com/bonigarcia/webdrivermanager#webdrivermanager-as-java-dependency) to manage the Selenium drivers.
 
 2. Run the Selenium Web driver integration tests with Firefox (default):