in reply to Re^4: WWW::Mechanize::Chrome Instagram
in thread WWW::Mechanize::Chrome Instagram

Actually, there already is an (undocumented) option that you can maybe use to avoid the forced waiting for an HTTP response. The option name is intrapage and it skips all that waiting. Actually determining whether all data has arrived is then up to you:

$mech->click( { intrapage => 1, selector => '#thatButton', single => 1 + } );