Используя CucumberJS / Puppeteer, как вы расширяете объект Page с помощью нескольких сценариев? - PullRequest
0 голосов
/ 03 сентября 2018

Я пишу тестовый комплект автоматизации с использованием Puppeteer и CucumberJS.

У меня проблема с тем, что объект Page не передается между сценариями в файле объектов.

Test_1.features

Feature: Login and hit some buttons
    In order to show my issue
    As a stackOverflow users
    I want be able to login and select some buttons

  Scenario: Log in
      Given I have navigated to to the App "foobar"
      When I have selected the Imports button 
      I should see the Console on the page title

      When I have selected the Imports button 
      Then I should see the Imports on the page title

Test_2.features

Feature: Login and hit some buttons
    In order to show my issue
    As a stackOverflow users
    I want be able to login and select some buttons

  Scenario: Log in
      Given I have navigated to to the App "foobar"
      When I have selected the Imports button 
      I should see the Console on the page title

  Scenario: Navigate from the Imports page/list to the Console
      When I have selected the Imports button 
      Then I should see the Imports on the page title

У меня есть world.js

'use strict';

const { setWorldConstructor } = require("cucumber");
const puppeteer = require("puppeteer");

class thisApp {
  constructor() {
      this.app = "";
  }

// Open browser
async openBrowser() {
  this.browser = await puppeteer.launch({
  headless: false,
  slowMo: 25 
  });
  this.page = await this.browser.newPage();
}

async appLogIn(username_password) {
   await this.page.waitFor(settings._3000);
   await this.navigateToAppLoginPage();
   await this.appEnterUsernamePassword(username_password);
   await this.page.click('[data-test-button-SignIn="true"]');
   await this.page.waitFor(settings._3000);
}

// Select the Imports button
async selectButtonNavigationPaneImports() {
  await this.page.click('[data-test-button-navigation-pane-imports="true"]');
}

// Select the Console button
async selectButtonNavigationPaneConsole() {
  await this.page.click('[data-test-button-navigation-pane-console="true"]');
}

}
setWorldConstructor(ePayApp);

Я не описал все шаги - я просто пытаюсь привести пример.

app_steps.js

// Login
 Given(/^I have navigated to to the App "([^"]*)"$/, async 
  function(username_password){
  return this.appLogIn(username_password);
});

// import button
 When(/^I have selected the Imports button$/, async 
  function(){
  return this.selectButtonNavigationPaneImports();
});

// console button
 When(/^I have selected the Console button$/, async 
  function(){
  return this.selectButtonNavigationPaneConsole();
});

У меня есть index.js

const { BeforeAll, Before, AfterAll, After } = require('cucumber');
const puppeteer = require('puppeteer');

Before(async function() {
   const browser = await puppeteer.launch({ headless: false, slowMo: 50 });
  this.browser = browser;
  this.page = page;
})

Теперь, когда у меня есть все шаги по одному сценарию (Test_1.features), это работает. Когда я разбиваю тесты на несколько сценариев (Test_2.features), я получаю:

 TypeError: Cannot read property 'click' of undefined

Что заставляет меня поверить, что объект страницы не доступен во втором сценарии.

Что я делаю не так?

1 Ответ

0 голосов
/ 04 сентября 2018

С 2 сценариями у вас есть совершенно разные объекты мира. Участник, которого вы инициировали в первом сценарии, будет воссоздан в функции подключения второго сценария, что, вероятно, может быть причиной вашей проблемы.

Хук «До» будет выполняться для каждого сценария, поэтому у вас есть два разных браузера в каждом сценарии.

...