Selenium waits for async resource calls before proceeding to a new page.
Ex.
<script src="https://apis.google.com/js/platform.js" async defer></script>
On a website with many external apis (such as Google Analytics and share buttons from G+, Facebook, and Twitter). Selenium spends more time waiting for async calls than it does running tests.
Is there anyway to disable this behavior, so that selenium does not wait for async external api calls?