我可以将 QuickTest 打印日志大小限制配置为超过 1000 行吗?

发布于 2024-11-18 00:28:04 字数 145 浏览 7 评论 0原文

我们大多数人都知道 Print 语句将其字符串参数输出到 Quicktest 打印日志中,这是一个可滚动的文本查看器,每当有内容打印到其中时就会打开。

好像有1000行的限制。 我可以在某处配置它吗?

谢谢。

Most of us know that the Print statement outputs its string argument into the Quicktest print log, a scrollable text viewer which opens whenever something is printed into it.

It seems to have a limit of 1000 lines.
Can I configure that somewhere?

Thanks.

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

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

发布评论

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

评论(1

童话 2024-11-25 00:28:04

不,线路限制不可配置。

Print 命令主要是为了方便使用 printf 调试

如果您想打印更多行,您可以编写一个没有此限制的简单 COM 对象,并从脚本中使用它。

No, the line limit isn't configurable.

The Print command is meant primarily in order to facilitate debugging tests using printf debugging.

If you want to print more lines you can write a simple COM object that doesn't have this limit and use it from your script.

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