fix: errors

This commit is contained in:
lilong.129
2025-02-09 10:51:03 +08:00
parent 5e45eb7836
commit 3038fb7430
47 changed files with 710 additions and 910 deletions
+4 -4
View File
@@ -33,17 +33,17 @@ func TestConvertTimeToSeconds(t *testing.T) {
func TestMainIOS(t *testing.T) {
uuid := "00008030-00194DA421C1802E"
device := initIOSDevice(uuid)
driver := initIOSDriver(uuid)
bundleID := "com.ss.iphone.ugc.Aweme"
wc := NewWorldCupLive(device, "", bundleID, 30, 10)
wc := NewWorldCupLive(driver, "", bundleID, 30, 10)
wc.EnterLive(bundleID)
wc.Start()
}
func TestMainAndroid(t *testing.T) {
device := initAndroidDevice(uuid)
driver := initAndroidDriver(uuid)
bundleID := "com.ss.android.ugc.aweme"
wc := NewWorldCupLive(device, "", bundleID, 30, 10)
wc := NewWorldCupLive(driver, "", bundleID, 30, 10)
wc.EnterLive(bundleID)
wc.Start()
}