1.默认robotframework中的含有等待的关键词(如:Wait Until Element Is Enabled),未手动设置时默认该参数为5sec 2.关键词:sleep A)一般在调试的时候使用该关键词,且该自动化工具中存在很多等待的关键词,正常不需要用到sleep 3.关键词:Get Selenium Speed A)在该作用域中统一设置每一步之后的等待时间. B) 4.关键词:wait until element is enabled和wait until element is…
一.安装SSHLibrary 二.关键字 1.与连接相关的 Open Connection Get Connection Get Connections Switch Connection Close Connection Close All Connections Login Login With Public Key Set Client Configuration Set Default Configuration Enable Ssh Logging 2.与文件/目录相关的 2.1 …
Suite Setup:在这个测试集的所有测试用例开始测试之前运行(类似于junit的@BeforeClass) Suite Teardown:在这个测试集的所有测试用例结束之后运行(类似于junit的@AfterClass) Test Setup:在每个测试用例开始测试之后运行(类似于junit的@Before) Test Teardown:在每个测试用例结束测试之后运行(类似于junit的@After) 用法: 用在Settings这里 后面直接加你要使用的关键字 如: 如上: Suite…
创建和扩展Library的示例 示例:Check status on Linux OS 创建与使用library的基本步骤: 1--- library实现的内容和实现的方式 2--- library的编写:名称.类别.引用的模块.关键字.注释等 3--- library的编译调试方式.文档生成.导入及确认... 4--- Test Case的编写与调试 5--- 扩展已存在的测试库的方式 1---…