mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-12 02:21:29 +08:00
16 lines
280 B
Go
16 lines
280 B
Go
package uixt
|
|
|
|
import (
|
|
"github.com/pkg/errors"
|
|
|
|
"github.com/httprunner/httprunner/v4/hrp/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
|
|
}
|