Hi,

On Wednesday, July 12, 2017 at 7:29:41 PM UTC+2, Vijeta Sah wrote:
>
> I am fairly new to code coverage tools and am looking for a way to 
> determine code coverage when tests are run using automation frameworks like 
> Selenium, UFT, Qualitiasoft etc. Does JaCoCo work for this?
>

JaCoCo is completely independent from any testing framework - measurement 
of execution of Java code is independent from the way it is executed.
 

> If So, is there a guide on how to implement this?
>

Our official documentation available at 
http://www.jacoco.org/jacoco/index.html

In general in few words:
* start application with JaCoCo Java Agent to record its execution
* do some actions in application for example by execution of automated 
tests such as Selenium
* stop application
* generate report - it will contain information about which code was 
covered by performed actions

Exact details are heavily dependent on the way you automate this process. 
There are plenty of various examples in internet by keywords "JaCoCo", 
"Selenium", etc.

Hope this helps.

Regards,
Evgeny

-- 
You received this message because you are subscribed to the Google Groups 
"JaCoCo and EclEmma Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jacoco/a3f821d3-da3f-4bc0-9b8d-6ec53827c6ac%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to