Hi!
how to check if Google Conversion Tracker is working specifically if this script exists in Page
<script>
function gtag_report_conversion(url) {
var callback = function () {
if (typeof(url) != 'undefined') {
window.location = url;
}
};
gtag('event', 'conversion', {
'send_to': 'AW-xxxxxxxxxxx/yyyyyyyyyy',
'event_callback': callback
});
return false;
}
</script>