2017-01-23 76 views
0

從1.1.34更新1.2.2上的serenity bdd之後操作在Internet Explorer中無法正常運行。Serenity BDD 1.2.2操作在Internet Explorer中無法正常工作

方法不起作用:

withAction().contextClick(element).perform(); 

Enother例如:

withAction().click(element).perform(); 

如果警報是點擊proccess掛起後存在,並且不從行動點擊返回

回答

0

平靜只是簡單地傳遞對Selenium的操作命令,所以這很可能是您的IE驅動程序或瀏覽器版本的Selenium兼容性問題,或IE驅動程序中的錯誤。

0

謝謝,Jhon。 我明白了。 InternetExplorerDriverProvider默認DesiredCapabilities返回新的實例:當我把InternetExplorerDriver.NATIVE_EVENTS真正

defaults.setCapability(InternetExplorerDriver.NATIVE_EVENTS, false); 

操作工作。

相關問題