puppeteer踩坑經驗之談

RikaXia發表於2019-03-02

啟動瀏覽器

  • 開啟瀏覽器介面:headless: false
  • 開啟開發者控制檯:devtools: true
  • 自定義瀏覽器寬高:page.setViewport
  • 產生兩個tab頁
    • 官方開啟頁面:await browser.pages(),會產生兩個tab頁,一個是目標tab頁,一個是blank頁
    • 修改後:(await browser.pages())[0],僅開啟目標tab頁
async init() {
    await this.openPage();
    await this.createCer();
}

async openPage() {

    // 開啟瀏覽器
    browser = await puppeteer.launch({
        headless: false, // 開啟介面,
        devtools: true,  // 開啟開發者控制檯   
    });

    // 開啟一個空白頁
    page = (await browser.pages())[0];

    try {

        // 設定 瀏覽器視窗
        await page.setViewport({
            width: 1300,
            height: 938,
        });

        // 跳轉 目的頁
        await page.goto("http://127.0.0.1/demo.html");

    } catch (error) {
        await this.openPage();
        throw new Error(`請求頁面超時,嘗試重新連線`);
    }
}
複製程式碼

操作頁面

  • 為了能夠獲取目標節點,當遇到頁面跳轉的時、點選下拉時、可先等待隨機秒數:await page.waitFor(utilFun.random(1000, 3000));
  • 想獲取元素的屬性:page.$eval()
  • 想操作dom元素:page.evaluate()
    • 為了能夠準確獲取dom元素,可使用setTimeout延時諾幹秒後,再進行相應操作
  • 正則中若想含有變數: let reg = new RegExp(${username});
async createCer() {
   
    const type = this.type;

    const Development = "#ios-nav > li:nth-child(1) ul > li:nth-child(3)";
    const Production = await page.$("#ios-nav > li:nth-child(1) ul > li:nth-child(4)");

    switch (type) {
        case "dev":
            await this.addIosCertificates(Development);
            break;
        case "dis":
            await this.addIosCertificates(Production);
            break;
        default:
            break
    }
}

async addIosCertificates(ele) {

    // 點選 側邊欄 型別
    await page.waitFor(utilFun.random(1000, 3000));
    await page.click(ele);

    // 點選 add 新增IOS證書
    await page.waitFor(utilFun.random(1000, 3000));
    await page.click(".toolbar-button.add");

    // 判斷 radio 是否能點選
    await page.waitFor(utilFun.random(1000, 3000));
    const radioDisabled = await page.$eval("#type-development-0", async el => {
        return el.disabled;
    });

    // 如果證書數量滿額,先刪除,後增加
    if (radioDisabled) {

        // 點選 側邊欄 型別
        await page.waitFor(utilFun.random(1000, 3000));
        await page.click(`${ele}`);

        // 刪除 IOS證書
        await page.waitFor(utilFun.random(1000, 3000));
        await this.deleteCer();
    } else {
        // 增加 IOS證書
        await this.addCer();
    }
    
}

async deleteCer() {
    await page.evaluate(async (username) => {
        let tableInfo = "";
        let reg = new RegExp(`${username}`);
        const table = document.querySelectorAll(".data-table")[1].querySelector("tbody");

        for (let i = 0; i < table.rows.length; i++) {
            for (let j = 0; j < table.rows[i].cells.length; j++) {
                tableInfo = table.rows[i].cells[j].innerText;
                if (reg.test(tableInfo) && (i % 2 == 0)) {
                    // 名字
                    let name = table.rows[i].cells[j].innerText;
                    // 型別
                    let type = table.rows[i].cells[j + 1].innerText;
                    // 期限
                    let expires = table.rows[i].cells[j + 2].innerText;

                    // 點選 下拉
                    table.rows[i].click();

                    // 點選 Revoke
                    setTimeout(() => {
                        document.querySelector(".button-no-padding-top.small.revoke-button").click();
                    }, 1000);

                    // 點選 彈窗 Revoke
                    setTimeout(() => {
                        document.querySelector(".ui-dialog-content.ui-widget-content .button.small.red.ok").click();
                    }, 3000);

                }
            }
        }

    }, username);
}
複製程式碼

上傳檔案

// 點選 選擇檔案
await page.waitFor(utilFun.random(1000, 3000));
const upload_file = await page.$("input[type=file]");
await upload_file.uploadFile("你的檔案路徑");
複製程式碼

檔案下載

// 下載 IOS 證書
await this.downloadFile("你的檔案路徑");

await page.waitFor(utilFun.random(1000, 3000));
await page.click(".button.small.blue");
複製程式碼

相關文章