问题标签 [silktest]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
71 浏览

automated-tests - 如何运行 Silk-Test(4Test 语言)3 次并每次都从列表中获取数据?(每次都是不同的人)

CustomerSearch.Customers.Select ("ARUNDEL, CLAUDE") 我如何每次都从列表中得到不同的?

0 投票
2 回答
57 浏览

list - SilkTest 中的每个测试如何遍历列表?

我为我的 Green Mountain Outpost 应用程序编写了列表(名称、项目等)。我希望应用程序当时自动运行带有 1 个人员和项目的测试用例。这样的应用程序。从列表中运行 1 人,而不是第二次测试。

测试用例

功能

名称、项目等的列表

0 投票
1 回答
38 浏览

list - 如何使用字符串列表的值运行记录的测试?

我记录了一个测试用例应用程序,现在我想运行测试用例,但我的代码中没有使用: ------CustomerSearch.Customers.Select ("ARUNDEL, CLAUDE") --------。

我想从字符串列表中获取客户(人)。

------CustomerSearch.Customers.Select ("" + 列表中的客户(位置 3)) --------

字符串客户列表 = {...} "ARUNDEL, CLAUDE" // 1 "BUCCIGRAS, CATHERINE" // 2 "COHEN, ROBIN" // 3 "CORELLI, ARCANGELO" // 4........等等

有人可以帮帮我吗?我如何遍历列表并每次选择不同的列表

我如何单独编写一个函数来每次运行都使用一个人?所以我可以一遍又一遍地用列表中的名字运行测试?

0 投票
2 回答
133 浏览

silktest - 如何将 Silk 4j 脚本映射到 Silk Central 中的测试用例

请建议如何将 Silk 4j 脚本映射/链接到在 Silk Central 中编写的手动测试用例。

与 4Test 脚本一样,我们选择 .t 文件,然后为每个测试用例选择 Silk Central 中的 Silk 测试经典属性下的测试用例。

0 投票
2 回答
154 浏览

automated-tests - Silk Test Visual Test Pressed Enter Key

Let's say there's only one textbox on a page (no confirm button). I have inputted the text. How do I press enter? (in mobile, I can press the "enter" key in the keyboard, but there's no keyboard in visual test). Can anyone please help me?

EDIT

So in the end I used .NET Script. But I can't integrate the script to Visual Test (the app reinstall itself from the beginning). It works if the scenario fully uses .NET Script, but then I need to change all the Visual Test to .NET Script (I need to make it all in Visual Test or .NET Script).

Does anybody know how to integrate this one function in .NET to Visual Test?

Here's my .NET Script:

Public Module Main

Dim _desktop As Desktop = Agent.Desktop

End Module

====== the script's 'till here (I can't insert it into the code brackets) ======

0 投票
1 回答
84 浏览

batch-file - Jenkins 将不完整的日志输出到控制台 - SilkTest

我有一个 Jenkins 管道,它将运行一个批处理文件,其中包含运行 Silk 测试的命令。管道部分如下:

Silk_test.bat 的内容如下:

当我在 Jenkins slave(通过远程桌面连接)的命令提示符下执行批处理文件时,结果如下(隐藏了一些细节): 在此处输入图像描述

但是,当我在 Jenkins 上运行构建时,控制台输出不完整(在 "VERBOSE MODE: ON" 行之后不显示输出): 在此处输入图像描述

[相同的命令正在同一个 Jenkins slave 上运行]

有没有办法修复 Jenkins 管道以显示完整的控制台输出?

0 投票
2 回答
38 浏览

java - 优化关键字

我使用 SilkTest 和 Java 自动化测试。在这个关键字中,我得到列表并将其与预期的进行比较。有没有办法优化我的代码,因为我已经多次声明了每个列表。