- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我计划自动化以下场景:
STEP 1 : Launch gmail page in firefox browser
STEP 2 : Enter username and password
STEP 3 : Press signin button
STEP 4 : When above 3 steps are happening, my router will recognize as gmail traffic and show in "show dpi app stats gmail on AVC/test-15E8CC" command output.
STEP 5 : Custom library should check the output of above show command and decide whether test is FAIL or PASS
出于上述目的,我编写了如下所示的“pass_fail.robot”:
*** Settings ***
Library Selenium2Library
Library SSHLibrary
Library regexp_def.py
Suite Setup Go to gmail page
Suite Teardown Close All Browsers
*** Variables ***
${HOMEPAGE} https://www.gmail.com/intl/en/mail/help/about.html
${BROWSER} firefox
${LOGINPAGE} https://www.gmail.com/intl/en/mail/help/about.html
${FINALURL} https://mail.google.com/mail/
${FINALURL1} https://accounts.google.com/ServiceLogin?service=mail&continue=https://mail.google.com/mail/'
${HOST} 1.1.1.1
${USERNAME} test
${PASSWORD} test
*** Test Cases ***
Login into gmail
Go to gmail page
Login Page Should Be Open
Click Signin Button
Input Username test@gmail.com
Input Password test@123
Submit Credentials
Inbox page should open
Check Deep Packet Inspection Stats
Open Connection ${HOST}
enable ssh logging XYZ
Login ${USERNAME} ${PASSWORD}
Write enable
Write show dpi app stats gmail on AVC/switch-15E8CC
${x} Read Until Regexp .*#
Check Pass Fail Criteria
pass fail criteria
*** Keywords ***
Go to gmail page
Open Browser ${HOMEPAGE} ${BROWSER}
Maximize Browser Window
Login Page Should Be Open
Location Should Be ${LOGINPAGE}
Click Signin Button
Click Element id=gmail-sign-in
Input Username
[Arguments] ${username}
Input Text id=Email ${username}
Input Password
[Arguments] ${password}
Input Text id=Passwd ${password}
Submit Credentials
Click Button id=signIn
Inbox page should open
Location Should Be ${FINALURL}
我的自定义库“regexp_def.py”是这样的:
import re
'''
#Following is the sample content of x variable should get from robot framework:
x="""router-7F2C13#show app stats gmail on TEST/switch1234-15E8CC
--------------------------------------------------------------------------------
APPLICATION BYTES_IN BYTES_OUT NUM_FLOWS
--------------------------------------------------------------------------------
gmail 0 0 0
--------------------------------------------------------------------------------
router-7F2C13#
---------------------------------------------------------------
router-7F2C13#"""
'''
def pass_fail_criteria():
if int(re.findall(r"NUM_FLOWS\n-+[\s\S]*?(\d+)\s*-+",x)[0]):
print "pass"
else:
print "fail"
pass_fail_criteria()
当我运行此测试时出现以下错误:
C:\Users\test\Desktop\Projects\gmail_stats_with_pass_fail_criteria>pybot pass_
fail.robot
[ ERROR ] Error in file 'C:\Users\test\Desktop\Projects\gmail_stats_with_pass_
fail_criteria\pass_fail.robot': Importing test library 'C:\Users\test\Desktop\
Projects\gmail_stats_with_pass_fail_criteria\regexp_def.py' failed: NameError: g
lobal name 'x' is not defined
Traceback (most recent call last):
File "C:\Users\test\Desktop\Projects\gmail_stats_with_pass_fail_criteria\reg
exp_def.py", line 26, in <module>
pass_fail_criteria()
File "C:\Users\test\Desktop\Projects\gmail_stats_with_pass_fail_criteria\reg
exp_def.py", line 21, in pass_fail_criteria
if int(re.findall(r"NUM_FLOWS\n-+[\s\S]*?(\d+)\s*-+",x)[0]):
PYTHONPATH:
C:\Python27\lib\site-packages\robot\libraries
c:\python27\lib\site-packages\pycrypto-2.6-py2.7-win32.egg
C:\Python27\lib\site-packages
C:\Python27\Lib
C:\Windows\system32\python27.zip
C:\Python27\DLLs
C:\Python27\lib\plat-win
C:\Python27\lib\lib-tk
C:\Python27
C:\Python27\lib\site-packages\win32
C:\Python27\lib\site-packages\win32\lib
C:\Python27\lib\site-packages\Pythonwin
C:\Python27\lib\site-packages\wx-2.8-msw-unicode
.
==============================================================================
Pass Fail
==============================================================================
Login into gmail | PASS |
------------------------------------------------------------------------------
Check Deep Packet Inspection Stats | PASS |
------------------------------------------------------------------------------
Check Pass Fail Criteria | FAIL |
No keyword with name 'pass fail criteria' found.
------------------------------------------------------------------------------
Pass Fail | FAIL |
3 critical tests, 2 passed, 1 failed
3 tests total, 2 passed, 1 failed
==============================================================================
Output: C:\Users\test\Desktop\Projects\gmail_stats_with_pass_fail_criteria\ou
tput.xml
Log: C:\Users\test\Desktop\Projects\gmail_stats_with_pass_fail_criteria\lo
g.html
Report: C:\Users\test\Desktop\Projects\gmail_stats_with_pass_fail_criteria\re
port.html
C:\Users\test\Desktop\Projects\gmail_stats_with_pass_fail_criteria>
任何人都可以看看这个。
我在将所需数据(show 命令输出到“${x}”)发送到自定义库时遇到问题。
还有其他问题吗?请指导我。
regexp_def.py 文件内容:
import re
def pass_fail_criteria():
if int(re.findall(r"NUM_FLOWS\n-+[\s\S]*?(\d+)\s*-+",x)[0]):
return "pass"
else:
return "fail"
pass_fail.robot 文件内容:
*** Settings ***
Library Selenium2Library
Library SSHLibrary
Library regexp_def.py
Suite Setup Go to gmail page
Suite Teardown Close All Browsers
*** Variables ***
${HOMEPAGE} https://www.gmail.com/intl/en/mail/help/about.html
${BROWSER} firefox
${LOGINPAGE} https://www.gmail.com/intl/en/mail/help/about.html
${FINALURL} https://mail.google.com/mail/
${FINALURL1} https://accounts.google.com/ServiceLogin?service=mail&continue=https://mail.google.com/mail/'
${HOST} 10.1.1.2
${USERNAME} admin
${PASSWORD} moto
*** Test Cases ***
Login into gmail
Go to gmail page
Login Page Should Be Open
Click Signin Button
Input Username zebradtc@gmail.com
Input Password Zebra@123
Submit Credentials
Inbox page should open
Check Deep Packet Inspection Stats
Open Connection ${HOST}
enable ssh logging XYZ
Login ${USERNAME} ${PASSWORD}
Write enable
Write show dpi app stats gmail on AVC/ap7532-15E8CC
${x} Read Until Regexp .*#
Check Pass Fail Criteria
${result} pass fail criteria ${x}
*** Keywords ***
Go to gmail page
Open Browser ${HOMEPAGE} ${BROWSER}
Maximize Browser Window
Login Page Should Be Open
Location Should Be ${LOGINPAGE}
Click Signin Button
Click Element id=gmail-sign-in
Input Username
[Arguments] ${username}
Input Text id=Email ${username}
Input Password
[Arguments] ${password}
Input Text id=Passwd ${password}
Submit Credentials
Click Button id=signIn
Inbox page should open
Location Should Be ${FINALURL}
#${status} pass fail criteria
should be equal ${status} pass
# pass ${x} to the custom keyword
${result} Pass fail criteria ${x}
修改这些文件后出现以下错误:
C:\Users\symbol\Desktop\Projects\gmail_stats_with_pass_fail_criteria>pybot pass_
fail.robot
==============================================================================
Pass Fail
==============================================================================
Login into gmail | FAIL |
Parent suite setup failed:
Keyword '${result}' expected 0 arguments, got 2.
------------------------------------------------------------------------------
Check Deep Packet Inspection Stats | FAIL |
Parent suite setup failed:
Keyword '${result}' expected 0 arguments, got 2.
------------------------------------------------------------------------------
Check Pass Fail Criteria | FAIL |
Parent suite setup failed:
Keyword '${result}' expected 0 arguments, got 2.
------------------------------------------------------------------------------
Pass Fail | FAIL |
Suite setup failed:
Keyword '${result}' expected 0 arguments, got 2.
Also suite teardown failed:
Variable '${x}' not found.
3 critical tests, 0 passed, 3 failed
3 tests total, 0 passed, 3 failed
==============================================================================
Output: C:\Users\symbol\Desktop\Projects\gmail_stats_with_pass_fail_criteria\ou
tput.xml
Log: C:\Users\symbol\Desktop\Projects\gmail_stats_with_pass_fail_criteria\lo
g.html
Report: C:\Users\symbol\Desktop\Projects\gmail_stats_with_pass_fail_criteria\re
port.html
C:\Users\symbol\Desktop\Projects\gmail_stats_with_pass_fail_criteria>
最佳答案
看来您遇到了几个问题。我们将一次解决一个问题。
库用于定义关键字,而不是调用它们。您在导入库时正在调用 pass_fail_critiera
,此时您只想在测试运行时调用它。
解决方法是从库文件末尾删除 pass_fail_criteria()
,以便文件包含 def
,但不直接调用该函数.
这就是为什么您甚至在尝试在测试用例中使用关键字之前就获得了堆栈跟踪的原因——错误发生在导入时,因为该函数在导入文件时被调用。
您的 pass_fail_criteria
关键字需要返回“通过”或“失败”,或者它应该在成功时静默返回并在出错时抛出异常。您选择哪个有点偏好问题。您是希望关键字始终成功以便稍后测试结果,还是希望它在条件失败时失败?
如果你希望它总是成功,这里有一个例子:
def pass_fail_criteria():
if int(...):
return "pass"
else:
return "fail"
然后您将在测试用例或关键字中使用这样的关键字:
${status} pass fail criteria
should be equal ${status} pass
第三个问题是,即使您确实从测试脚本中调用了pass_fail_criteria
,它也无法访问机器人变量x
。你需要在调用关键字时传入它,或者你需要通过内置关键字 Get Variable Value 来获取它。 .用户指南中有一个如何调用内置关键字的示例(请参阅标题为 Using Robot Framework's internal modules 的部分)。
要接受 x
作为关键字参数,您需要像这样修改您的函数:
def pass_fail_criteria(x):
if int(re.findall(r"NUM_FLOWS\n-+[\s\S]*?(\d+)\s*-+",x)[0]):
return "pass"
else:
return "fail"
要传递值,您可以像任何其他关键字一样进行操作。你没有显示你是如何调用关键字的,但它应该看起来像这样:
检查深度数据包检测统计 ... # 设置值 ${x} ${x} 一直读到 Regexp .*#
# pass ${x} to the custom keyword
${result} Pass fail criteria ${x}
有了上面的代码,机器人变量 ${x}
将成为函数 pass_fail_criteria
中的 python 变量 x
阅读我的原始答案后,您修改了问题以报告一个新错误,即 Keyword '${result}' expected 0 arguments, got 2.
。
这是因为您在这些代码行中创建了一个名为 ${result}
的关键字:
*** Keywords ***
...
# pass ${x} to the custom keyword
${result} Pass fail criteria ${x}
我不知道你想在那里做什么,但无论如何,这是错误的做法。您不应创建与变量同名的关键字。您需要删除这些代码行。
关于python - 如何将 show 命令的输出发送到 Robot 框架的自定义库?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28187394/
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 关闭 9 年前。 Improve this
我有一系列 SQL 命令,我想在大约 40 个不同的表上运行。必须有一种方法可以在不编写 40 条不同命令的情况下执行此操作... 我在 SQL Server 中运行它。所有表都有不同的名称,我要操作
我习惯在 PHP 中使用命令“mysql_insert_id()”来返回插入到我的数据库中的最后一行的 id。 在 C# 中的 SQLite 中是否有等效的命令? 谢谢! -阿德娜 最佳答案 选择 l
试图找出一种方法来回填 ds 分区 Hive 表的分区。 我知道如何从 CLI 运行 Hive 命令,例如 $HIVE_HOME/bin/hive -e 'select a.col from tab1
我有 .bat 文件。看起来像下一个 ....many commands1 ftp -i -s:copy.txt ...many commands2 copy.txt 包含下一个命令 open ...
基本上我想输入 show 并检查是否有 show 命令或别名已定义并触发它,如果未定义则触发 git show 。 例如 rm 应该执行 rm 但 checkout 应该执行 git checkout
我公司的主数据库是 iSeries 机器,我已经非常习惯使用 DB2 命令和结构。我现在正在尝试做一个小项目,更新一个包含超过 300 万条记录的表。我想出一种比较和“清理”数据的更快方法是使用 My
我想在带有 Node 的终端中制作一个简单的按钮板,并“blessed”用于连接或运行不同的命令。 ----------------------------------------------- _
我们有一个 selenium IDE 脚本,正在转换为 python webdriver。以下命令未转换: [openWindow | http://mywebsite.com/index.php |
我正在学习这个关于从 GIT HUB 下载和安装 Web 文件的在线教程。我进入主题:启动我们的静态网站,系统提示我输入命令以下载和安装 Web 文件。但是,当我输入命令 yarn install 时
我在 shell 脚本中使用 elif 命令时遇到问题,就像在 fortran 中一样。 我有 100 家公司的员工名单。我想屏蔽那些员工少于 500 人的公司。我的脚本是 rm -f categor
我有一些 Linux 命令可以生成 token 。我在 Linux 机器上使用操作系统库形式的 Python 自动化了这些命令。它工作正常。 但是,当我在 Windows 中尝试相同的代码时,它没有返
本文分享自华为云社区《Git你有可能不知道交互式暂存》,作者:龙哥手记。 本节中的几个交互式 Git 命令可以帮助你将文件的特定部分组合成提交。 当你在修改了大量文件后,希望这些改动能拆分为若干提交而
我想知道如何使用 IN 比较语法来做到这一点。 当前的 SQL 查询是: select * from employee where (employeeName = 'AJAY' and month(e
我在这个位置安装了 Hadoop /usr/local/hadoop$ 现在我想列出 dfs 中的文件。我使用的命令是: hduser@ubuntu:/usr/local/hadoop$ bin/ha
是否有一个单一的 docker 命令可用于清除所有内容?如果正在运行,请停止所有容器、删除所有图像、删除所有卷...等。 最佳答案 我认为没有一个命令可以做到这一点。您首先需要停止所有容器使用 $ d
我基本上是在 clojure/nrepl 模式中寻找与 C-u C-x C-e 或 C-c C-p 等效的 Scheme。 我想要一个 C-x C-e 将输出打印到缓冲区,而不是仅仅在 repl 中。
我可以在 vim 中使用 pudb(一个 ncurses Python 调试器),因为,例如,:!python %在实际的终端窗口中运行。我更喜欢使用 gvim,但 gvim 运行 :!python
我正在尝试编写一个 FFMPEG 命令: 取为 输入 一个视频 input.mp4 和一个图像 pic.jpg 作为 输出 将 input.mp4 拆分为 20 秒的视频,按顺序重命名;对于每个分割视
我想转储视频每帧的比特率。我正在尝试使用 -vstats 获取此信息命令。当我运行此命令时 - ffmpeg -i input.mp4 -vstats 它显示至少应该定义一个文件。 如果有人能建议我任
我是一名优秀的程序员,十分优秀!