有没有办法在 JMeter 的 Selenium Webdriver Sampler 中获取线程 ID?

Is there a way to get the thread-id in Selenium Webdriver Sampler for JMeter?

我需要在我的 Webdriver Sampler 代码中获取实际线程的 id/number。 有没有办法识别代码来自 运行 的线程?

使用适合您目的的threadNum or ThreadGroupName。请检查以下快照以在 webdriver 采样器中使用它;-

希望对您有所帮助。

WDS.ctx shorthand 代表JMeterContext class instance so you should be able to use getThreadNum() 函数为了获得当前线程(虚拟用户)号:

var threadID = WDS.ctx.getThreadNum()

演示:

更多信息:The WebDriver Sampler: Your Top 10 Questions Answered