mirror of
https://github.com/httprunner/httprunner.git
synced 2026-07-10 23:12:41 +08:00
20 lines
318 B
Go
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)
|
|
}
|