我如何测试测试用例中文本颜色或图像 css 的变化?
我正在使用硒。 (我正在使用 Firefox 和 IDE)。我的测试用例是测试我的网页工具栏的颜色是否改变? 使用 selenium IDE,它只提供“verifyText”选项,但不提供颜色选项。 有没有一种方法可以读取我想要测试的 css 更改?
我不是程序员。我的编程知识有限,所以我想知道硒是否不是适合我的工具。您认为 Watir 在测试此类案例时效果会更好吗?我可以使用 Watir 和一些记录器来创建测试用例吗?
谢谢! 任何对我的询问的答复将不胜感激。
I am using selenium. ( i am using Firefox and IDE). My testcase is to test whether Color of toolbar of my webpage got changed or not?
using the selenium IDE it just gives me option to 'verifyText' but not color.
Is there a way it can read the css changes that i want to test ?
I am not a programmer . I have limited programming knowledge so i was wondering if probably selenium is not the right tool for me. DO you think Watir will work better in testing this type of cases?. Can i use Watir with some recorders to create testcases?
Thanks!
Any reply to my query will be highly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个例子:
对于网页,http://www.w3schools.com/css/css_colors.asp ,红色的断言将是
assertTrue(selenium.isElementPresent("css=td[bgcolor=#ff0000]"));
Here's an example:
For the webpage, http://www.w3schools.com/css/css_colors.asp, the assertion for the Red color would be
assertTrue(selenium.isElementPresent("css=td[bgcolor=#ff0000]"));