Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yokozuna59/webdriver-installer
A script installs the right drivers for your browsers, Chrome/Chromium and Firefox, works on Windows, Linux and Mac.
https://github.com/yokozuna59/webdriver-installer
bash-script curl drivers linux macos open-source opensource powershell powershell-script selenium selenium-webdriver windows
Last synced: 23 days ago
JSON representation
A script installs the right drivers for your browsers, Chrome/Chromium and Firefox, works on Windows, Linux and Mac.
- Host: GitHub
- URL: https://github.com/yokozuna59/webdriver-installer
- Owner: Yokozuna59
- License: gpl-3.0
- Created: 2022-05-21T16:24:58.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-12-02T13:55:35.000Z (almost 2 years ago)
- Last Synced: 2023-03-05T19:57:31.232Z (over 1 year ago)
- Topics: bash-script, curl, drivers, linux, macos, open-source, opensource, powershell, powershell-script, selenium, selenium-webdriver, windows
- Language: Shell
- Homepage:
- Size: 49.8 KB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# WebDrivers Installer
> A script installs the right drivers for your browsers, Chrome/Chromium and Firefox, works on Windows, Linux and Mac.
## Supported Platforms
| OS | Supported | Tested |
|:--:|:---------:|:------:|
| macOS Intel | ✅ | ✅ |
| macOS Apple Silicon | ✅ | N/A |
| Linux x86_64 | ✅ | ✅ |
| Linux i686 | ✅ | N/A |
| Linux aarch64 | N/A | N/A |
| Windows 64bit | ✅ | ✅ |
| Windows 32bit | ✅ | N/A |
| Windows Arm64 | N/A | N/A |## Requirements
1. [cURL](https://curl.se/docs/install.html) or [Wget](http://mirrors.kernel.org/gnu/wget/) for Windows (WSL), Linux or Mac.
## Run Remotely
### Linux & Mac & Windows (WSL)
```bash
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Yokozuna59/\
webdriver-installer/master/install.sh)"
# or /bin/bash -c "$(wget -qO- https://raw.githubusercontent.com/Yokozuna59/\
# webdriver-installer/master/install.sh)"
```### Windows (PowerShell)
```PowerShell
$request = Invoke-RestMethod -URI 'https://raw.githubusercontent.com/\
Yokozuna59/webdriver-installer/master/install.ps1'
Invoke-Expression -Command "$request"
```## Run Locally
### Linux & Mac
```bash
chmod +x install.sh
./install.sh
```### Windows (WSL)
```bash
chmod +x install.sh
sed -i 's/\r$//' install.sh
./install.sh
```### Windows (PowerShell)
```PowerShell
Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope CurrentUser
.\install.ps1
```