@patrick it looks like a browser.goto command in a mobile app is behaving differently in AC2…perhaps for the better, so not reporting as a bug.
In AC1, my page changes all have the format of:
browser1.goto('#!/dashboard', true, 'Dashboard')
When I load with AC2
That command seems to add the hash bang authomatically:
This seems more accurate:
browser1.goto('/dashboard', true, 'Dashboard')
This works, so I’m assuming I should just change my goto commands.
Agree?