Skip to content

Commit 9fc21de

Browse files
RenderMichaelgryznar
authored andcommitted
[dotnet] Fix marionette host Firefox argument (SeleniumHQ#15153)
1 parent 58af7e8 commit 9fc21de

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)