I am working on Google Analytics automation test with Selenium WebDriver java bindings. Our site has Google Analytics tracking events set on important elements on the site. I need to verify that on clicking a certain element under test, the Google Analytic event is in fact fired.
I'm testing it on FireFox. When I click F12, I can see in the console that a Google Analytics is fired with message GET .gif
on each element click event.
SampleCode :-
WebDriver wd = new FirefoxDriver();
wd.get("/");
wd.findElement(By.linkText("Document Referece")).click();
wd.findElement(By.id("Ex2vc2")).click();
How can I achieve this task? I have googled it but could not find good answers. If anyone can help me with some references or sample code I would be very Thankful.
I am working on Google Analytics automation test with Selenium WebDriver java bindings. Our site has Google Analytics tracking events set on important elements on the site. I need to verify that on clicking a certain element under test, the Google Analytic event is in fact fired.
I'm testing it on FireFox. When I click F12, I can see in the console that a Google Analytics is fired with message GET http://www.google-analytics./__utm.gif
on each element click event.
SampleCode :-
WebDriver wd = new FirefoxDriver();
wd.get("http://www.dummyExample./");
wd.findElement(By.linkText("Document Referece")).click();
wd.findElement(By.id("Ex2vc2")).click();
How can I achieve this task? I have googled it but could not find good answers. If anyone can help me with some references or sample code I would be very Thankful.
Share Improve this question edited Jul 14, 2017 at 11:16 Ripon Al Wasim 37.8k42 gold badges159 silver badges178 bronze badges asked Jul 25, 2014 at 7:28 Little birdLittle bird 1,0887 gold badges29 silver badges61 bronze badges 2- This is just testing Google's Analytics JavaScript (which Google will already do!). I don't understand how this achieves anything. – Arran Commented Jul 25, 2014 at 9:56
- @Arran : I want to capture in the log that which click event has google analytics. – Little bird Commented Jul 25, 2014 at 11:14
4 Answers
Reset to default 4- Good way to test GA is by using javascript. Example shows tests with phantomjs, because it's faster with js stuff, but i think you could use FF or other browsers as well. Also Author added github link with code to try it. The main approach of test is cool, but it may take time to create code for that and support it later.
http://viget./extend/testing-google-analytics-with-phantomjs
Second way is to use HttpProxy. AFAIK there was tool - BrowserMobProxy. You'll be able to sniff all requests on testing website, but they in HAR format. So the algorithm is simple, enable proxy, open website, do actions, sniff requests, parse them and assert the values.
Change endpoint and save all requests to assert them. So usually analytics sends requests to the same url, like 'http://google./analytics' or whatever. So, you can change this behavior on testing webserver. F.e. add this url to /etc/hosts with localhost address. And then all requests on webserver which are sent to GA domain will be received by webserver.
That will require extra programming. But it's the cleanest way for testing IMHO.
It can be done using Java script mand to capture the event triggered in browser and same script will capture event for different browser(tested for chrome and Firefox). Basically it is the same way as we do in console window to capture event
**window.dataLayer[0]**.event
just store this value in some variable and pare with expected event, it will give the first event which got triggered and to move next event just use
((JavascriptExecutor) driver).executeScript("window.dataLayer.shift() ");
which will go and capture next event.
I remend using Charles Proxy charles to capture and verify analytics calls using it's web interface / API. For example, if you wanted to check that a call to action was firing the correct event you would:
- Start recording using the Charles API
- Click the button using Selenium
- Stop the recording using the Charles API
- Retrieve the recorded session as JSON using the Charles API
- Check for the session for the expected analytics acceptance criteria
An example video can be found here.
You can't capture the output from the console tab by pressing F12 in terms of automation.
You need to fire the click function through automation script and then you can check the list of events fired in google analytics tool. For that sign up in this URL http://www.google./analytics/
Set your URL and domain here. Then after executing your tests on events fired e to the analytics tool and check the output.