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

WebDriverException solution documented #4

Merged
merged 2 commits into from
Feb 10, 2018
Merged
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
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,15 @@ Open your browser and go to the given URL when the platform is up.
* Go to your user interface(by default: http://localhost:9000)
* Click on Diagram on the left-side menu
* Click on execute

If you are using firefox web browser you may encounter an error like

> "WebDriverException: Message: 'geckodriver' executable needs to be in PATH"
In such a case, download the latest version of geckodriver from [here](https://github.com/mozilla/geckodriver/releases)

* If you are using ubuntu just do the following after the download:

> export PATH=$PATH:/path/to/directory/of/executable/downloaded/in/previous/step
* If using windows, then you can check [this](https://www.windows-commandline.com/set-path-command-line/) to know how to set path in Windows command prompt.