From f8a335041c522689b106a6da85122d6274bc8176 Mon Sep 17 00:00:00 2001 From: Michael Render Date: Sat, 25 Jan 2025 01:08:23 -0500 Subject: [PATCH] [dotnet] Fix marionette host Firefox argument --- dotnet/src/webdriver/Firefox/FirefoxDriverService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotnet/src/webdriver/Firefox/FirefoxDriverService.cs b/dotnet/src/webdriver/Firefox/FirefoxDriverService.cs index 3d35057e69e64..419f998a251bb 100644 --- a/dotnet/src/webdriver/Firefox/FirefoxDriverService.cs +++ b/dotnet/src/webdriver/Firefox/FirefoxDriverService.cs @@ -177,7 +177,7 @@ protected override string CommandLineArguments if (!string.IsNullOrEmpty(this.browserCommunicationHost)) { - argsBuilder.AppendFormat(CultureInfo.InvariantCulture, " --marionette-host \"{0}\"", this.host); + argsBuilder.AppendFormat(CultureInfo.InvariantCulture, " --marionette-host \"{0}\"", this.browserCommunicationHost); } if (this.Port > 0)