0

I generate some automation script with using Firefox. Now i playback the scripts in Firefox. Everything is going rigth but in Opera have some Problem. Also in Internet Explorer same as..

In Internet Explorer, this part of the code is generally shown as Failed after script execution:

_popup("csi")._assertExists(_div("deneme"));
_popup("csi")._assertEqual("deneme");  
_getText(_div("deneme"))   //This part is failed.

Also in Opera,

_sahi._popup("csi")._sahi._click(_sahi._link("Bilgi Güncelleme")); //This part is failed. Related with Character set ?

Finally, This fail parts are working fine in Firefox. What should i do to fix these problems.

Thanks and BR,

4

1 回答 1

0
_popup("csi")._assertEqual("deneme");  
_getText(_div("deneme"))

看起来不正确。它应该是

_popup("csi")._assertEqual("deneme", _getText(_div("deneme"));

您是否检查过控制器上 _link("Bilgi Günelleme") 在 Opera 上显示的内容?您也可以尝试使用 _link("/Bilgi/") 来检查错误是否是由于特殊字符引起的。

于 2012-08-03T17:20:29.747 回答