gpt4 book ai didi

javascript - 使用 Chrome 扩展覆盖 Element.prototype.attachShadow

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:56:49 29 4
gpt4 key购买 nike

我需要访问具有封闭 Shadow DOM 的 Web 组件的 DOM 以进行一些 Selenium 测试。我在几个引用资料中读到,您可以在文档启动时覆盖 Element.prototype.attachShadow,以便将阴影从关闭更改为打开。为此,我创建了一个 Chrome 扩展程序。下面是我的 manifest.json:

{
"name": "SeleniumTesting",
"description": "Extension to open closed Shadow DOM for selenium testing",
"version": "1",
"author": "SeleniumTesting",
"manifest_version": 2,
"permissions": ["downloads", "<all_urls>"],
"content_scripts": [{
"matches": ["http://localhost:5000/*"],
"run_at": "document_start",
"all_frames": true,
"js": ["shadowInject.js"]
}]
}

还有我的shadowInject.js

console.log('test');
Element.prototype._attachShadow = Element.prototype.attachShadow;
Element.prototype.attachShadow = function () {
console.log('attachShadow');
return this._attachShadow( { mode: "open" } );
};

为了测试它,我在 ASPNetCore MVC 项目中创建了我的组件。下面是我创建自定义组件的 javascript:

customElements.define('x-element', class extends HTMLElement {
constructor() {
super();
this._shadowRoot = this.attachShadow({
mode: 'closed'
});
this._shadowRoot.innerHTML = `<div class="wrapper">
<a href="download/File.pdf" download>
<button id="download">Download File</button>
</a>
<p>Link para download</p>
</div>`;
}
});

还有我使用它的 HTML 文件:

@page
@model IndexModel
@{
ViewData["Title"] = "Home page";
}
<script src='~/js/componente.js'></script>

<div class="text-center">
<h1 class="display-4">Welcome</h1>
<p>Learn about <a href="https://learn.microsoft.com/aspnet/core">building Web apps with ASP.NET Core</a>.</p>
<x-element id='comp'></x-element>
</div>

我将扩展程序加载到 Chrome 中,然后运行该页面。我得到了控制台日志测试,但始终没有调用 attachShadow 方法,我仍然无法访问关闭的影子 DOM

Console log

对于我做错的事情,如果能提供一些帮助,我将不胜感激。非常感谢。

最终解决方案

应用答案中的更改后,我需要对 manifest.json 进行一些调整。以下是最终版本:

{
"name": "SeleniumTesting",
"description": "Extension to open closed Shadow DOM for selenium testing",
"version": "1",
"author": "SeleniumTesting",
"manifest_version": 2,
"permissions": ["downloads", "<all_urls>"],
"content_scripts": [{
"matches": ["http://localhost:5000/*"],
"run_at": "document_start",
"all_frames": true,
"js": ["shadowInject.js"]
}],
"web_accessible_resources": ["injected.js"]
}

现在可以了,Shadow DOM改成open enter image description here

最佳答案

您不应将代码放在 content_scripts 中,因为 content_scripts 与当前页面上下文不同。

您尝试将 shadowInject.js 代码更改为:

const injectedScript = document.createElement('script');
injectedScript.src = chrome.extension.getURL('injected.js');
(document.head || document.documentElement).appendChild(injectedScript);

然后在同一目录下创建一个injected.js文件:

文件内容为:

console.log('test');
Element.prototype._attachShadow = Element.prototype.attachShadow;
Element.prototype.attachShadow = function () {
console.log('attachShadow');
return this._attachShadow( { mode: "open" } );
};

你可以试试。如果有任何问题,请告诉我

关于javascript - 使用 Chrome 扩展覆盖 Element.prototype.attachShadow,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54954383/

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