Webdriver - webdriver hangs when get or click

来源:互联网 发布:分割线知乎 编辑:程序博客网 时间:2024/05/17 03:24

Webdriver - webdriver hangs when get or click

作者: Max.Bai

时间: 2014/08


Same times the webdriver hangs when get url or click some link,  webdriver executing (get or click) but no done.


1. For firefox

we can set the firefox profile make the firefox do not wait the page load complete.

FirefoxProfile fp = new FirefoxProfile();fp.setPreference("webdriver.load.strategy", "unstable");driver = new FirefoxDriver(fp);

2. For IE

profile is not support for IE, we can set attribute enablePersistentHover as false.

DesiredCapabilities iecaps = DesiredCapabilities.internetExplorer();iecaps.setCapability(InternetExplorerDriver.ENABLE_PERSISTENT_HOVERING, false);



0 0
原创粉丝点击