You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I do not know where is the problem, Baidu always prompt need to verify https://www.baidu.com/
var engine = EngineBuilder.New()
.UseJint()
.Build();
engine.UseKnownUserAgent(KnownUserAgents.Windows_Firefox);
var page = await engine.OpenUrl("https://www.baidu.com");
engine.WaitDocumentLoad();
var document = page.Document;
var input = document.WaitId("kw") as HtmlInputElement;
input.Value = "123";
var button = document.WaitId("su") as HtmlInputElement;
button.Click();
Thread.Sleep(5000);
document = engine.Document;
var html = document.DocumentElement.OuterHTML;
The text was updated successfully, but these errors were encountered:
I do not know where is the problem, Baidu always prompt need to verify
https://www.baidu.com/
var engine = EngineBuilder.New()
.UseJint()
.Build();
engine.UseKnownUserAgent(KnownUserAgents.Windows_Firefox);
The text was updated successfully, but these errors were encountered: