代码拉取完成,页面将自动刷新
package chromedp
import (
"strings"
"testing"
"github.com/chromedp/cdproto/page"
"github.com/chromedp/cdproto/target"
)
func TestCloseDialog(t *testing.T) {
t.Parallel()
tests := []struct {
name string
accept bool
promptText string
dialogType page.DialogType
sel string
want string
}{
{
name: "AlertAcceptWithPromptText",
accept: true,
promptText: "this is a prompt text",
dialogType: page.DialogTypeAlert,
sel: "#alert",
want: "alert text",
},
{
name: "AlertDismissWithPromptText",
accept: false,
promptText: "this is a prompt text",
dialogType: page.DialogTypeAlert,
sel: "#alert",
want: "alert text",
},
{
name: "AlertAcceptWithoutPromptText",
accept: true,
dialogType: page.DialogTypeAlert,
sel: "#alert",
want: "alert text",
},
{
name: "AlertDismissWithoutPromptText",
accept: false,
dialogType: page.DialogTypeAlert,
sel: "#alert",
want: "alert text",
},
{
name: "PromptAcceptWithPromptText",
accept: true,
promptText: "this is a prompt text",
dialogType: page.DialogTypePrompt,
sel: "#prompt",
want: "prompt text",
},
{
name: "PromptDismissWithPromptText",
accept: false,
promptText: "this is a prompt text",
dialogType: page.DialogTypePrompt,
sel: "#prompt",
want: "prompt text",
},
{
name: "PromptAcceptWithoutPromptText",
accept: true,
dialogType: page.DialogTypePrompt,
sel: "#prompt",
want: "prompt text",
},
{
name: "PromptDismissWithoutPromptText",
accept: false,
dialogType: page.DialogTypePrompt,
sel: "#prompt",
want: "prompt text",
},
{
name: "ConfirmAcceptWithPromptText",
accept: true,
promptText: "this is a prompt text",
dialogType: page.DialogTypeConfirm,
sel: "#confirm",
want: "confirm text",
},
{
name: "ConfirmDismissWithPromptText",
accept: false,
promptText: "this is a prompt text",
dialogType: page.DialogTypeConfirm,
sel: "#confirm",
want: "confirm text",
},
{
name: "ConfirmAcceptWithoutPromptText",
accept: true,
dialogType: page.DialogTypeConfirm,
sel: "#confirm",
want: "confirm text",
},
{
name: "ConfirmDismissWithoutPromptText",
accept: false,
dialogType: page.DialogTypeConfirm,
sel: "#confirm",
want: "confirm text",
},
}
for _, test := range tests {
test := test
t.Run(test.name, func(t *testing.T) {
t.Parallel()
ctx, cancel := testAllocate(t, "")
defer cancel()
ListenTarget(ctx, func(ev interface{}) {
switch e := ev.(type) {
case *page.EventJavascriptDialogOpening:
if e.Type != test.dialogType {
t.Errorf("expected dialog type to be %q, got: %q", test.dialogType, e.Type)
}
if e.Message != test.want {
t.Errorf("expected dialog message to be %q, got: %q", test.want, e.Message)
}
task := page.HandleJavaScriptDialog(test.accept)
if test.promptText != "" {
task = task.WithPromptText(test.promptText)
}
go func() {
if err := Run(ctx, task); err != nil {
t.Error(err)
}
}()
case *page.EventJavascriptDialogClosed:
if e.Result != test.accept {
t.Errorf("expected result to be %t, got %t", test.accept, e.Result)
}
if e.UserInput != test.promptText {
t.Errorf("expected user input to be %q, got %q", test.promptText, e.UserInput)
}
}
})
if err := Run(ctx,
Navigate(testdataDir+"/dialog.html"),
Click(test.sel, ByID, NodeVisible),
); err != nil {
t.Fatal(err)
}
})
}
}
func TestWaitNewTarget(t *testing.T) {
t.Parallel()
ctx, cancel := testAllocate(t, "newtab.html")
defer cancel()
ch := WaitNewTarget(ctx, func(info *target.Info) bool {
return info.URL != ""
})
if err := Run(ctx, Click("#new-tab", ByID)); err != nil {
t.Fatal(err)
}
blankCtx, cancel := NewContext(ctx, WithTargetID(<-ch))
defer cancel()
var urlstr string
if err := Run(blankCtx,
Location(&urlstr),
WaitVisible(`#form`, ByID),
); err != nil {
t.Fatal(err)
}
if !strings.HasSuffix(urlstr, "form.html") {
t.Errorf("want to be on form.html, at %q", urlstr)
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。