Hi.
We are using a test account and trying to test uploading Enhanced Conversions.
I am trying to get the number of conversions to be above 1 in the Ads console, but it is still at 0.0.
There are no specific messages on the diagnostics page.
We are using the Python SDK and are referring to
https://developers.google.com/google-ads/api/docs/conversions/enhance-conversions .
The following is the Partial Error message obtained from the Python SDK.
`Partial error encountered: No click was found for the given user identifiers that could be applied to the specified conversion action., at conversions[0].user_identifiers`
For the user_identifier, we use an email address that actually exists as a gmail account.
How can I work around this error message, as I believe that the test account cannot actually serve ads and will not get clicks.
I would like to accomplish the test with a test account, since there is no actual campaign in operation and the goal is to implement it using the Ads API.
About the convesion on the test account:
- Conversion Tracking ID: AW-10862359481
- Conversion Label: hhLLCJae-acDELnnybso
Implemented the following in Javascript:
```
<script async src="
https://www.googletagmanager.com/gtag/js?id=AW-10862359481"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'AW-10862359481', { 'allow_enhanced_conversions': true });
</script>
<script>
gtag('event', 'conversion', { 'send_to': 'AW-10862359481/hhLLCJae-acDELnnybso' });
</script>
```