Setting ALL_PAGES to true doesn't work anymore.
In the past, Last.fm's Library feature was an SPA, and switching between pages happened in the same JavaScript session.
Now navigating pages results in reloading new pages when accessing them, which refreshes the JS session. This breaks ALL_PAGES.
Solutions can be using setValue() or something like localStorage or sessionStorage .
Or it can forgo running in the browser at all. This could be a simple script to automate using any scripting language and basic HTTP requests. Or it can use some kind of WebDriver a la Selenium or something else if Last.fm makes automation difficult.
Setting
ALL_PAGEStotruedoesn't work anymore.In the past, Last.fm's Library feature was an SPA, and switching between pages happened in the same JavaScript session.
Now navigating pages results in reloading new pages when accessing them, which refreshes the JS session. This breaks
ALL_PAGES.Solutions can be using
setValue()or something likelocalStorageorsessionStorage.Or it can forgo running in the browser at all. This could be a simple script to automate using any scripting language and basic HTTP requests. Or it can use some kind of WebDriver a la Selenium or something else if Last.fm makes automation difficult.