Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在检测针对 JBoss 服务器中的应用程序运行的 Selenium 测试。许多文档提到应该将 Jacoco 代理作为参数添加到 JVM。但是,它们没有说明它们是指运行 Selenium 测试的 JVM 还是运行 JBoss 应用服务器的 JVM。它们是完全不同的机器。那么,Jacoco 代理是否添加到:
1. the app server JVM upon start 2. or the JVM where Selenium tests are run?
谢谢。
我从未尝试将 JaCoCo 与 Selenium 测试一起使用,但显然代理应该以某种方式附加到运行应用程序的已编译源的 JVM,以便它可以在运行时干扰您的代码(因此,这是在服务器端)。