Skip to content

Commit e8ced7d

Browse files
RenderMichaelsandeepsuryaprasad
authored andcommitted
[dotnet] Fix marionette host Firefox argument (SeleniumHQ#15153)
1 parent fd7a582 commit e8ced7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dotnet/src/webdriver/Firefox/FirefoxDriverService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ protected override string CommandLineArguments
177177

178178
if (!string.IsNullOrEmpty(this.browserCommunicationHost))
179179
{
180-
argsBuilder.AppendFormat(CultureInfo.InvariantCulture, " --marionette-host \"{0}\"", this.host);
180+
argsBuilder.AppendFormat(CultureInfo.InvariantCulture, " --marionette-host \"{0}\"", this.browserCommunicationHost);
181181
}
182182

183183
if (this.Port > 0)

0 commit comments

Comments
 (0)