Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/airtaxi/seleniumconfigurator
A library that automatically downloads and caches the Selenium driver for C#
https://github.com/airtaxi/seleniumconfigurator
csharp driver selenium selenium-csharp
Last synced: about 1 month ago
JSON representation
A library that automatically downloads and caches the Selenium driver for C#
- Host: GitHub
- URL: https://github.com/airtaxi/seleniumconfigurator
- Owner: airtaxi
- License: mit
- Created: 2022-09-14T11:54:36.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-11-10T03:21:55.000Z (over 1 year ago)
- Last Synced: 2024-04-26T15:22:51.106Z (10 months ago)
- Topics: csharp, driver, selenium, selenium-csharp
- Language: C#
- Homepage:
- Size: 24.4 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# SeleniumConfigurator
[![NuGet version (SeleniumConfigurator)](https://img.shields.io/nuget/v/SeleniumConfigurator.svg?style=flat-square)](https://www.nuget.org/packages/SeleniumConfigurator/)
Selenium Configurator automatically downloads matching drivers for installed browsers.\
The project supports Edge and Chrome.\
Other browsers will be supported later.Usage
----##### Chrome
```csharp
string driverPath = SeleniumConfigurator.Chrome.GetDriverPath();
var service = ChromeDriverService.CreateDefaultService(driverPath);
var driver = new ChromeDriver(service);
```##### Edge
```csharp
string driverPath = SeleniumConfigurator.Edge.GetDriverPath();
var service = EdgeDriverService.CreateDefaultService(driverPath);
var driver = new EdgeDriver(service);
```Developer
----
`이호원 (Howon Lee) a.k.a hoyo321 or kck4156, airtaxi`License
----
MIT License