From d1e18aa4d975060283a29bcc74182d82f23201fa Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Sun, 3 Jun 2018 15:20:38 +0200 Subject: behavior: Wrap extract links script in anonymous namespace Otherwise it may clash with symbols defined by the page. --- crocoite/behavior.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'crocoite/behavior.py') diff --git a/crocoite/behavior.py b/crocoite/behavior.py index c658699..95e8160 100644 --- a/crocoite/behavior.py +++ b/crocoite/behavior.py @@ -256,7 +256,8 @@ class ExtractLinks (Behavior): def onfinish (self): tab = self.loader.tab self.useScript (self.script) - self.links = list (set (tab.Runtime.evaluate (expression=self.script, returnByValue=True)['result']['value'])) + result = tab.Runtime.evaluate (expression=self.script, returnByValue=True) + self.links = list (set (result['result']['value'])) # available behavior scripts. Order matters, move those modifying the page # towards the end of available -- cgit v1.2.3