我如何测试测试用例中文本颜色或图像 css 的变化?

发布于 2024-11-06 16:57:47 字数 256 浏览 0 评论 0原文

我正在使用硒。 (我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

┾廆蒐ゝ 2024-11-13 16:57:47
  1. 使用 CSS 标识符,尝试检索工具栏的颜色属性。
  2. 只需使用颜色作为描述符来断言该元素是否存在。

这是一个例子:
对于网页,http://www.w3schools.com/css/css_colors.asp ,红色的断言将是 assertTrue(selenium.isElementPresent("css=td[bgcolor=#ff0000]"));

  1. Using CSS identifiers, try retrieving the color attribute for your toolbar.
  2. Simply assert for the presence of that element, using the color as the descriptor.

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]"));

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文