Files
httprunner/hrp/pkg/uixt/video_crawler_test.go
2023-04-28 22:03:37 +08:00

20 lines
318 B
Go

//go:build localtest
package uixt
import "testing"
func TestVideoCrawler(t *testing.T) {
setupAndroid(t)
configs := &VideoCrawlerConfigs{
AppPackageName: "com.ss.android.ugc.aweme",
TargetCount: VideoStat{
FeedCount: 5,
LiveCount: 3,
},
}
err := driverExt.VideoCrawler(configs)
checkErr(t, err)
}