Gitweb links:
...log
http://git.netsurf-browser.org/netsurf.git/shortlog/3ea6fadac295600f3d18b9cf66d3f74cb26b333d
...commit
http://git.netsurf-browser.org/netsurf.git/commit/3ea6fadac295600f3d18b9cf66d3f74cb26b333d
...tree
http://git.netsurf-browser.org/netsurf.git/tree/3ea6fadac295600f3d18b9cf66d3f74cb26b333d
The branch, master has been updated
via 3ea6fadac295600f3d18b9cf66d3f74cb26b333d (commit)
from 54be19e6c8d7bdb5530af2eb597d65802796b555 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commitdiff
http://git.netsurf-browser.org/netsurf.git/commit/?id=3ea6fadac295600f3d18b9cf66d3f74cb26b333d
commit 3ea6fadac295600f3d18b9cf66d3f74cb26b333d
Author: Michael Drake <[email protected]>
Commit: Michael Drake <[email protected]>
Test: Monkey driver: Improve navigate step logging.
diff --git a/test/monkey-driver.py b/test/monkey-driver.py
index c49da12..610c3fc 100755
--- a/test/monkey-driver.py
+++ b/test/monkey-driver.py
@@ -82,7 +82,9 @@ def run_test_step_action_window_close(ctx, step):
def run_test_step_action_navigate(ctx, step):
print(get_indent(ctx) + "Action: " + step["action"])
assert_browser(ctx)
+ assert(step.get('url') is not None)
tag = step['window']
+ print(get_indent(ctx) + " " + tag + " --> " + step['url'])
win = ctx['windows'].get(tag)
assert(win is not None)
win.go(step['url'])
-----------------------------------------------------------------------
Summary of changes:
test/monkey-driver.py | 2 ++
1 file changed, 2 insertions(+)
diff --git a/test/monkey-driver.py b/test/monkey-driver.py
index c49da12..610c3fc 100755
--- a/test/monkey-driver.py
+++ b/test/monkey-driver.py
@@ -82,7 +82,9 @@ def run_test_step_action_window_close(ctx, step):
def run_test_step_action_navigate(ctx, step):
print(get_indent(ctx) + "Action: " + step["action"])
assert_browser(ctx)
+ assert(step.get('url') is not None)
tag = step['window']
+ print(get_indent(ctx) + " " + tag + " --> " + step['url'])
win = ctx['windows'].get(tag)
assert(win is not None)
win.go(step['url'])
--
NetSurf Browser
_______________________________________________
netsurf-commits mailing list
[email protected]
http://listmaster.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org