我正在尝试自动填充数组。
这些步骤仅返回包含“ foo”的数组。我尝试插入的“ bar”字符串似乎并未包含在内。
execute script | return ["foo"] | testVar
execute script | ${testVar}.push("bar") |
echo | ${testVar}
我在做什么错了?
答案 0 :(得分:0)
我使用这种方法在Selenium IDE中更新数组
execute script | return ['foo'] | testVar
execute script | return [${testVar}, 'bar'] | testVar
echo | ${testVar}