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

@@ -448,6 +448,10 @@ func (wd *BrowserDriver) ClearImages() error {
return errors.New("not support")
}
func (wd *BrowserDriver) ClearFiles(paths ...string) error {
return errors.New("not support")
}
func (wd *BrowserDriver) PushImage(localPath string) error {
return errors.New("not support")
}