My problem is a bit generic one, so please bear with me.
I'm using
-selenium 2.44/eclipse Kepler/Java 1.7_071/JXL API/ Internet Explorer Driver Server 2.44
My OS is Windows 7 & IE version 9
Execution speed of my script varies a lot machine to machine.I have used xpath/ID/linkText/className for element identification, Even the element identified with linkText responds too slow. . I have used webdriver wait like this
new WebDriverWait(driver,60).ignoring(Exception.class).until(ExpectedConditions.presenceOfElementLocated(By.id(Location)));
Can somebody tell me what could be the factors affecting the execution speed & how to improve it.
Note:- The application under test works fine manually.