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
// Licensed to the Software Freedom Conservancy (SFC) under one
3
3
// or more contributor license agreements. See the NOTICE file
4
4
// distributed with this work for additional information
@@ -111,6 +111,7 @@ public FirefoxDriver()
111
111
/// </summary>
112
112
/// <param name="profile">A <see cref="FirefoxProfile"/> object representing the profile settings
113
113
/// to be used in starting Firefox.</param>
114
+
[Obsolete("FirefoxDriver should not be constructed with a FirefoxProfile object. Use FirefoxOptions instead. This constructor will be removed in a future release.")]
114
115
publicFirefoxDriver(FirefoxProfileprofile)
115
116
:this(newFirefoxOptions(profile,null))
116
117
{
@@ -150,7 +151,7 @@ public FirefoxDriver(FirefoxBinary binary, FirefoxProfile profile)
150
151
/// <param name="commandTimeout">The maximum amount of time to wait for each command.</param>
151
152
[Obsolete("FirefoxDriver should not be constructed with a FirefoxBinary object. Use FirefoxOptions instead. This constructor will be removed in a future release.")]
/// Initializes a new instance of the <see cref="FirefoxDriver"/> class using the specified options, driver service, and timeout. Uses the Mozilla-provided Marionette driver implementation.
0 commit comments