Repurposed nuget package of Selenium.WebDriver.ChromeDriver but for Firefox Driver instead
Install Firefox Driver(Win64) Marionette for Selenium WebDriver into your Unit Test Project.
"geckodriver.exe" is copied to bin folder from package folder when the build process.
NuGet package restoring...
More information
Install Gecko Driver (Win32, Win64, macOS, and Linux64) for Selenium WebDriver into your Unit Test Project.
"geckodriver(.exe)" is copied to bin folder from package folder when the build process.
NuGet package restoring ready, and no need to commit "geckodriver(.exe)" binary into source...
More information
Install Gecko Driver(Win64) for Selenium WebDriver into your Unit Test Project.
"geckodriver.exe" is copied to bin folder from package folder when the build process.
NuGet package restoring ready, and no need to commit "geckodriver.exe" binary into source code control repository.
/...
More information
[Superseded]
This package became metadata only package for bootstrap "Selenium.WebDriver.GeckoDriver" x-plat NuGet package.
Please consider to install "Selenium.WebDriver.GeckoDriver" NuGet package directly instead of this.
----
Install Gecko Driver(Win32) for Selenium...
More information
library that allows embeding gecko in C# applications.
Example Usage:
[STAThread]
static void Main(string[] args)
{
Xpcom.Initialize("Firefox");
var geckoWebBrowser = new GeckoWebBrowser {Dock = DockStyle.Fill};
Form f = new Form();...
More information
library that allows embeding gecko in C# applications.
Example Usage:
// set env var LD_LIBRARY_PATH to $(ProjectDir)/Firefox
// set env var LD_PRELOAD to $(ProjectDir)/Firefox/libgeckofix.so
// add using Gecko
[STAThread]
static void Main(string[] args)
{...
More information
library that allows embeding gecko in C# applications.
Example Usage:
// set env var LD_LIBRARY_PATH to $(ProjectDir)/Firefox
// set env var LD_PRELOAD to $(ProjectDir)/Firefox/libgeckofix.so
// add using Gecko
[STAThread]
static void Main(string[] args)
{...
More information
Async Firefox Driver connects directly to Marionette and is async from this connection. No need in geckodriver.exe. AsyncFirefoxDriver implements IAsyncWebBrowserClient interfaces and can be used as AsyncWebDriver.
library that allows embeding gecko in C# applications.
Example Usage:
[STAThread]
static void Main(string[] args)
{
Xpcom.Initialize("Firefox");
var geckoWebBrowser = new GeckoWebBrowser {Dock = DockStyle.Fill};
Form f = new Form();...
More information
Integration testing framework for developers. TestR allows automating testing of web applications. Adds PowerShell features that are not part of the regular deployment.
library that allows embeding gecko in C# applications.
Example Usage:
// In MonoDevelop Project Options -> Run -> Configuration -> Default set the following envrionment variables.
// set env var LD_LIBRARY_PATH to $(ProjectDir)/Firefox-Linux64
// set env var LD_PRELOAD to...
More information
library that allows embeding gecko in C# applications.
Example Usage:
[STAThread]
static void Main(string[] args)
{
Xpcom.Initialize("Firefox64");
var geckoWebBrowser = new GeckoWebBrowser {Dock = DockStyle.Fill};
Form f = new Form();...
More information