- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我编写了一个机器人测试用例,它从命令行获取输入列表。我从命令行运行测试用例并且执行成功。当我从 Eclipse 运行相同的脚本时,所有问题都会出现,测试用例失败并给出控制台消息 -
'List variable '@{list_of_vars}' has no item in index 0.'
下面是我的代码 -
[Tags] TestCLI
@{list_of_vars} Split String ${my_vars}
Log @{list_of_vars}[0]
Log @{list_of_vars}[1]
用于从命令行执行测试用例的语法:
python -m robot -v my_vars:one,two -E space:, -t "TestCLI" C:\Users\user1\eclipse-workspace\RobotTests\robot\firstTest.robot
我了解到 @{list_of_vars} 在从 eclipse 运行测试用例时正在寻找输入元素。我已使用“运行”和“启动进程”关键字来启动命令行,但无法成功。有什么方法可以解决该错误并从 eclipse 运行相同的脚本吗?
其他详细信息 -
最佳答案
运行您的示例时,我无法复制您的结果。相反,我观察到了所需的行为。以下是我使用的设置。
firstTest.robot
*** Settings ***
Library String
*** Test Cases ***
TC
[Tags] TestCLI
Log ${my_vars}
@{list_of_vars} Split String ${my_vars}
Log @{list_of_vars}[0]
Log @{list_of_vars}[1]
需要在运行配置上设置附加命令行变量-v my_vars:one,two -E space:,
。
这会产生以下消息日志:
Starting test: RunWithVars.firstTest.TC
20180404 20:45:06.445 : INFO : one two
20180404 20:45:06.447 : INFO : @{list_of_vars} = [ one | two ]
20180404 20:45:06.448 : INFO : one
20180404 20:45:06.449 : INFO : two
Ending test: RunWithVars.firstTest.TC
和控制台日志。我已将命令分成单独的行,并删除了一些 --listener
文件夹路径以提高可读性。
Command: C:\Python\RF_P27\Scripts\python.exe
-m robot.run
--listener C:\Users\..\TestRunnerAgent.py:51805
-s RunWithVars.FirstTest
-v my_vars:one,two -E space:, C:\TA\W\StackOverflow\RunWithVars
Suite Executor: Robot Framework 3.0.2 (Python 2.7.13 on win32)
==============================================================================
RunWithVars
==============================================================================
RunWithVars.firstTest
==============================================================================
TC | PASS |
------------------------------------------------------------------------------
RunWithVars.firstTest | PASS |
1 critical test, 1 passed, 0 failed
1 test total, 1 passed, 0 failed
==============================================================================
RunWithVars | PASS |
1 critical test, 1 passed, 0 failed
1 test total, 1 passed, 0 failed
==============================================================================
Output: C:\TA\W\StackOverflow\RunWithVars\output.xml
Log: C:\TA\W\StackOverflow\RunWithVars\log.html
Report: C:\TA\W\StackOverflow\RunWithVars\report.html
关于python - 如何从 eclipse 执行 Robot 测试用例,它将命令行列表参数作为输入?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49654291/
我最近购买了《C 编程语言》并尝试了 Ex 1-8这是代码 #include #include #include /* * */ int main() { int nl,nt,nb;
早上好!我有一个变量“var”,可能为 0。我检查该变量是否为空,如果不是,我将该变量保存在 php session 中,然后调用另一个页面。在这个新页面中,我检查我创建的 session 是否为空,
我正在努力完成 Learn Python the Hard Way ex.25,但我无法理解某些事情。这是脚本: def break_words(stuff): """this functio
我是一名优秀的程序员,十分优秀!