摘要:1.安装java 2.安装python 3 3.安装 robotframework-ride pip install robotframework-ride (wxPython、PyPubSub这些依赖库都会自动安装好。) 4.安装 Robot Framework 从 RIDE 1.5 版本开始,r
阅读全文
摘要:What need to figure out? 1.Pass Download URL from Robot Framework to AutoIt. 2.Return File Save Path from AutoIt to Robot Framework. Step 1: Write Aut
阅读全文
摘要:wmic /output:D:\\DOAutomationTest\\automation_do_robotframework\\installList.txt product get name
阅读全文
摘要:${tWarningMessage} Run Keyword If ${tIfExist} AutoItLibrary.Win Get Text Generate Fee Data warning message ELSE Set Variable "" ${tIfDuplicateFee} Eva
阅读全文
摘要:https://www.cnblogs.com/pachongshangdexuebi/category/981644.html Robot Framework学习笔记(一) 环境搭建 Robot Framework 学习笔记(二) 第一个脚本 Robot Framework学习笔记(三) 常用关键
阅读全文
摘要:设置默认分辨率 通常亚马逊虚拟机自动登录分辨率为800x600,不能满足测试要求,需要设置为1280x1024. 由于远程桌面无法修改虚拟机分辨率,需要安装TightVNC工具。 TightVNC下载地址:http://www.tightvnc.com/download.php 虚拟机上操作: 1、
阅读全文
摘要:解决方法:最后加上exit 0 或者exit 1
阅读全文
摘要:http://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#creating-test-libraries
阅读全文
摘要:https://blog.csdn.net/CCGGAAG/article/details/77720435
阅读全文
摘要:运用BuiltIn里面的Set Variable
阅读全文
摘要:如果在suite的setup里面杀掉java进程:AutoItLibrary.Run | taskkill /F /IM java.exe 执行sikuli的关键字会报这样的错误: Connection to remote server broken: [Errno 10061] No connec
阅读全文
摘要:执行时,可以看到鼠标已经移动到图片上了,但是点击失效,日志也没有报错 后来发现是windows权限的问题。 通过打开Control Panel->System and Security->Change User Account Control Settings,将安全级别调到最低Nerver Not
阅读全文
摘要:举例:Robot Framwork+WhiteLibrary,等待元素可用或不可用 Wait Until Object Is Enabled Wait Until Object Is Not Enabled
阅读全文
摘要:安装ExcelLibrary for Robot Framework 参考 : http://navinet.github.io/robotframework-excellibrary/ 打开windows命令行窗口执行 pip install robotframework-excellibrary
阅读全文
摘要:启动remote whitelibrary之后,在robot framework中配置好library,就可以调用whitelibrary的关键字了 启动APP White.LAUNCHAPP C:\\Program Files (x86\\testAPP.exeWhite.GETWINDOWBYT
阅读全文
摘要:参考 : https://github.com/jatalahd/WhiteRobotLibrary 通过此源代码编译WhiteRobotLibrary.dll,然后把高亮标记的这5个dll全部拷贝到nrobotremote1.2.6的目录下 启动的命令是:NRobotRemoteConsole.e
阅读全文
摘要:http://blog.robotframework.cn/
阅读全文
摘要:有些元素需要通过滚动条滚动才能变得可见。 如果这些元素在DOM结构里面存在,可以通过scrollIntoView让其可见,但如果在DOM结构里面不存在那就要通过拖动滚动条让其变的可见。 Execute Javascript document.evaluate("//div[@role="progre
阅读全文
摘要:Execute Javascript document.evaluate("//a[contains(@href,'createBook')]", document, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null).snapshotItem(0
阅读全文