Hi,
I’m trying to collect total download count from each of my apps in Google Play Console. Here is my macro (used to be functional 2 months ago):
{
"Name": "dlstat-android",
"CreationDate": "2019-6-25",
"Commands": [
{
"Command": "open",
"Target": "https://play.google.com/apps/publish/?account=0000000000000000000#AppDashboardPlace:p=com.example.app1&appid=0000000000000000000&ts=LIFETIME",
"Value": ""
},
{
"Command": "store",
"Target": "App Name",
"Value": "!csvLine"
},
{
"Command": "store",
"Target": "Downloads",
"Value": "!csvLine"
},
{
"Command": "csvSave",
"Target": "app-download-android.csv",
"Value": ""
},
{
"Command": "storeText",
"Target": "xpath=/html/body/div[2]/div/div[2]/div/div[2]/div/div[3]/div/div[2]/div/div[1]/div/div/div[2]/div/div[2]/div[2]/div[3]/div[1]/div[1]/h1",
"Value": "!csvLine"
},
{
"Command": "storeText",
"Target": "xpath=/html/body/div[2]/div/div[2]/div/div[2]/div/div[3]/div/div[2]/div/div[1]/div/div/div[2]/div/div[2]/div[3]/div[1]/div[3]/article[1]/div[1]/div[2]/div[2]/div[1]/div/div[1]/div[1]/div/div[1]/span",
"Value": "!csvLine"
},
{
"Command": "csvSave",
"Target": "app-download-android.csv",
"Value": ""
},
{
"Command": "open",
"Target": "https://play.google.com/apps/publish/?account=0000000000000000000#AppDashboardPlace:p=com.example.app2&appid=0000000000000000000&ts=LIFETIME",
"Value": ""
},
{
"Command": "storeText",
"Target": "xpath=/html/body/div[2]/div/div[2]/div/div[2]/div/div[3]/div/div[2]/div/div[1]/div/div/div[2]/div/div[2]/div[2]/div[3]/div[1]/div[1]/h1",
"Value": "!csvLine"
},
{
"Command": "storeText",
"Target": "xpath=/html/body/div[2]/div/div[2]/div/div[2]/div/div[3]/div/div[2]/div/div[1]/div/div/div[2]/div/div[2]/div[3]/div[1]/div[3]/article[1]/div[1]/div[2]/div[2]/div[1]/div/div[1]/div[1]/div/div[1]/span",
"Value": "!csvLine"
},
{
"Command": "csvSave",
"Target": "app-download-android.csv",
"Value": ""
},
{
"Command": "open",
"Target": "https://play.google.com/apps/publish/?account=0000000000000000000#AppDashboardPlace:p=com.example.app3&appid=0000000000000000000&ts=LIFETIME",
"Value": ""
},
{
"Command": "storeText",
"Target": "xpath=/html/body/div[2]/div/div[2]/div/div[2]/div/div[3]/div/div[2]/div/div[1]/div/div/div[2]/div/div[2]/div[2]/div[3]/div[1]/div[1]/h1",
"Value": "!csvLine"
},
{
"Command": "storeText",
"Target": "xpath=/html/body/div[2]/div/div[2]/div/div[2]/div/div[3]/div/div[2]/div/div[1]/div/div/div[2]/div/div[2]/div[3]/div[1]/div[3]/article[1]/div[1]/div[2]/div[2]/div[1]/div/div[1]/div[1]/div/div[1]/span",
"Value": "!csvLine"
},
{
"Command": "csvSave",
"Target": "app-download-android.csv",
"Value": ""
}
]
}
However, the second webpage did open in the tab, but an error occurred: open’ failed. No page load event detected after 10 seconds. Error detail: still same ipc secret
[status]
Playing macro dlstat-android
[info]
Executing: | open | https://play.google.com/apps/publish/?account=0000000000000000000#AppDashboardPlace:p=com.example.app1&appid=0000000000000000000&ts=LIFETIME | |
[info]
Executing: | store | App Name | !csvLine |
[info]
Executing: | store | Downloads | !csvLine |
[info]
Executing: | csvSave | app-download-android.csv | |
[info]
Executing: | storeText | xpath=/html/body/div[2]/div/div[2]/div/div[2]/div/div[3]/div/div[2]/div/div[1]/div/div/div[2]/div/div[2]/div[2]/div[3]/div[1]/div[1]/h1 | !csvLine |
[info]
Executing: | storeText | xpath=/html/body/div[2]/div/div[2]/div/div[2]/div/div[3]/div/div[2]/div/div[1]/div/div/div[2]/div/div[2]/div[3]/div[1]/div[3]/article[1]/div[1]/div[2]/div[2]/div[1]/div/div[1]/div[1]/div/div[1]/span | !csvLine |
[info]
Executing: | csvSave | app-download-android.csv | |
[info]
Executing: | open | https://play.google.com/apps/publish/?account=0000000000000000000#AppDashboardPlace:p=com.example.app2&appid=0000000000000000000&ts=LIFETIME | |
[error]
open' failed. No page load event detected after 10 seconds. Error detail: still same ipc secret
[info]
Macro failed (Runtime 17.52s)
Have anyone faced this issue before? I googled the error detail but found no solution at all.