I would like to ask if there a specific webdriver to run a testcase for internet explorer 9 or 10? or this code driver = new InternetExplorerDriver(); will do to test internet explorer 9 testcases? anyone know?
Webdriver for IE9 and 10
647 Views Asked by Kevin At
2
There are 2 best solutions below
0
murali selenium
On
It will work. See change log here https://raw.githubusercontent.com/SeleniumHQ/selenium/master/cpp/iedriverserver/CHANGELOG for v3.3.0.2 they mentioned ie9 and +.
Take all latest ones.
Related Questions in SELENIUM
- How to access invisible Unordered List element with Selenium WebDriver using Java
- Compound classes stored in an array are not accessible in selenium java
- Fail Upload file in Selenium webdriver using Robot class
- Selenium crashes Firefox, how to reset the used profile / where is the default profile?
- Selenium Driver Service not found exception
- Unable to read excel if cell/column has drop down list enabled for Selenium webdriver TestNG
- Selenium C#: Store element's position on graph as a variable
- Selenium webdriver for handling dynamic ckeditors
- What can cause `UnreachableBrowserException: Could not start a new session`?
- Click on the 'compose' button in gmail inbox page
- python - selenium change frame not working
- Selecting Options from a Drop Down Menu in C# using Selenium
- Validation without skipping the test cases if one fails
- How can i increase session timeout (which is 30 minutes by default)
- Load additional CONFIG file with values
Related Questions in SELENIUM-WEBDRIVER
- How to access invisible Unordered List element with Selenium WebDriver using Java
- Fail Upload file in Selenium webdriver using Robot class
- How do I use DataProvider with Apache POI
- I am not able to get Exact frame and not able to select exact element using selenium web drive
- Selenium C#: Store element's position on graph as a variable
- Selenium webdriver for handling dynamic ckeditors
- Easy to use multi browser automation tool for record, parameterize, debug, batch run of suites and results report
- Not able to select option from dropdown box in an android mobile application
- What can cause `UnreachableBrowserException: Could not start a new session`?
- Click on the 'compose' button in gmail inbox page
- python - selenium change frame not working
- How to select value from dropdown and double click on same selected item in selenium webdriver.?
- Selenium Firefox webdriver does not adopt profile
- Cannot assign an inst variable in Switch "--user-data-dir" in Selenium Wedriver Chrome
- Phantomjs fails when Protractor is run with selenium hub
Related Questions in AUTOMATED-TESTS
- How to automate UI interaction during acceptance test run
- Teststack.white cannot find Toolstrip item
- Unexcepted failed Gavel/Dredd test
- Keyword 'AppiumLibrary.Open Application' expected 1 to 2 non-keyword arguments
- How to set test case fail and pass messages in Casper js?
- Wait until scrollbar fades when using UI Automator
- Teststack.White Drag and Drop Problems
- list of test step results in groovy script
- Is there a before() function in Protractor?
- Different behaviour of compiler when called in script by LaunchControl
- Karma not recognizing jQuery
- How to perform datadriven approach using coded ui VSTS 2013
- Multiple Scope value in Binding (Specflow)
- python run function in external module containing doctest.testmod()
- How to use loop in nightwatch.js
Related Questions in SELENIUM-IEDRIVER
- Accept downloads automatically in Selenium WebDriver using IEDriver
- Kill instances of Internet Explorer remotely from linux machine using Java
- Selenium - random "Command line server for the IE Driver has stopped working" after several hours
- Sending '@' special character with SendKeys to IE 11
- Error with SendKeys IEDriverServer selenium
- Selenium Issue with Internet Explorer : org.openqa.selenium.NoSuchElementException : Unable to find element with xpath
- IEDriver Server 4.0.0.0 doesn't provide any response when running using Selenium Java
- The method attachToEdgeChrome() is undefined for the type InternetExplorerOptions using selenium-server-4.0.0-alpha-2
- getWindowHandles method returns incorrect number of window handles using MS EDGE IE11 and Selenium version 4.1.2
- SessionNotCreatedException with Selenium 4.1.3/IEDriverServer 4.0.0 without open desktop session (works with Selenium 3.141.0/IEDriverServer 2.53.1)
- Selenium 4 C# Edge IEMode - WindowHandles funtion does not increase number of handles when new browser window appears
- Python Internet Explorer driver using its own proxy instead of the proxy I have set
- Selenium FileUpload accept() is not clicking button
- How to make selenium wait before getting contents from the actual website which loads after the landing page through IEDriverServer and IE
- Open Internet Explorer in Private Mode with Selenium
Related Questions in NUNITTESTADAPTER
- Get Nunit Test Order after Execution to analyze brittle Tests
- How to force parallelization of tests on Azure+Nunit?
- Test class name is not printed in output by NUnit3TestAdapter
- Visual Studio error message: NUnit3.TestAdapter.dll is missing
- Unsupported test framework error in NUnit
- How to click the upload button in selenium c#
- Can I filter NUnit tests based on Property in Visual Studio test explorer
- Visual Studio Team Services - Run Functional Tests build task aborting after attempting test run
- NUnit Test Adapter and NUnit both discovering and running tests
- VsTest NUnit xml.document error .NET Core
- using NUnit 2 and 3 in the same solution
- After opening in Visual Studio 2015 unit test debugger steps in to wrong function
- Problem with compatibility with Visual Studio .runsettings file between VS 2015 and VS 2019
- Why netstandard2.0 shows warning for NUnit3TestAdapter but netstandard1.6 does not?
- How to get a results file from Nunit Test Adapter ran in Visual Studio with Test Explorer
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Yes, you can directly use
driver = new InternetExplorerDriver();directly for launching tests in IE. But if you are trying to launch an https URLs in IE9 and above, you are most likely going to face "There is a problem with this website's security certificate" error. In this case you need to click on the "Continue to this website (not recommended)." link for navigation to the URL. To solve this you can useBy using this your page will wait for the certificate to appear and then click on it.
Note: The above case is only applicable if you get certificate error.