Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions py/selenium/webdriver/ie/webdriver.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

import warnings

from selenium.webdriver.remote.webdriver import WebDriver as RemoteWebDriver
Expand All @@ -36,9 +37,9 @@ def __init__(self, executable_path='IEDriverServer.exe', capabilities=None,
options=None, service=None,
desired_capabilities=None, keep_alive=False):
"""
Creates a new instance of the chrome driver.
Creates a new instance of the Ie driver.

Starts the service and then creates new instance of chrome driver.
Starts the service and then creates new instance of Ie driver.

:Args:
- executable_path - Deprecated: path to the executable. If the default is used it assumes the executable is in the $PATH
Expand Down