UNPKG

playwright-fluent

Version:
27 lines (26 loc) 817 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const tslib_1 = require("tslib"); const SUT = tslib_1.__importStar(require("../../playwright-fluent")); describe('Playwright Fluent - select(label).inFocused()', () => { let p; beforeEach(() => { p = new SUT.PlaywrightFluent(); }); afterEach(async () => { await p.close(); }); test('should give back an error when browser is not launched', async () => { // Given // When let result = undefined; try { await p.select('foo').inFocused(); } catch (error) { result = error; } // Then expect(result && result.message).toContain("Cannot select options 'foo' because no browser has been launched"); }); });