使用参数作为用户定义变量?

发布于 2024-11-08 20:56:45 字数 219 浏览 0 评论 0原文

我们在非 GUI 模式下运行测试,并传入各种参数,如服务器、端口、线程等。我们还希望在 GUI 模式下运行测试,并能够在 GUI 中更改这些参数。

我想做的是使用 2 个用户定义的变量对象,其中一个包含我们可以编辑的静态数据,另一个包含参数。这样实际的测试计划不会改变,但我们可以将变量设置为参数,并禁用静态数据。或者当我们想要使用静态数据运行时禁用参数化的。

但这似乎不起作用——没有错误。

We run our tests in non gui mode and pass in various parameters like Server, port, threads etc. We'd also like to run our test in GUI mode, and be able to change these parameters in the GUI.

What I wanted to do, was use 2x User Defined variable objects, and have one with static data we can edit, and another with parameters. That way the actual test plan doesn't change, but we can set variables as parameters, and just disable the static data one. Or disable the parameterized one when we want to run with static data.

But this doesn't seem to work - no errors nothing.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

浅笑轻吟梦一曲 2024-11-15 20:56:45

我做了类似的事情,但我为此使用了 UDF。

我所做的是设置变量并使用默认值。

VARNAME      VALUE  
otl_PROTOCOL ${__P(otl_protocol,https)}  
otl_PORT     ${__P(otl_port,443)}  
otl_THREADS  ${__P(otl_threads,1)}      
otl_REPS     ${__P(otl_reps,1)}  
otl_RAMP     ${__P(otl_ramp,0)}  

我也为服务器名称做了一个。这样,我可以在此处使用默认值,也可以在命令行参数或 user.properties 中传递参数。这对我来说非常有效。

I do something similar, but I used a UDF for this.

What I did was set up my variables and use default values.

VARNAME      VALUE  
otl_PROTOCOL ${__P(otl_protocol,https)}  
otl_PORT     ${__P(otl_port,443)}  
otl_THREADS  ${__P(otl_threads,1)}      
otl_REPS     ${__P(otl_reps,1)}  
otl_RAMP     ${__P(otl_ramp,0)}  

I did one for server name as well. This way, I can use the defaults here or I can pass in parameters in either the command line args or in my user.properties. This works very well for me.

在巴黎塔顶看东京樱花 2024-11-15 20:56:45

您如何从非 GUI 模式传递值?通过 CSV、使用属性、用户参数等?

如果是 CSV,这是一个简单的解决方法。只需在测试计划级别创建一个用户定义变量 (UDV) 对象并“硬编码”所有参数(服务器、端口等)。保留您的 CSV 配置。如果在 GUI 模式下运行,请禁用 CSV 并启用 UDV。保存文件时,保持 CSV 启用并禁用 UDV - 这样,当您从非 GUI 运行时,它将读取 CSV 文件。

如果使用属性,我将执行以下操作: 使用所有参数(服务器等)创建 UDV。输入值之前,请复制组件,以便拥有两个相同的 UDV。在 UDV 1 中,从命令行输入属性值。在 UDV 2 中,输入“硬编码”值。在整个脚本中,请将对属性的任何引用替换为变量引用。它看起来像这样:

        UD1:                               UD2:
  Name        Value                  Name        Value
    SERVER      ${__P(Server)}          SERVER      devdomain.com
    PORT        ${__P(Port)}            PORT        4111


Some HTTP Request

Domain: ${SERVER}

如果使用用户参数,它将与上面的概念相同。

How are you passing in values from non-GUI mode? via CSV, using properties, User-Parameters, etc.?

If CSV, this is an easy fix. Simply create a User Defined Variables (UDV) object at the Test Plan Level and "hard code" all your parameters (Server, port, etc.). Keep your CSV config. If you run in GUI mode, disable the CSV and enable the UDV. When you save the file, keep the CSV enabled and the UDV disabled - that way when you run from non-GUI it'll read the CSV file.

If using properties, I would do the following: Create a UDV with all your parameters (Server, etc.). Before entering values, copy the component so you have TWO identical UDVs. In UDV 1, enter the property value from the command line. In UDV 2, enter the "hard coded" values. Throughout your script, replace any references to the properties with variable references. It would look something like this:

        UD1:                               UD2:
  Name        Value                  Name        Value
    SERVER      ${__P(Server)}          SERVER      devdomain.com
    PORT        ${__P(Port)}            PORT        4111


Some HTTP Request

Domain: ${SERVER}

If using user-parameters, it would be the same concept as above.

合约呢 2024-11-15 20:56:45

实际上我正在使用一个名为正则表达式的函数来获取值。
这里我必须在变量下使用变量,因为有很多具有相同边界的值,所以我选择了一个段落作为 ${ABC} 并从该段落中获取值 ${XYLEM}< /代码>。两个变量都作为正则表达式创建。尝试使用 ${__V(ABC${XYLEM})};

${__setProperty{Search_Investment_Banking,$Investment_Banking}};

Actually i am using a function named as regular expression for getting value.
here i have to use variable under variable because there is lots of value with same boundary, so i have selected one paragraph as ${ABC} and fetching value from this paragraph ${XYLEM}. both the variable created as regular expression.tried with ${__V(ABC${XYLEM})};

${__setProperty{Search_Investment_Banking,$Investment_Banking}};
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文