Playwright API를 사용하여 전체 웹사이트를 스크린샷하는 방법.

10494 단어
안녕하세요, 이 기사에서는 playwright API를 사용하여 여러 기기에서 전체 웹사이트를 스크린샷하는 방법과 페이지를 여러 섹션으로 나누어 페이지의 마이크로 스크린샷을 찍는 방법을 보여드리겠습니다.

Github 저장소를 찾을 수 있습니다here.

극작가란?



Playwright는 최신 웹 앱에 대한 신뢰할 수 있는 종단 간 테스트를 지원합니다. 여러 장치, 스크린샷, 페이지/구성 요소의 테스트 상호 작용을 테스트할 수 있으며 사용이 매우 쉽습니다!

테스트 목적으로 dev.to를 선택하여 가짜 API로 다음 경로로 스크립트를 테스트했습니다.

export const CONSTANTS = {
    origin : 'http://dev.to',
    paths : [
        '/',
        '/about',
        '/guides',
        '/software-comparisons',
        '/devteam/if-youre-interested-in-webassembly-and-dont-get-enough-depth-here-on-dev-read-this-pfl',
    ]
}


스크립트의 목적은 각 슬러그에 입력하고 모바일 및 데스크톱 뷰포트에서 다음 페이지를 스크린샷하는 것입니다.
이것은 소셜 미디어를 위해 다른 웹사이트에서 많은 이미지를 가져와야 하는 경우, 수화가 작동하는지 확인(예: SSG)하는 경우, 경로가 포함된 목록을 사용하여 도메인의 페이지 콘텐츠를 저장하는 경우 등에 유용합니다.

보너스
각 페이지에 대해 page.locator를 사용하여 '.crayons-story' 요소가 있는지 확인합니다. 'document.querySelectorAll'과 유사하지만 참조로 찾은 선택자의 배열을 DOM 요소 대신 반환합니다.
하나 이상의 요소를 찾으면 DOM 요소를 스크린샷하여 다른 폴더에 저장합니다.

주요 기능




async function screenshotPageHandler({isMobile = false, isJavascriptEnabled = false}){

    // Get Pages Paths
    let paths = await getPagePaths();
    // If we don't have any paths, we stop the process
    if(!paths) throw new Error('paths not found');

    // We initialize playwright via a custom function
    const {page,browser} = await getPlaywrightPageAPI(isJavascriptEnabled,isMobile);

    // We loop through each path
    for(let i = 0; i < paths.length; i++){
        // We get the slug of the page
        let pageSlug = clientSlug(paths[i]);

        await page.goto(pageSlug,{timeout: 8000});
        await page.waitForLoadState('networkidle');

        // find the element to screenshot
        let locators = page.locator('.crayons-story');

        for(let j = 0; j < await locators.count(); j++){
            // since we are dealing with an infinite scroll, we'll be breaking the loop after 50 articles. Otherwise it'll be an infinite loop.
            if(j >= 50 ) break;

            let locator = locators.nth(j);
            // find more details about the element, we'll use the first anchor tag for the section name.
            let fullUrl = await locator.locator('.crayons-story__hidden-navigation-link').evaluate(el => el.href);
            if(!fullUrl) continue;

            // we'll convert the full url to a slug
            let sectionName = new URL(fullUrl).pathname;
            // we'll get the screenshot path 
            let sectionSlug = getScreenshotSectionLocalPath(isJavascriptEnabled,isMobile,sectionName)
            // we'll check if the element is visible, otherwise we'll continue to the next section;
            let isSectionVisible = await locator.isVisible();
            if(!isSectionVisible) continue;

            // we'll take the screenshot of the element
            await locator.screenshot({path : sectionSlug });
        }

        // we'll get the screenshot path
        let slug = getScreenshotLocalPath(paths[i],isJavascriptEnabled,isMobile);
        // we'll take the screenshot of the page
        await page.screenshot({ path: slug , fullPage: true });
    }

    await browser.close();
}


자세한 내용은 저장소에서 나머지 도우미 기능을 찾을 수 있습니다.

읽어 주셔서 감사합니다,
미하이

좋은 웹페이지 즐겨찾기