commercetest / vitals-scraper

Collect data to assist in analysing Google Play Console Android Vitals
MIT License
6 stars 2 forks source link

Auto-complete the splash screen if it appears #64

Open julianharty opened 4 years ago

julianharty commented 4 years ago

The new console sometimes displays a mandatory splash screen which needs to be clicked through screen-by-screen before it disappears. It'd be helpful if the script can detect and deal with this if it does appear.

julianharty commented 4 years ago

Relevant selectors include:

document.querySelector('console-carousel .mdc-button').click() to click the 'Next' pseudo button on the splash screens. document.querySelectorAll('console-carousel .button-content')[1].click() clicks the second of the buttons on the final screen. I'd prefer to match on the text of the pseudo button.