Sahi脚本无法在Internet Explorer和Opera上正常运行

时间:2012-08-01 05:37:03

标签: webautomation sahi

我使用Firefox生成一些自动化脚本。 现在我在Firefox中播放脚本。一切都很严格,但在Opera中有一些问题。也在Internet Explorer中与...相同。

在Internet Explorer中,这部分代码通常在脚本执行后显示为失败:

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

同样在Opera,

_sahi._popup("csi")._sahi._click(_sahi._link("Bilgi Güncelleme")); //This part is failed.与字符集有关吗?

最后,这个失败的部分在Firefox中运行良好。我该怎么做才能解决这些问题。

谢谢,BR,

1 个答案:

答案 0 :(得分:0)

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

看起来不正确。它应该是

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

你有没有检查过哪个_link(“BilgiGüncelleme”)出现在Opera上? 您也可以尝试使用_link(“/ Bilgi /”)来检查错误是否是由特殊字符引起的。