Skip to content

Commit

Permalink
[dotnet] Fix marionette host Firefox argument (#15153)
Browse files Browse the repository at this point in the history
  • Loading branch information
RenderMichael authored Feb 1, 2025
1 parent b48493b commit 10a911f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/Firefox/FirefoxDriverService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 10a911f

Please sign in to comment.