From 27ee92c8721f982b79432689dbcb5439bb4fadc2 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Wed, 5 Jun 2019 20:57:55 +0100 Subject: extend the monkey test tooling to cope with ssl certificate windows --- test/monkey-tests/sslcert.yaml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 test/monkey-tests/sslcert.yaml (limited to 'test/monkey-tests') diff --git a/test/monkey-tests/sslcert.yaml b/test/monkey-tests/sslcert.yaml new file mode 100644 index 000000000..96df2d651 --- /dev/null +++ b/test/monkey-tests/sslcert.yaml @@ -0,0 +1,33 @@ +title: Test the SSL certificate error functionality +group: real-world +steps: +- action: launch + language: en +- action: window-new + tag: win1 +- action: navigate + window: win1 + url: https://badssl.com/ +- action: block + conditions: + - window: win1 + status: complete +- action: plot-check + window: win1 + checks: + - text-contains: "badssl.com" +- action: navigate + window: win1 + url: https://expired.badssl.com/ +- action: block + conditions: + - window: win1 + status: complete +- action: plot-check + window: win1 + checks: + - text-not-contains: "expired. badssl.com" +- action: window-close + window: win1 +- action: quit + -- cgit v1.2.3