使用 Puppeteer 操作/设置样式 shadowRoot
Manipulate / set style shadowRoot using Puppeteer
我尝试截取 AMP 故事的屏幕截图,但没有声音和分享按钮。
后来我发现有一个叫影子的东西DOM我想知道如何设置显示:none那里:
addStyleTag({content: '.i-amphtml-story-system-layer-buttons { display : none!important }'})
我想我是这样访问影子的 DOM。
const shadowRootInnerHTML = await page.evaluate(() => {
return document.querySelector("body > amp-story > div").shadowRoot.innerHTML
});
这是我目前使用的,
const browser = await puppeteer.launch({
slowMo: 250,
args: [
'--disable-infobars',
]
});
const page = await browser.newPage()
await page.emulate({
name: 'iPhone1080x1920',
userAgent: 'Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1',
viewport: {
width: 360,
height: 640,
deviceScaleFactor: 3,
isLandscape: false
}
});
await page.goto(urlToTest, {
waitUntil: 'networkidle2',
timeout: 0
});
const textContent = await page.evaluate(() => {
return document.querySelector("body > amp-story > div").shadowRoot.innerHTML
});
Amp 页面在 amp-story 内有多个 div 元素。
我们可以执行这个 vanilla JavaScript,它将隐藏 amp 页面上的顶部幻灯片和共享按钮。
我在这段代码中添加了两种方法,你可以应用其中一种。
// there are multiple div elements inside amp-story
const elements = [...document.querySelectorAll("body > amp-story > div")];
elements.map(rootElement => {
// find the shadowRoot inside if it exists
const shadowRoot = rootElement.shadowRoot;
if (shadowRoot) {
/**
* WAY 1: Find the element and apply css to it directly
*/
// this holds the top share button and pagination slides
const element = shadowRoot.querySelector(
".i-amphtml-story-system-layer"
);
// forcefully hide the element
if (element) element.style.setProperty("display", "none", "important");
/**
* WAY 2: Append your own style to the <style> tag inside the amp shadowRoot
*/
shadowRoot.querySelector('style').innerHTML += `.i-amphtml-story-system-layer { display : none!important }`
}
});
基本上,
- 找到 div
- 获取 shadowRoot
- 要么找到元素直接应用,要么在标签中添加样式。
示例放大器页面上的结果:
我尝试截取 AMP 故事的屏幕截图,但没有声音和分享按钮。
后来我发现有一个叫影子的东西DOM我想知道如何设置显示:none那里:
addStyleTag({content: '.i-amphtml-story-system-layer-buttons { display : none!important }'})
我想我是这样访问影子的 DOM。
const shadowRootInnerHTML = await page.evaluate(() => {
return document.querySelector("body > amp-story > div").shadowRoot.innerHTML
});
这是我目前使用的,
const browser = await puppeteer.launch({
slowMo: 250,
args: [
'--disable-infobars',
]
});
const page = await browser.newPage()
await page.emulate({
name: 'iPhone1080x1920',
userAgent: 'Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1',
viewport: {
width: 360,
height: 640,
deviceScaleFactor: 3,
isLandscape: false
}
});
await page.goto(urlToTest, {
waitUntil: 'networkidle2',
timeout: 0
});
const textContent = await page.evaluate(() => {
return document.querySelector("body > amp-story > div").shadowRoot.innerHTML
});
Amp 页面在 amp-story 内有多个 div 元素。
我们可以执行这个 vanilla JavaScript,它将隐藏 amp 页面上的顶部幻灯片和共享按钮。
我在这段代码中添加了两种方法,你可以应用其中一种。
// there are multiple div elements inside amp-story
const elements = [...document.querySelectorAll("body > amp-story > div")];
elements.map(rootElement => {
// find the shadowRoot inside if it exists
const shadowRoot = rootElement.shadowRoot;
if (shadowRoot) {
/**
* WAY 1: Find the element and apply css to it directly
*/
// this holds the top share button and pagination slides
const element = shadowRoot.querySelector(
".i-amphtml-story-system-layer"
);
// forcefully hide the element
if (element) element.style.setProperty("display", "none", "important");
/**
* WAY 2: Append your own style to the <style> tag inside the amp shadowRoot
*/
shadowRoot.querySelector('style').innerHTML += `.i-amphtml-story-system-layer { display : none!important }`
}
});
基本上,
- 找到 div
- 获取 shadowRoot
- 要么找到元素直接应用,要么在标签中添加样式。
示例放大器页面上的结果: