-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Fix errors : Google Analytics tests no longer functioning correctly #930 #932
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
marktech0813
wants to merge
4
commits into
cypress-io:master
Choose a base branch
from
marktech0813:fix-errors
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+53
−13
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
ef298dc
Google Analytics tests no longer functioning correctly #930
marktech0813 3a84c77
Google Analytics tests no longer functioning correctly #930
marktech0813 5eef733
Google Analytics tests no longer functioning correctly #930
marktech0813 e73de6d
Add projectId to Cypress configuration
marktech0813 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -14,11 +14,54 @@ <h1>My Application</h1> | |
| <button id="register">Register</button> | ||
|
|
||
| <script> | ||
| // standard google analytics code | ||
| (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ | ||
| (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), | ||
| m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) | ||
| })(window,document,'script','https://www.google-analytics.com/analytics.js','ga'); | ||
| // lightweight local GA shim that sends expected GET pixel requests | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. do you have a source url where you got this shim from @marktech0813? |
||
| ;(function (w) { | ||
| if (!w.ga) { | ||
| let currentPage = '' | ||
| function sendCollect (params) { | ||
| const u = new URL('https://www.google-analytics.com/collect') | ||
| Object.keys(params).forEach((k) => { | ||
| if (params[k] != null && params[k] !== '') { | ||
| u.searchParams.set(k, params[k]) | ||
| } | ||
| }) | ||
| // trigger GET request similar to analytics.js pixel | ||
| new Image().src = u.toString() | ||
| } | ||
|
|
||
| w.ga = function () { | ||
| const args = Array.prototype.slice.call(arguments) | ||
| const cmd = args[0] | ||
| if (cmd === 'create') { | ||
| // no-op in shim | ||
| return | ||
| } | ||
| if (cmd === 'set') { | ||
| // e.g. ga('set', 'page', 'index.html') | ||
| if (args[1] === 'page') { | ||
| currentPage = args[2] || '' | ||
| } | ||
| return | ||
| } | ||
| if (cmd === 'send') { | ||
| const payload = args[1] | ||
| if (typeof payload === 'string' && payload === 'pageview') { | ||
| const page = args[2] || currentPage || '' | ||
| sendCollect({ t: 'pageview', dp: page }) | ||
| return | ||
| } | ||
| if (payload && typeof payload === 'object' && payload.hitType === 'event') { | ||
| sendCollect({ | ||
| ec: payload.eventCategory, | ||
| ea: payload.eventAction, | ||
| el: payload.eventLabel, | ||
| }) | ||
| return | ||
| } | ||
| } | ||
| } | ||
| } | ||
| })(window) | ||
|
|
||
| ga('create', 'UA-XXXXX-Y', 'auto'); | ||
| ga('set', 'page', 'index.html'); | ||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.