Skip to content

Commit

Permalink
Add GUI action
Browse files Browse the repository at this point in the history
  • Loading branch information
soulgalore committed May 24, 2024
1 parent 63538e6 commit 18273d4
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/gui.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Test the GUI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
- uses: actions/checkout@v4
- name: Install Chrome
run: |
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
sudo apt-get update
sudo apt-get --only-upgrade install google-chrome-stable
google-chrome --version
- name: Start dependencies
run: docker-compose -f docker-compose.yml up -d
- name: Start the server
run: |
npm install --prefix server
node server/app.js &
- name: Start the testrunner
run: |
npm install --prefix testrunner
node testrunner/app.js &
- name: Run a test
run: |
git clone https://github.com/sitespeedio/sitespeed.io.git
cd sitespeed.io
npm install
bin/sitespeed.js ../test/addatest.mjs --multi -n 1 --headless
16 changes: 16 additions & 0 deletions test/addatest.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
/**
* @param {import('browsertime').BrowsertimeContext} context
* @param {import('browsertime').BrowsertimeCommands} commands
*/
export default async function (context, commands) {
await commands.navigate('http://127.0.0.1:3000');
await commands.addText.byId('https://www.wikipedia.org', 'url');
await commands.select.selectByIdAndValue('iterations', 1);
await commands.mouse.singleClick.byXpath('/html/body/section/div/div[2]/ul/li[2]');
await commands.wait.byId('commandlinearea', 5000);
await commands.addText.byId('--headless', 'commandlinearea');
await commands.measure.start('RunTest');
await commands.click.byId('submittest');
await commands.wait.byXpath('/html/body/div[2]/h1',30000);
return commands.measure.stop();
}

0 comments on commit 18273d4

Please sign in to comment.