May or may not be helpful to you in this situation but... I have found that even in newer versions of BP it does not typically enjoy nested collections when they are nested to the extreme that the default BP JSON to Collection action nests them, eg. ...
There are a number of ways to do what you want depending on what browser you are using and what kind of reliability you want out of it. You could do something as simple as sending F5 to the browser or you could click the browser's refresh button or y...
Honestly, for even slightly advanced code I'd recommend tossing it in a dll, referencing dll on intialise, and create a code stage that simply calls the appropriate method / function from the dll. If you insist on putting this entirely in code stages...
To be honest, the easiest method is to create a simple element like a div or something on the web page and have a wait stage wait for it to exist after invoking javascript and then if you need to read a value, you read the value from that div/other e...
Ok, so to be honest the built in methods for interacting with JSON in BP are lacking. As you can see it does not handle dynamic JSON well and there is actually a few other problems (eg. JSON with Property Names that have periods in them) These will a...