博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Selenium 致命杀手(有关自动化的通病)
阅读量:6437 次
发布时间:2019-06-23

本文共 1297 字,大约阅读时间需要 4 分钟。

Do your scripts suffer from the following automation test flaky symptoms?

  • Test randomly fail
  • Works on your machine but not on another machine
  • Test take a long time to run
  • False positives/negatives results
  • Unreliable test run in CI have you contemplating a new career as a sheep herder

If so, your test might suffer from a common under-diagnosed automation disease known as Stinky Synchronization Syndrome.

One of the biggest killers of test automation script reliability is the failure to use proper synchronization/wait points in Selenium. Read the rest of this post to learn how to treat this world wide epidemic.

 

http://www.joecolantonio.com/2014/04/01/the-1-killer-of-selenium-script-performance-and-reliability/

自动化测试中经常遇到失败的脚本,但是很多情况下,这些失败的脚本是没有意义的,可能是对象没有出现导致的。因为在web程序中对象的显示反应时间是不一致的。不同的网络环境,不同的操作会导致相应的时间的不同。如果避免?

尽量不用使用以下两种方式等待对象出现:

1. driver.manage().timeouts().implicitlyWait(GlobalDefinition.WEBELEMENT_LOADING_TIME, TimeUnit.SECONDS);

2.Thread.sleep();

推荐使用如下方式进行对象同步操作:

try{      WebDriverWait wait = new WebDriverWait(getDriver(),10);      wait.until(ExpectedConditions.visibility(joeLogo));      return true;     }catch(org.openqa.selenium.NoSuchElementException e){      return false;    }
 
本文转自hcy's workbench博客园博客,原文链接:http://www.cnblogs.com/alterhu/p/3685403.html,如需转载请自行联系原作者。
 
你可能感兴趣的文章
Java LinkedList工作原理及实现
查看>>
负载均衡SLB的基本使用
查看>>
Centos 7 x86 安装JDK
查看>>
微信小程序的组件用法与传统HTML5标签的区别
查看>>
Hangfire 使用笔记
查看>>
(C#)Windows Shell 外壳编程系列8 - 同后缀名不同图标?
查看>>
教你彻底学会c语言基础——文件操作
查看>>
如何使用免费控件将Word表格中的数据导入到Excel中
查看>>
seafile服务器配置
查看>>
HyperLedger Fabric 1.2 区块链应用场景(3.1)
查看>>
也谈谈初创公司的技术团队建设
查看>>
阿里云 APM 解决方案地图
查看>>
中国HBase技术社区第一届MeetUp-HBase2.0研讨圆桌会
查看>>
学渣的模块化之路——50行代码带你手写一个common.js规范
查看>>
python——变量
查看>>
subline上装node.js插件
查看>>
python字符串操作实方法大合集
查看>>
Linux学习(十一):不可忽略的Linux支持的文件系统
查看>>
[转]VC++中操作XML(MFC、SDK)
查看>>
WiFi连接风险造成个人信息外泄 网络安全需加强
查看>>