feat: add ClearFiles(paths ...string)

This commit is contained in:
lilong.129
2025-03-27 19:37:35 +08:00
parent d2f92923ee
commit f73d91da9c
6 changed files with 26 additions and 1 deletions

View File

@@ -1002,6 +1002,11 @@ func (wd *WDADriver) ClearImages() error {
return err
}
func (wd *WDADriver) ClearFiles(paths ...string) error {
log.Warn().Msg("ClearFiles not implemented in WDADriver")
return nil
}
type wdaResponse struct {
Status int `json:"status"`
SessionID string `json:"sessionId"`