Web Dev Solutions

Catalin Mititiuc

aboutsummaryrefslogtreecommitdiff
blob: 7157bff34ec2ccfcfde92f97ed5b7ed3d85b97a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
const { Builder } = require('selenium-webdriver'),
  chrome = require('selenium-webdriver/chrome.js'),
  { expect, it } = require('@jest/globals'),
  chromeOptions = new chrome.Options();

let driver;

chromeOptions.addArguments('--headless', '--disable-gpu', '--no-sandbox');

beforeAll(async () => {
  driver = new Builder().forBrowser('chrome').setChromeOptions(chromeOptions).build();
});

it('loads the page', async () => {
  await driver.get("http://localhost:3005");

  expect(await driver.getTitle()).toEqual('Infantry Combat Solo Basic');
});