runtime-console-api-called-expected.txt 4.9 KB
Newer Older
1 2
Tests that all sessions get console api notifications.
Error in 2
3
From session 1
4 5 6 7 8
{
    method : Runtime.consoleAPICalled
    params : {
        args : [
            [0] : {
9
                description : 1
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
                type : number
                value : 1
            }
        ]
        executionContextId : <executionContextId>
        stackTrace : {
            callFrames : [
                [0] : {
                    columnNumber : 8
                    functionName : 
                    lineNumber : 0
                    scriptId : <scriptId>
                    url : 
                }
            ]
        }
        timestamp : <timestamp>
        type : error
    }
}
30
From session 2
31 32 33 34 35
{
    method : Runtime.consoleAPICalled
    params : {
        args : [
            [0] : {
36
                description : 1
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
                type : number
                value : 1
            }
        ]
        executionContextId : <executionContextId>
        stackTrace : {
            callFrames : [
                [0] : {
                    columnNumber : 8
                    functionName : 
                    lineNumber : 0
                    scriptId : <scriptId>
                    url : 
                }
            ]
        }
        timestamp : <timestamp>
        type : error
    }
}
Logging in 1
58
From session 1
59 60 61 62 63
{
    method : Runtime.consoleAPICalled
    params : {
        args : [
            [0] : {
64
                description : 2
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
                type : number
                value : 2
            }
        ]
        executionContextId : <executionContextId>
        stackTrace : {
            callFrames : [
                [0] : {
                    columnNumber : 8
                    functionName : 
                    lineNumber : 0
                    scriptId : <scriptId>
                    url : 
                }
            ]
        }
        timestamp : <timestamp>
        type : log
    }
}
85
From session 2
86 87 88 89 90
{
    method : Runtime.consoleAPICalled
    params : {
        args : [
            [0] : {
91
                description : 2
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
                type : number
                value : 2
            }
        ]
        executionContextId : <executionContextId>
        stackTrace : {
            callFrames : [
                [0] : {
                    columnNumber : 8
                    functionName : 
                    lineNumber : 0
                    scriptId : <scriptId>
                    url : 
                }
            ]
        }
        timestamp : <timestamp>
        type : log
    }
}
Error in setTimeout 1
113
From session 1
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
{
    method : Runtime.consoleAPICalled
    params : {
        args : [
            [0] : {
                type : string
                value : a
            }
        ]
        executionContextId : <executionContextId>
        stackTrace : {
            callFrames : [
                [0] : {
                    columnNumber : 25
                    functionName : setTimeout
                    lineNumber : 0
                    scriptId : <scriptId>
                    url : 
                }
            ]
        }
        timestamp : <timestamp>
        type : error
    }
}
139
From session 2
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
{
    method : Runtime.consoleAPICalled
    params : {
        args : [
            [0] : {
                type : string
                value : a
            }
        ]
        executionContextId : <executionContextId>
        stackTrace : {
            callFrames : [
                [0] : {
                    columnNumber : 25
                    functionName : setTimeout
                    lineNumber : 0
                    scriptId : <scriptId>
                    url : 
                }
            ]
        }
        timestamp : <timestamp>
        type : error
    }
}
Logging in setTimeout 2
166
From session 1
167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
{
    method : Runtime.consoleAPICalled
    params : {
        args : [
            [0] : {
                type : string
                value : b
            }
        ]
        executionContextId : <executionContextId>
        stackTrace : {
            callFrames : [
                [0] : {
                    columnNumber : 25
                    functionName : setTimeout
                    lineNumber : 0
                    scriptId : <scriptId>
                    url : 
                }
            ]
        }
        timestamp : <timestamp>
        type : log
    }
}
192
From session 2
193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
{
    method : Runtime.consoleAPICalled
    params : {
        args : [
            [0] : {
                type : string
                value : b
            }
        ]
        executionContextId : <executionContextId>
        stackTrace : {
            callFrames : [
                [0] : {
                    columnNumber : 25
                    functionName : setTimeout
                    lineNumber : 0
                    scriptId : <scriptId>
                    url : 
                }
            ]
        }
        timestamp : <timestamp>
        type : log
    }
}