Selenium GUI 测试?

发布于 2024-11-08 02:20:19 字数 162 浏览 0 评论 0原文

我正在使用 selenium 进行功能测试。

但在 GUI 测试上我需要帮助。

selenium RC 如何帮助自动化 GUI 测试,例如网页中对象的位置、颜色、对象的对齐方式。

请建议是否有任何 selenium API 可用/或者我们需要为此使用任何插件。

I am working on function testing using selenium.

But on GUI testing I need help.

How selenium RC can help to automate the GUI testing like position of object, color, alignments of object in web pages.

Please suggest if any selenium API is available / or we need to use any plug in for this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

萌面超妹 2024-11-15 02:20:19

您应该能够做您提到的事情。探索 Selenium API 文档。

  1. 对象位置:

     getElementHeight(), 
      getElementPositionLeft(), 
      getElementPositionTop(), 
      获取元素宽度() 
    

  2. 元素颜色/对齐:您可以检索元素的颜色特定属性,例如 colorstyle 并检查预期值。为此,您可以使用 getAttribute() 方法。 getElementIndex() 也可能有用。

您所要做的就是尝试探索 selenium API。

希望这有帮助。

You should probably able to do the thing you mentioned. Explore Selenium API doc.

  1. Position of object:

      getElementHeight(), 
      getElementPositionLeft(), 
      getElementPositionTop(), 
      getElementWidth() 
    

  2. Element Color/alignment: You can retrieve the element's color specific attributes like color or style and check for expected value. For that you can use getAttribute() method. Also getElementIndex() might be useful.

All you have do is try to explore selenium APIs.

Hope this helps.

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