mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-25 10:20:11 +08:00
16 lines
402 B
Go
16 lines
402 B
Go
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
|
|
}
|