mirror of
https://github.com/httprunner/httprunner.git
synced 2026-06-02 22:39:42 +08:00
18 lines
270 B
Go
18 lines
270 B
Go
//go:build localtest
|
|
|
|
package uixt
|
|
|
|
import "testing"
|
|
|
|
func TestVideoCrawler(t *testing.T) {
|
|
setupAndroid(t)
|
|
|
|
configs := &VideoCrawlerConfigs{
|
|
AppPackageName: "com.ss.android.ugc.aweme",
|
|
}
|
|
err := driverExt.VideoCrawler(configs)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|