node.js - getting window instance with chrome-remote-interface -
i'm using chrome-remote-interface node package. need hold of window object in order bootstrap angular , wait angular event fired app code signal rendering complete.
doing:
const window = await runtime.evaluate({expression: 'window'});
doesn't work... there way i'm missing?
thanks!
Comments
Post a Comment