Open GoogleCodeExporter opened 9 years ago
Update to get around the issue you can call
@BeforeClass
public static void espressoHack(){
// For some reason, the way we are set up doesn't seem to initalize
// javascript correctly - so lets make sure it happens.
Handler mainHandler = new Handler(Looper.getMainLooper());
mainHandler.post(new Runnable() {
@Override
public void run() {
JavaScriptBridge.installBridge();
}
});
}
directly as a workaround in the interim.
Original comment by brian.pa...@gmail.com
on 15 Jul 2015 at 11:42
This is fixed in the next release, there is a synchronization issue with
installing of the JS bridge.
Original comment by slinz...@google.com
on 24 Jul 2015 at 9:51
Original issue reported on code.google.com by
brian.pa...@gmail.com
on 10 Jul 2015 at 1:35Attachments: