(script string, args []interface{})
| 1152 | } |
| 1153 | |
| 1154 | func (wd *remoteWD) ExecuteScriptAsync(script string, args []interface{}) (interface{}, error) { |
| 1155 | if !wd.w3cCompatible { |
| 1156 | return wd.execScript(script, args, "_async") |
| 1157 | } |
| 1158 | return wd.execScript(script, args, "/async") |
| 1159 | } |
| 1160 | |
| 1161 | func (wd *remoteWD) ExecuteScriptRaw(script string, args []interface{}) ([]byte, error) { |
| 1162 | if !wd.w3cCompatible { |
nothing calls this directly
no test coverage detected