mirror of
https://github.com/httprunner/httprunner.git
synced 2026-07-09 06:23:52 +08:00
refactor: move gwda into uixt
This commit is contained in:
15
hrp/internal/uixt/android_device.go
Normal file
15
hrp/internal/uixt/android_device.go
Normal file
@@ -0,0 +1,15 @@
|
||||
package uixt
|
||||
|
||||
type AndroidDevice struct {
|
||||
SerialNumber string `json:"serial,omitempty" yaml:"serial,omitempty"`
|
||||
Port int `json:"port,omitempty" yaml:"port,omitempty"`
|
||||
LogOn bool `json:"log_on,omitempty" yaml:"log_on,omitempty"`
|
||||
}
|
||||
|
||||
func (o AndroidDevice) UUID() string {
|
||||
return o.SerialNumber
|
||||
}
|
||||
|
||||
func InitUIAClient(device *AndroidDevice) (*DriverExt, error) {
|
||||
return nil, nil
|
||||
}
|
||||
Reference in New Issue
Block a user