()
| 1102 | } |
| 1103 | |
| 1104 | func (wd *remoteWD) AlertText() (string, error) { |
| 1105 | return wd.stringCommand("/session/%s/alert/text") |
| 1106 | } |
| 1107 | |
| 1108 | func (wd *remoteWD) SetAlertText(text string) error { |
| 1109 | data, err := json.Marshal(map[string]string{"text": text}) |
nothing calls this directly
no test coverage detected