gpt4 book ai didi

c# - 如何在 Windows UWP 中的同一个 WebView(不是新窗口)中打开弹出窗口?

转载 作者:可可西里 更新时间:2023-11-01 03:02:27 25 4
gpt4 key购买 nike

我的 UWP 程序中有一个 WebView 可以正常工作,除了当我单击通常在新窗口(弹出窗口)中打开的按钮时。

当我点击一个通常在新窗口中打开的按钮时,我只是希望它在同一个 WebView 中打开,但它在我的默认浏览器中打开。我可以设置一个设置来解决这个问题吗?

更新:

我已经回答了我原来的问题。我添加了一个 NewWindowRequested 事件处理程序,打开了

args.uri

在同一个webview中然后说

e.handled=true

不过我有一个新问题,它可能只与 jeopardy.com 有关。我正在尝试制作一个可以通过谷歌搜索问题的“Watson”,但是当我打开练习测试时,它永远不会启动。

所以基本上在我的 WebView 中我转到 https://www.jeopardy.com/be-a-contestant/practice-tests 并点击参加模拟测试。当它打开新窗口时,计时器永远不会启动。我猜他们正试图阻止人们在他们的问题上使用程序。有人有解决方法吗?

它也适用于我

enter image description here

与看起来像(右侧)的 Webview 相反

enter image description here

您认为这可能与 javascript 函数或窗口大小有关?

更新 2:

对于任何想提供帮助的人,这里有一个 github 存储库:

https://github.com/SethKitchen/JeopardyWinner

最佳答案

我查看了您的问题。事实上,您需要使用在第一页上创建的一些数据来初始化您的第二页。如果您使用标准浏览器直接访问第二个页面 ( https://www.jeopardy.com/be-a-contestant/practice-test-client ),您的行为将与您在 UWP 应用程序中的行为相同。

如果您启动浏览器的调试器工具 (F12),您将看到主要脚本是:

所以,我已经设法通过使用调试器控制台在第二页中注入(inject)一些内容来启动计时器(我已经用 Firefox 对此进行了测试)。以下是执行步骤(将整个内容复制/粘贴到您的控制台并执行):

var s = document.createElement("script");s.type = "text/javascript";s.src = "https://www.jeopardy.com/Assets/jeopardy/easyxdm/exdm_helper.js";$("head").append(s); 

s.src = "https://www.jeopardy.com/Assets/jeopardy/js/main.js";$("head").append(s);

s.src = "https://www.jeopardy.com/Assets/jeopardy/js/practice_test_launcher.js";$("head").append(s);

backendUserCheck(); test_launcher.init();test_launcher.testWindow = window;

$('body').append('<div data - testfile = "/Assets/jeopardy/json/test_practice_2011.json" data - testid = "1" class="button launch_practice_test" data-testtype="adult">Take the practice test</div>');

var button = $('.launch_practice_test');test_launcher.testQuestionsFile = button.attr('data-testfile');test_launcher.testType = button.attr('data-testtype');test_launcher.testTitle = button.attr('data-testtitle');test_launcher.testID = button.attr('data-testid');

testModule.parentRef=test_launcher;

testModule.deleteLocalStorage();
testModule.checkLocalStorage();
testModule.getLocalStorage();
testModule.testID = testModule.parentRef.getTestID();
testModule.testType = testModule.parentRef.getTestType();
testModule.testFile = testModule.parentRef.getFile();
testModule.hardwareTest = testModule.parentRef.checkIfDryRun();

testModule.sendTestStart();

trace = function(){};

trace = {
output : true,
queue : [],

push : function(data)
{
trace.queue.push(data);
if(trace.output)
{
trace.post();
}
return
},

post : function()
{
$.each(trace.queue, function(i,arr)
{
trace.log(arr);
});
trace.queue = [];
return
},

dump : function()
{
trace.post();
return
},

log : function(data)
{
if (!window.console){ console = {log: function() {}} };
console.log(data);
return
}
};

testModule.loadQuiz();
testModule.parentRef=test_launcher;
testModule.startDate = testModule.parentRef.getStartDateInMS();

这段初始化代码是从我前面提到的 2 个主要脚本的 onload 事件或 init 方法中提取的。计时器被执行,但之后问题没有出现。我认为它缺少位于 practice_test_client.js 中的 alertParentsetTestData 的一些代码。我让你调试网页并找到必要的方法来执行。

要使其在您的 UWP 中运行,您必须将这些数据注入(inject)到您的 Web View 中。为此,您可以尝试使用 InvokeScriptAsync 方法或使用 HttpClient 下载页面并在将结果页面加载到您的 webView 之前将初始化命令添加到其中:

string content = "";
using (HttpClient client = new HttpClient())
{
content = await client.GetStringAsync(new Uri("https://www.jeopardy.com/be-a-contestant/practice-test-client"));
}

关于c# - 如何在 Windows UWP 中的同一个 WebView(不是新窗口)中打开弹出窗口?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35008132/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com