(script string, args []interface{})
| 1159 | } |
| 1160 | |
| 1161 | func (wd *remoteWD) ExecuteScriptRaw(script string, args []interface{}) ([]byte, error) { |
| 1162 | if !wd.w3cCompatible { |
| 1163 | return wd.execScriptRaw(script, args, "") |
| 1164 | } |
| 1165 | return wd.execScriptRaw(script, args, "/sync") |
| 1166 | } |
| 1167 | |
| 1168 | func (wd *remoteWD) ExecuteScriptAsyncRaw(script string, args []interface{}) ([]byte, error) { |
| 1169 | if !wd.w3cCompatible { |
nothing calls this directly
no test coverage detected