Expand my Community achievements bar.

SOLVED

Adobe Calls Automation

Avatar

Level 1

Is there a way to fetch all the adobe calls data(eVars, props, products, event etc) fired on page?

Wanted to keep a log of the calls fired on the page for testing purpose.

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Check the new debugger 

 
It allows you to download the image request etc.... and see when the events are sent.
 
Another approach would be to use an automation framework to listen to network and log the analytics server calls.
 
I started a project a while back to do this that you might want to have a look if you want to do a project of the same https://github.com/alcazes/Puppeteer-with-Mocha-and-Chai/blob/master/docs/test_utils.md
 
 

View solution in original post

3 Replies

Avatar

Level 8

As part of your automation you need to read browser network logs and findout analytics request and read the querystring params.

We have automated our analytics implementation using above approach.

Avatar

Correct answer by
Community Advisor

Check the new debugger 

 
It allows you to download the image request etc.... and see when the events are sent.
 
Another approach would be to use an automation framework to listen to network and log the analytics server calls.
 
I started a project a while back to do this that you might want to have a look if you want to do a project of the same https://github.com/alcazes/Puppeteer-with-Mocha-and-Chai/blob/master/docs/test_utils.md
 
 

Avatar

Level 10
Do any of the answers below answer your initial question? If so, can you select one of them as the correct answer? If none of the answers already provided answer your question, can you provide additional information to better help the community solve your question?