JMeter:是否可以将 UI 值分配给 JMeter 变量

JMeter: Is it possible to assign a UI value to a JMeter variable

我想登录电子邮件服务器并从 inbox(5) 的变量中读取值“5”以使用它further.Is这可能吗?

如果您的问题是关于登录邮件服务器 Web 界面的问题 - 它是 "classic" JMeter correlation example which can be handled by Regular Expression Extractor。您需要使用的正则表达式看起来像

(?i)inbox\((\d+)\)

因此您将能够将该值提取到 JMeter 变量中并在测试中使用它。

顺便说一句,您可以使用 Mail Reader Sampler which talks directly to the email server via POP3 or IMAP protocol and you will be able to test email server directly and abstract from web interface. See Load Testing Your Email Server: How to Send and Receive E-mails with JMeter 指南了解有关使用 JMeter 测试电子邮件服务器的更多信息。