You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: dotnet/src/webdriver/Firefox/FirefoxDriver.cs
+5-14Lines changed: 5 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -102,7 +102,7 @@ public class FirefoxDriver : RemoteWebDriver
102
102
/// Initializes a new instance of the <see cref="FirefoxDriver"/> class.
103
103
/// </summary>
104
104
publicFirefoxDriver()
105
-
:this(newFirefoxOptions(null,null))
105
+
:this(newFirefoxOptions(null,null,null))
106
106
{
107
107
}
108
108
@@ -113,7 +113,7 @@ public FirefoxDriver()
113
113
/// to be used in starting Firefox.</param>
114
114
[Obsolete("FirefoxDriver should not be constructed with a FirefoxProfile object. Use FirefoxOptions instead. This constructor will be removed in a future release.")]
115
115
publicFirefoxDriver(FirefoxProfileprofile)
116
-
:this(newFirefoxOptions(profile,null))
116
+
:this(newFirefoxOptions(profile,null,null))
117
117
{
118
118
}
119
119
@@ -137,7 +137,7 @@ public FirefoxDriver(ICapabilities capabilities)
137
137
/// to be used in starting Firefox.</param>
138
138
[Obsolete("FirefoxDriver should not be constructed with a FirefoxBinary object. Use FirefoxOptions instead. This constructor will be removed in a future release.")]
@@ -151,7 +151,7 @@ public FirefoxDriver(FirefoxBinary binary, FirefoxProfile profile)
151
151
/// <param name="commandTimeout">The maximum amount of time to wait for each command.</param>
152
152
[Obsolete("FirefoxDriver should not be constructed with a FirefoxBinary object. Use FirefoxOptions instead. This constructor will be removed in a future release.")]
0 commit comments