Skip to content

Commit

Permalink
test: items under trip existence (#948)
Browse files Browse the repository at this point in the history
  • Loading branch information
YaelChen authored Dec 1, 2024
1 parent 670df7a commit 05ff848
Show file tree
Hide file tree
Showing 2 changed files with 10,431 additions and 12 deletions.
10,402 changes: 10,402 additions & 0 deletions tests/HAR/tripExistence.har

Large diffs are not rendered by default.

41 changes: 29 additions & 12 deletions tests/tripExistence.spec.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,31 @@
import { test } from './utils'
import { test, expect } from './utils'
test.describe('Trip Existence Page Tests', () => {
test.beforeEach(({ advancedRouteFromHAR }) => {
advancedRouteFromHAR('tests/HAR/tripExistence.har', {
updateContent: 'embed',
update: false,
notFound: 'abort',
url: /stride-api/,
})
})

test('choosing params in "קיום נסיעות" and organize by date/hour ', async ({ page }) => {
await page.goto('/')
await page.getByRole('link', { name: 'קיום נסיעות' }).click()
await page.getByLabel('התחלה').click()
await page.getByLabel('התחלה').fill('02/6/2024')
await page.getByLabel('סיום').click()
await page.getByLabel('סיום').fill('02/6/2024')
await page.getByLabel('חברה מפעילה').click()
await page.getByRole('option', { name: 'דן', exact: true }).click()
await page.getByText('קיבוץ לפי שעה').click()
await page.getByText('קיבוץ לפי יום').click()
test('Trip Existence page items', async ({ page }) => {
await page.goto('/')
await page.getByRole('link', { name: 'קיום נסיעות' }).click()
const itemsInOrder = ['קיום נסיעות', 'הקווים הגרועים ביותר', 'אחוזי יציאה מסך הנסיעות לפי יום']
await expect(page.locator('h2')).toContainText(itemsInOrder)
})

test('choosing params in "קיום נסיעות" and organize by date/hour ', async ({ page }) => {
await page.goto('/')
await page.getByRole('link', { name: 'קיום נסיעות' }).click()
await page.getByLabel('התחלה').click()
await page.getByLabel('התחלה').fill('02/6/2024')
await page.getByLabel('סיום').click()
await page.getByLabel('סיום').fill('02/6/2024')
await page.getByLabel('חברה מפעילה').click()
await page.getByRole('option', { name: 'דן', exact: true }).click()
await page.getByText('קיבוץ לפי שעה').click()
await page.getByText('קיבוץ לפי יום').click()
})
})

0 comments on commit 05ff848

Please sign in to comment.