The browser.fire method does not seem to trigger event handlers attached through Backbone.Events. (it works fine for other cases such as clicking anchor tags/buttons)
See this gist for a test case on documentClouds site: https://gist.github.com/1256944
If the first thing you do when going to the url is click the 'Open' button you get an alert, but also the 'overlay' class is added to the body element - this is what im checking for.
You can see from the test that when using browser.fire 'click', that the prompt isn't shown, and the overlay class is not seen.
However, when triggering the click event using jQuery's click() method (via browser.evaluate), then the overlay class is seen...