summaryrefslogtreecommitdiff
path: root/monkey-test/cookies.yaml
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2019-11-30 18:33:29 +0000
committerVincent Sanders <vince@kyllikki.org>2019-11-30 18:33:29 +0000
commit9ef04bd727252aee9dc6e074303f5a2aefb893e3 (patch)
treefa36b00b535dc8e80d5f6cb3182d1f8be6b10769 /monkey-test/cookies.yaml
parente694e5f3723e3c45103f0e536d22cc613cf3b41b (diff)
downloadnetsurf-test-9ef04bd727252aee9dc6e074303f5a2aefb893e3.tar.gz
netsurf-test-9ef04bd727252aee9dc6e074303f5a2aefb893e3.tar.bz2
change how divisions are implemented
This allows tests to be limited to appear only in a single division reducing how many test files must be parsed for all divisions.
Diffstat (limited to 'monkey-test/cookies.yaml')
-rw-r--r--monkey-test/cookies.yaml65
1 files changed, 0 insertions, 65 deletions
diff --git a/monkey-test/cookies.yaml b/monkey-test/cookies.yaml
deleted file mode 100644
index 76bf721..0000000
--- a/monkey-test/cookies.yaml
+++ /dev/null
@@ -1,65 +0,0 @@
-title: Test ecmascript cookies behaviour
-group: ecmascript
-steps:
-- action: launch
- language: en
- options:
- - enable_javascript=1
-- action: window-new
- tag: win1
-
-# Ensure we can load the page properly in the first place
-- action: navigate
- window: win1
- url: https://test.netsurf-browser.org/cgi-bin/cookies.cgi
-- action: block
- conditions:
- - window: win1
- status: complete
-- action: plot-check
- window: win1
- checks:
- - text-contains: "JSON: 0"
-
-
-# Now check that refreshing has incremented the counter
-- action: reload
- window: win1
-- action: block
- conditions:
- - window: win1
- status: complete
-- action: plot-check
- window: win1
- checks:
- - text-contains: "JSON: 1"
-
-# Now check that refreshing has incremented the counter
-- action: reload
- window: win1
-- action: block
- conditions:
- - window: win1
- status: complete
-- action: plot-check
- window: win1
- checks:
- - text-contains: "JSON: 2"
-
-# Now check that using http rather than https resets the counter
-- action: navigate
- window: win1
- url: http://test.netsurf-browser.org/cgi-bin/cookies.cgi
-- action: block
- conditions:
- - window: win1
- status: complete
-- action: plot-check
- window: win1
- checks:
- - text-contains: "JSON: 0"
-
-- action: window-close
- window: win1
-- action: quit
-