WatIn 测试 insideText 末尾包含空格。 HTML 没有
我正在使用 WatIn 来自动化表的 IE9 测试。 单元格文本包含 HTML 中不存在的尾随空格。
我单步执行了 WatIn 代码,发现它要求输入 innerText 属性。 innerText 的值也有尾随空格
在具有相同 IE 版本的不同计算机上运行相同的测试并测试相同的网站,空格消失了
如何避免我的计算机上出现尾随空格?
I'm using WatIn to automate IE9 testing of table.
Text of cell contains a trailing whitespace that is not in the HTML.
I have stepped through the WatIn code and found it is asking for innerText attribute. The value of innerText also have the trailing whitespace
Run the same test on different machine with same IE version and testing the same web site and the whitespace is gone
How can I avoid the trailing whitespace on my machine?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我还没有看到你的具体问题,但我发现由于 IE 和 IIS 版本不同,HTML 输出略有不同。
可以使用 string.TrimEnd 方法删除尾随空白。
C# 代码示例
I haven't seen your specific issue, but I have seen slight differences of HTML output due to different versions of IE and IIS.
Trailing whitespace can be removed with the
string.TrimEnd
method.Example C# code