Facebook
Google+
Email
RSS
C# Selenium
Selenium
Login Form
C#
Java
Ruby
Phyton
Videos
C# Basics
OPPS
javascript
html
Realtime Challenges
Interivew Questons
About
Privacy Policy
Contact Us
Tuesday, July 7, 2015
C# Selenium- webdriver is very slow in IE9 ,IE10 or IE11
By
ravindra
7:11 AM
Try with different IE drivers. Even through IE 64 bit installed in machine mostly IE 32 bit only will run. Its better to user following IE driver (
https://code.google.com/p/selenium/downloads/list
)
0 comments
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
Popular Posts
C# Selenium webdriver proxy settings Desired Capabilities
The Siplest way to set proxy settings Firefox: String PROXY = "localhost:8080"; org.openqa.selenium.Proxy proxy = new org.op...
C# Selenium - Identify the Element through CSS Selector
There are several CSS selectors, but I am going to introduce you to a few of them as we gradually build our case to more complex examples....
C# Selenium - automation script for protractor, AngularJS application
Here you can find the script for protractor Add reference Protractor library to Application, using Protractor; // Namespace need to be ...
C# Selenium - Combination of CSS Selectors
Sometimes when a particular selector matches more than one element, you may need to combine selectors to clarify things Here is some o...
Java Selenium webdriver Proxy settings Desired Capabilities
The Simplest way to set proxy settings Firefox: String PROXY = "localhost:8080"; org.openqa.selenium.Proxy proxy = new org.o...
C# Selenium webdriver ImplicitWait
Implicit wait will initialize once in a life time of webdriver object. After each and every statement execution of webdriver implicit wait...
C# Selenium - Get rows from a Table
How to get rows from a table IWebElement table = driver.FindElement(By.Id("summaryTable")); List<IWebElement> rows = ta...
C# Selenium - Handling multiple windows
Multiple windows Handling driver.Navigate().GoToUrl("Sample1.html"); driver.FindElement(By.LinkText("Visit ...
Java Selenium webdriver - Get all descendent elements list of a XPath
Use following generic method to get list of descendent elements using XPath public List<WebElement> FindDescendentsXPath(WebElement...
C# Selenium - DoubleClick a button using Actions
Simple way to handle double click the button. public void DoubleClick(IWebDriver driver, IWebElement objectName) { ...
Find us on Facebook
0 comments