Puppeteer - 处理确认警报


Puppeteer 能够处理警报。Selenium、WebdriverIO 等自动化工具会在警报出现在页面上后接受或消除警报。

然而,在 Puppeteer 中,用户必须在警报出现在页面上之前给出是否接受或忽略警报的指示。为此,必须使用 Puppeteer 触发 on 事件侦听器。

处理确认警报的方法

下面列出了一些使用警报的方法 -

  • Accept(): Promise<void> - 此方法用于接受警报。

  • message(): string - 此方法用于生成警报中获得的消息。

  • type(): DialogType - 此方法用于获取对话框类型。对话框类型可以是提示、确认或提示。

  • miss(): Promise<void> - 此方法用于消除警报。

在下图中,单击“Click for JS Confirm”后,将显示确认警报。让我们获取警报上的文本。

JavaScript 警报

首先,请按照《Puppeteer 基本测试》一章中的步骤 1 至 2 进行操作,如下所示 -

步骤 1 - 在创建 node_modules 文件夹的目录中创建一个新文件(Puppeteer 和 Puppeteer 核心的安装位置)。

Puppeteer 安装的详细信息将在 Puppeteer 安装章节中讨论。

右键单击创建 node_modules 文件夹的文件夹,然后单击“新建文件”按钮。

节点模块

步骤 2 - 输入文件名,例如 testcase1.js。

测试用例1.JS

步骤 3 - 在创建的 testcase1.js 文件中添加以下代码。

//Puppeteer library
const pt= require('puppeteer')
async function confirmAlert(){
   //launch browser in headless mode
   const browser = await pt.launch()
   //browser new page
   const page = await browser.newPage();
   //on event listener trigger
   page.on('dialog', async dialog => {
      //get alert message
      console.log(dialog.message());
      //accept alert
      await dialog.accept();
   })
   //launch URL
   await page.goto('https://the-internet.herokuapp.com/javascript_alerts')
   //identify element with xpath then click
   const b = (await page.$x("//button[text()='Click for JS Confirm']"))[0]
   b.click()
}
confirmAlert()

步骤 4 - 使用以下命令执行代码。

node <filename>

因此,在我们的示例中,我们将运行下面给出的命令 -

node testcase1.js
命令已成功

命令成功执行后,控制台中会打印确认警报文本 - I am a JS Confirm。