docs: enter WC live

This commit is contained in:
debugtalk
2022-11-27 00:16:02 +08:00
parent 21b57ac70a
commit 446e37236a
6 changed files with 130 additions and 27 deletions

12
hrp/cmd/ios/ios_test.go Normal file
View File

@@ -0,0 +1,12 @@
//go:build localtest
package ios
func TestGetDevice(t *testing.T) {
device, err := getDevice(udid)
if err != nil {
t.Fatal(err)
}
t.Logf("device: %v", device)
}

5
hrp/pkg/uixt/input.go Normal file
View File

@@ -0,0 +1,5 @@
package uixt
func (dExt *DriverExt) Input(text string) (err error) {
return dExt.Driver.Input(text)
}