feat: add PushFile for ADBDriver

This commit is contained in:
lilong.129
2025-03-27 19:56:12 +08:00
parent 7876b747ba
commit 4722553537
6 changed files with 102 additions and 81 deletions
+5
View File
@@ -1002,6 +1002,11 @@ func (wd *WDADriver) ClearImages() error {
return err
}
func (wd *WDADriver) PushFile(localPath string, remoteDir string) error {
log.Warn().Msg("PushFile not implemented in WDADriver")
return nil
}
func (wd *WDADriver) PullFiles(localDir string, remoteDirs ...string) error {
log.Warn().Msg("PullFiles not implemented in WDADriver")
return nil