You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When python function is called from javascript we don't know from which browser
or frame it originates. We should pass the context as a first argument, a frame
or both, browser and frame. Passing only frame would be enough if we had
!GetBrowser() method in Frame object. Or should we pass "context" dictionary
with "browser" and "frame" keys?
Original issue reported on code.google.com by [email protected] on 28 Nov 2012 at 3:25
The text was updated successfully, but these errors were encountered:
In python there is GIL (Global Interpreter Lock) that prevents more than one
thread to be running python in the same time. We may provide context (browser,
frame) in a way that does not break existing functionality, we could create a
class called CurrentJavascriptContext with methods GetBrowser() & GetFrame()
that will return the browser/frame from which current python function was
called.
Original issue reported on code.google.com by
[email protected]
on 28 Nov 2012 at 3:25The text was updated successfully, but these errors were encountered: