Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/azawawi/raku-selenium-webdriver
Raku bindings for Selenium WebDriver
https://github.com/azawawi/raku-selenium-webdriver
raku selenium
Last synced: about 1 month ago
JSON representation
Raku bindings for Selenium WebDriver
- Host: GitHub
- URL: https://github.com/azawawi/raku-selenium-webdriver
- Owner: azawawi
- License: mit
- Created: 2015-10-14T10:27:38.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2022-09-24T10:29:05.000Z (about 2 years ago)
- Last Synced: 2024-09-30T17:38:02.015Z (about 1 month ago)
- Topics: raku, selenium
- Language: Raku
- Homepage:
- Size: 801 KB
- Stars: 13
- Watchers: 4
- Forks: 10
- Open Issues: 14
-
Metadata Files:
- Readme: README.chromedriver.md
- License: LICENSE
Awesome Lists containing this project
README
== Short setup guide for installing the chromedriver ==
= Debian based systems =
Install the Chromium browser as well as the chromedriver:
```
$ sudo apt-get install chromium-browser chromium-chromedriver
```Please remember to add `/usr/lib/chromium-browser/ to your PATH
```
$ export PATH=$PATH:/usr/lib/chromium-browser/
```Then check that it is working as expected:
```
$ chromedriver --version
ChromeDriver 2.24
```If you get the following error message instead:
```
"chromedriver: error while loading shared libraries: libui_base.so: cannot open shared object file: No such file or directory"
```Then add the library path of the chrome browser:
```
$ sudo sh -c 'echo "/usr/lib/chromium-browser/libs" > /etc/ld.so.conf.d/chrome_lib.conf'
``````
$ sudo ldconfig
```And check again:
```
$ chromedriver --version
ChromeDriver 2.24
```