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 - attribute selectors-single & multiple
We can also select certain elements that have certain attribute values. Syntax: css =Tagname[Att=Value@Att] Ex: <input type="...
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 ...
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 webdriver - generic method for get child Xpath
Use following generic method for get child XPath public static string FindChildXPath(string element) { string child...
C# Selenium - DoubleClick a button using Actions
Simple way to handle double click the button. public void DoubleClick(IWebDriver driver, IWebElement objectName) { ...
C# Selenium webdriver write generic webdriver instance for multiple browser types
public class Factory { public static IWebDriver Driver; public static void CreateDriverInstance(string browserType)...
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...
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 ...
Find us on Facebook
0 comments