Electron.js指南——测试使用Selenium和WebDriver

越源
2023-12-01

使用Selenium和WebDriver

ChromeDriver-WebDriver for Chrome

WebDriver是一个开源工具,可用于跨多种浏览器自动测试Web应用程序。它提供了导航到网页,用户输入,JavaScript执行等功能。ChromeDriver是独立的服务器,可为Chromium实现WebDriver的有线协议。它是由Chromium和WebDriver团队的成员开发的。

设置Spectron

Spectron是官方支持的Electron ChromeDriver测试框架。它建立在WebdriverIO之上,并具有帮助您访问测试中的Electron API的功能,并捆绑了ChromeDriver。

$ npm install --save-dev spectron
// A simple test to verify a visible window is opened with a title
const Application = require('spectron').Application
const assert = require('assert')

const myApp = new Application({
  path: '/Applications/MyApp.app/Contents/MacOS/MyApp'
})

const verifyWindowIsVisibleWithTitle = async (app) => {
  await app.start()
  try {
    // Check if the window is visible
    const isVisible = await app.browserWindow.isVisible()
    // Verify the window is visible
    assert.strictEqual(isVisible, true)
    // Get the window's title
    const title = await app.client.getTitle()
    // Verify the window's title
    assert.strictEqual(title, 'My App')
  } catch (error) {
    // Log any failures
    console.error('Test failed', error.message)
  }
  // Stop the application
  await app.stop()
}

verifyWindowIsVisibleWithTitle(myApp)

使用WebDriverJs进行设置

WebDriverJs提供了一个Node包,用于使用Web驱动程序进行测试,我们将以它为例。

1.启动ChromeDriver

首先,您需要下载chromedriver二进制文件并运行它:

$ npm install electron-chromedriver
$ ./node_modules/.bin/chromedriver
Starting ChromeDriver (v2.10.291558) on port 9515
Only local connections are allowed.

记住端口号9515,稍后将使用

2.安装WebDriverJS

$ npm install selenium-webdriver

3.连接到ChromeDriver

selenium-webdriver与Electron的用法与上游相同,不同之处在于您必须手动指定如何连接chrome驱动程序以及在何处找到Electron的二进制文件:

const webdriver = require('selenium-webdriver')

const driver = new webdriver.Builder()
  // The "9515" is the port opened by chrome driver.
  .usingServer('http://localhost:9515')
  .withCapabilities({
    chromeOptions: {
      // Here is the path to your Electron binary.
      binary: '/Path-to-Your-App.app/Contents/MacOS/Electron'
    }
  })
  .forBrowser('electron')
  .build()

driver.get('http://www.google.com')
driver.findElement(webdriver.By.name('q')).sendKeys('webdriver')
driver.findElement(webdriver.By.name('btnG')).click()
driver.wait(() => {
  return driver.getTitle().then((title) => {
    return title === 'webdriver - Google Search'
  })
}, 1000)

driver.quit()

使用WebdriverIO进行设置

WebdriverIO提供了一个Node包,用于使用Web驱动程序进行测试。

1.启动ChromeDriver

首先,您需要下载chromedriver二进制文件并运行它:

$ npm install electron-chromedriver
$ ./node_modules/.bin/chromedriver --url-base=wd/hub --port=9515
Starting ChromeDriver (v2.10.291558) on port 9515
Only local connections are allowed.

记住端口号9515,稍后将使用

2.安装WebdriverIO

$ npm install webdriverio

3.连接到Chrome驱动程序

const webdriverio = require('webdriverio')
const options = {
  host: 'localhost', // Use localhost as chrome driver server
  port: 9515, // "9515" is the port opened by chrome driver.
  desiredCapabilities: {
    browserName: 'chrome',
    'goog:chromeOptions': {
      binary: '/Path-to-Your-App/electron', // Path to your Electron binary.
      args: [/* cli arguments */] // Optional, perhaps 'app=' + /path/to/your/app/
    }
  }
}

const client = webdriverio.remote(options)

client
  .init()
  .url('http://google.com')
  .setValue('#q', 'webdriverio')
  .click('#btnG')
  .getTitle().then((title) => {
    console.log('Title was: ' + title)
  })
  .end()

工作流程

要在不重建Electron的情况下测试您的应用程序, 请将 您的应用程序源放置在Electron的资源目录中。

或者,传递一个参数以与您的Electron二进制文件一起运行,该参数指向您应用程序的文件夹。这样就无需将您的应用程序复制粘贴到Electron的资源目录中。

 类似资料: