forked from Arquisoft/wiq_0
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Test e2e para responder una pregunta del clasico
- Loading branch information
Showing
13 changed files
with
74 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Feature: Answering a question | ||
|
||
Scenario: The user can answer a question | ||
Given A logged-in user | ||
When I play on Classic mode and click on an answer | ||
Then The right answer should be colored green |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
const puppeteer = require("puppeteer"); | ||
const { defineFeature, loadFeature } = require("jest-cucumber"); | ||
const setDefaultOptions = require("expect-puppeteer").setDefaultOptions; | ||
const { expect } = require("expect-puppeteer"); | ||
|
||
const feature = loadFeature("./features/play-classic.feature"); | ||
|
||
let page; | ||
let browser; | ||
|
||
defineFeature(feature, (test) => { | ||
beforeAll(async () => { | ||
browser = process.env.GITHUB_ACTIONS | ||
? await puppeteer.launch() | ||
: await puppeteer.launch({ headless: false, slowMo: 100 }); | ||
page = await browser.newPage(); | ||
setDefaultOptions({ timeout: 10000 }); | ||
|
||
await page.goto("http://localhost:3000", { | ||
waitUntil: "networkidle0", | ||
}); | ||
}); | ||
|
||
test("The user can answer a question", ({ given, when, then }) => { | ||
given("A logged-in user", async () => { | ||
|
||
await page.type("#login-username", "testuser"); | ||
await page.type("#login-password", "Testpassword1"); | ||
await page.click("button", { text: "Login" }); | ||
await page.waitForNavigation(); | ||
}); | ||
|
||
when("I play on Classic mode and click on an answer", async () => { | ||
await page.click('[data-testid="classic-mode"]'); | ||
await page.waitForNavigation(); | ||
|
||
await page.waitForSelector('[data-testid="question"]'); | ||
|
||
await page.click('[data-testid="answer-button"]'); | ||
}); | ||
|
||
then("The right answer should be colored green", async () => { | ||
await page.waitForTimeout(3000); | ||
|
||
const correctAnswerColor = await page.evaluate(() => { | ||
const answerButton = document.querySelector('[data-testid="answer-button"]'); | ||
return window.getComputedStyle(answerButton).getPropertyValue("background-color"); | ||
}); | ||
|
||
expect(correctAnswerColor).toMatch("rgb(16, 255, 0)"); | ||
}); | ||
}); | ||
|
||
afterAll(async () => { | ||
await browser.close(); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters