refactor: rename files

This commit is contained in:
lilong.129
2025-02-06 17:58:44 +08:00
parent 603ac2a317
commit 82001882b8
13 changed files with 1 additions and 1 deletions

15
pkg/uixt/driver_input.go Normal file
View File

@@ -0,0 +1,15 @@
package uixt
import (
"github.com/pkg/errors"
"github.com/httprunner/httprunner/v5/code"
)
func (dExt *DriverExt) Input(text string) (err error) {
err = dExt.Driver.Input(text)
if err != nil {
return errors.Wrap(code.MobileUIInputError, err.Error())
}
return nil
}