在Taurus中,如何设置“每次迭代清除cookie”为真?

发布于 2025-01-10 13:45:32 字数 480 浏览 0 评论 0原文

我试图在 Taurus yaml 中的每次迭代后清除 cookie。

我尝试了下面线程的解决方案,但它不起作用: [Google 网上论坛] https://groups.google.com/ g/codename-taurus/c/wa4xIbxkUYI?pli=1

上面的线程说: 作为参考,我是这样做的:

    modifications:
      set-prop:
        "Cookies>CookieManager.clearEachIteration": "true"

我尝试过同样的方法,但没有成功。

使用 JMeter 我可以清除 cookie,但 Taurus 需要相同的行为。任何帮助。

I am trying to clear cookies after each iteration in Taurus yaml.

I tried the solution from below thread but it didn't work:
[Google Group] https://groups.google.com/g/codename-taurus/c/wa4xIbxkUYI?pli=1

Above thread says:
For reference I did it like this:

    modifications:
      set-prop:
        "Cookies>CookieManager.clearEachIteration": "true"

I have tried the same but didn't work.

Using JMeter I can clear the cookies but need the same behavior for Taurus. Any help.

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

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

发布评论

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

评论(1

不离久伴 2025-01-17 13:45:32

“对于金牛座来说”是什么意思? Taurus 只是提供一些 JMeter 测试元素的 YAML 配置。您所指的“解决方案”是使用 Taurus 运行现有的 .jmx 脚本,

当涉及 从配置构建测试计划,请参阅文档以了解支持的内容。

如果您想使用 Taurus 不支持的某些 JMeter 功能,可以选择以下选项:

  1. 通过您引用的论坛联系 Taurus 开发人员,并要求他们实现您需要的功能
  2. 自己实现,Taurus 是一个 开源项目
  3. 切换到现有的 .jmx 脚本执行
  4. 切换到 JMeter 并停止使用 Taurus 作为包装器
  5. 使用 JR223 测试元素来执行cookie的删除,即您可以将JSR223预处理器添加到线程组中的第一个采样器并调用sampler.getCookieManager().clear()函数,其中sampler 代表 HTTPSamplerBase

What do you mean "for Taurus"? Taurus just provides YAML configuration of some of JMeter test elements. The "solution" you're referring is for running existing .jmx script using Taurus

Taurus doesn't support 100% of JMeter functionality when it comes to building test plan from config, refer the documentation to see what is supported.

If you want to use some JMeter functionality which is not supported by Taurus the options are in:

  1. Reach out to Taurus developers via the forum you're referencing and ask them to implement the functionality you need
  2. Implement it yourself, Taurus is an open source project
  3. Switch to the existing .jmx script execution
  4. Switch to JMeter and stop using Taurus as a wrapper
  5. Use JR223 Test Elements to perform the removing of cookies, i.e. you could add a JSR223 PreProcessor to the first sampler in the Thread Group and call sampler.getCookieManager().clear() function there where sampler stands for HTTPSamplerBase
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文