test-manager
latest
false
- 入门指南
- 项目管理
- 项目操作和实用程序
- Test Manager 设置
- ALM 工具集成
- API 集成
- 故障排除
重要 :
新发布内容的本地化可能需要 1-2 周的时间才能完成。

Test Manager 用户指南
上次更新日期 2026年3月18日
请参阅常见错误和调试失败场景列表。
Selector not found
解决方案:更新用户界面选取器并在Studio中进行验证。
Package mismatch
解决方案:升级到受支持的包版本并重新部署。
Robot connection issues
解决方案:检查 Orchestrator 配置和凭据。
Debugging failed scenarios
解决方案:使用应用程序日志,深入了解
HTTP错误详细信息,并分析基础架构使用情况图表以隔离根本原因。
Troubleshooting Missing PT Metrics (Port 5671 Blocked)
If Performance Testing charts are empty or metrics are missing, it may be caused by a firewall blocking Port 5671, which is required for communication with Azure Event Hub. The UiPath Robot uses this port to send performance metrics to the Performance Testing Service. If the port is blocked, metrics cannot be transmitted.
Context:
- Communication protocol
- Protocol: AMQP (Advanced Message Queuing Protocol)
- Transport: TCP
- Port: 5671
- 加密方式
- All communication is secured using TLS 1.2.
- Encryption in transit is enforced by Azure Event Hub.
- Data at rest is encrypted using Microsoft-managed keys UiPath does not apply additional encryption at the application layer.
- 身份验证
- Authentication is handled using Shared Access Signature (SAS) tokens.
- Tokens are issued and validated by Azure Event Hub.
- Only authenticated clients can publish messages.
- Endpoint details
- Endpoint format:
*.<http://servicebus.windows.net|servicebus.windows.net>. - Service: Azure Event Hub (Microsoft Azure managed service).
- Endpoint format:
- 架构概述
- The Robot sends performance metrics using AMQP over TLS.
- Data is transmitted to Azure Event Hub.
- The Performance Testing service consumes the events.
- Metrics are processed and displayed in dashboards.
Solution:
- Run the following command on the Robot machine using Windows PowerShell.
Test-NetConnection -ComputerName <your-eventhub-namespace>.<http://servicebus.windows.net|servicebus.windows.net> -Port 5671Test-NetConnection -ComputerName <your-eventhub-namespace>.<http://servicebus.windows.net|servicebus.windows.net> -Port 5671 - 解释结果。
- Port is open (Expected). This means the Robot can successfully communicate with Azure Event Hub.
TcpTestSucceeded : TrueTcpTestSucceeded : True - Port is blocked. This indicates that the firewall is blocking outbound communication on Port 5671.
WARNING: TCP connect to (x.x.x.x : 5671) failedWARNING: TCP connect to (x.x.x.x : 5671) failedTcpTestSucceeded : FalseTcpTestSucceeded : FalseAllow the following outbound connection (firewall rule).
ProtocolPortDestinationTCP5671*.<http://servicebus.windows.net|servicebus.windows.net>ProtocolPortDestinationTCP5671*.<http://servicebus.windows.net|servicebus.windows.net>
- Port is open (Expected). This means the Robot can successfully communicate with Azure Event Hub.
Additional information:
- If port 5671 is blocked, performance metrics cannot be delivered, resulting in empty charts.
- If connectivity is successful but metrics are still missing, further investigation of Robot logs is required.