在 UI 自动化工具的脚本中,如何导入另一个脚本?
在为 UI 自动化工具用 JavaScript 编写的脚本中,如何导入另一个 JavaScript 文件?
Within a script written in JavaScript for the UI Automation instrument, how do I import another JavaScript file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
添加类似内容,
在 UI Automation 中,您可以在脚本顶部 以使其从另一个 JavaScript 文件中提取代码。这可用于在共享源文件中存储常见测试或其他辅助函数。
Within UI Automation, you can add something like
at the top of your script to have it pull in code from another JavaScript file. This can be used for storing common testing or other helper functions within a shared source file.