# get / ok 1 - browser can connect to context.load_factories # get /exception/noException ok 2 - request parameter module is exception ok 3 - request parameter action is noException ok 4 - status code is 200 ok 5 - response content matches regex /foo/ # get /exception/throwsException ok 6 - request parameter module is exception ok 7 - request parameter action is throwsException ok 8 - status code is 500 ok 9 - response returns an exception of class Exception # get /exception/throwsException ok 10 - request parameter module is exception ok 11 - request parameter action is throwsException ok 12 - status code is 500 ok 13 - response returns an exception of class Exception ok 14 - response exception message matches regex /Exception message/ # get /exception/throwsException ok 15 - request parameter module is exception ok 16 - request parameter action is throwsException ok 17 - status code is 500 ok 18 - response returns an exception of class Exception ok 19 - response exception message matches regex /message/ # get /exception/throwsException ok 20 - request parameter module is exception ok 21 - request parameter action is throwsException ok 22 - status code is 500 ok 23 - response exception message does not match regex !/sfException/ # get /exception/throwsSfException ok 24 - request parameter module is exception ok 25 - request parameter action is throwsSfException ok 26 - status code is 500 ok 27 - response returns an exception of class sfException # get /exception/throwsSfException ok 28 - request parameter module is exception ok 29 - request parameter action is throwsSfException ok 30 - status code is 500 ok 31 - response returns an exception of class sfException ok 32 - response exception message is sfException message # get /browser ok 33 - response content matches regex /html/ ok 34 - response selector h1 matches html # get /browser/text ok 35 - response content matches regex /text/ ok 36 - The DOM is not accessible if the response content type is not HTML # get /browser/responseHeader ok 37 - status code is 200 ok 38 - response header content-type is text/plain; charset=utf-8 (text/plain; charset=utf-8) ok 39 - response header content-type matches #text/plain# (text/plain; charset=utf-8) ok 40 - response header content-type matches !#text/html# (text/plain; charset=utf-8) ok 41 - response header foo is bar (bar, foobar) ok 42 - response header foo is foobar (bar, foobar) # get /cookie ok 43 - cookie foofoo does not exist. ok 44 - cookie foo exists. ok 45 - cookie foo content is ok ok 46 - cookie foo content matches regex /a/ ok 47 - cookie foo content does not match regex !/z/ ok 48 - response selector p matches bar.foo- # get /cookie ok 49 - cookie foo exists. ok 50 - cookie foo content is ok ok 51 - cookie foo content matches regex /a/ ok 52 - cookie foo content does not match regex !/z/ ok 53 - response selector p matches bar.foo- # get /cookie ok 54 - cookie foo does not exist. ok 55 - cookie bar exists. ok 56 - response selector p matches .foo- # get /cookie ok 57 - cookie foo does not exist. ok 58 - cookie bar does not exist. ok 59 - response selector p matches .- # get /cookie/setCookie # get /cookie ok 60 - cookie foo exists. ok 61 - cookie foo content is ok ok 62 - cookie foo content matches regex /a/ ok 63 - cookie foo content does not match regex !/z/ ok 64 - response selector p matches bar.foo-barfoo # get /cookie ok 65 - cookie foo exists. ok 66 - cookie foo content is ok ok 67 - cookie foo content matches regex /a/ ok 68 - cookie foo content does not match regex !/z/ ok 69 - response selector p matches bar.foo-barfoo # get /cookie ok 70 - cookie foo does not exist. ok 71 - cookie bar exists. ok 72 - response selector p matches .foo-barfoo # get /cookie/removeCookie # get /cookie ok 73 - cookie foo does not exist. ok 74 - cookie bar exists. ok 75 - response selector p matches .foo- # get /cookie/setCookie # get /cookie ok 76 - cookie foo does not exist. ok 77 - cookie bar does not exist. ok 78 - response selector p matches .- # get /browser ok 79 - request method is GET # post /browser ok 80 - request method is POST # put /browser ok 81 - request method is PUT # get /browser/templateCustom ok 82 - response selector #test matches template # get /browser/templateCustom/custom/1 ok 83 - response selector #test matches template 1 # get /browser/templateCustom ok 84 - response selector #test matches template # get /browser/redirect1 ok 85 - request parameter module is browser ok 86 - request parameter action is redirect1 ok 87 - status code is 302 ok 88 - request parameter module is browser ok 89 - request parameter action is redirectTarget1 ok 90 - status code is 200 # get /browser/redirect2 ok 91 - request parameter module is browser ok 92 - request parameter action is redirect2 ok 93 - status code is 302 ok 94 - request parameter module is browser ok 95 - request parameter action is redirectTarget2 ok 96 - status code is 200 1..96 # Looks like everything went fine.