Use Selenium with C
I Can't Find Any Information on If You Can Use Selenium with C. Just C, Not C#. Does Anyone Know If This Is Possible? I Tried Searching on Google but All...
I can't find any information on if you can use selenium with C. Just C, not c#. Does anyone know if this is possible?
I tried searching on Google but all results that appear has "C#" in it and not "C".
1 Answer
From the official page of Selenium:
- The core language-specific client drivers are:
- Ruby
- JavaScript
- Java
- Python
- C#
However as per Selenium Official Home Page language bindings for other languages does exist but those projects are not supported, maintained, hosted, or endorsed by the Selenium project, which are as follows:
- Selenium [Language: Go]
- hs-webdriver [Language: Haskell]
- wd [Language: JavaScript]
- Selenium-Remote-Driver [Language: Perl]
- php-webdriver [Language: PHP]
- RSelenium [Language: R]
- webdriver.dart [Language: Dart]
Solution
You could always write your WebDriver based tests in any of the core language e.g. Java/Python/C# and call the script from your C / C++ application.