diff --git a/allure-report/data/attachments/12d528de2ce81b2b.md b/allure-report/data/attachments/12d528de2ce81b2b.md new file mode 100644 index 0000000..27ffd3f --- /dev/null +++ b/allure-report/data/attachments/12d528de2ce81b2b.md @@ -0,0 +1,137 @@ +# Test info + +- Name: Позитивные сценарии регистрации >> Успешная регистрация нового пользователя +- Location: /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.spec.ts:6:7 + +# Error details + +``` +Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected) + +Locator: locator(':root') +Expected pattern: /\/login\/confirmLogin/ +Received string: "https://ssas.dev.rdcenter.ru/login/registration" +Call log: + - expect.toHaveURL with timeout 5000ms + - waiting for locator(':root') + 9 × locator resolved to … + - unexpected value "https://ssas.dev.rdcenter.ru/login/registration" + + at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.spec.ts:30:24 +``` + +# Page snapshot + +```yaml +- main: + - main: + - button + - button "Скрыть Close": + - text: Скрыть + - img "Close" + - list: + - listitem: + - text: Главная + - img "Arrow" + - listitem: + - text: Автору + - img "Arrow" + - listitem: + - text: Новости + - img "Arrow" + - listitem: + - text: Участники + - img "Arrow" + - listitem: + - text: Оргкомитет + - img "Arrow" + - img "Logo" + - paragraph: Добро пожаловать + - paragraph: Зарегистрируйтесь, чтобы начать работу. + - textbox "Имя*": Иван + - text: Имя* + - textbox "Фамилия*": Тестов + - text: Фамилия* + - textbox "Отчество": Александрович + - text: Отчество + - textbox "Учёное звание*": Доцент + - img "img" + - text: Учёное звание* + - textbox "Учёная степень*": Кандидат наук + - img "img" + - text: Учёная степень* + - textbox "Должность": Преподаватель + - text: Должность + - textbox "Организация*": ЮФУ + - text: Организация* + - textbox "Email (логин)*": autotest30703@example.com + - text: Email (логин)* + - textbox "Номер телефона*": +7 (987) 030-70-3 + - text: Некорректный номер + - img "!" + - img "показать пароль" + - textbox "Придумайте пароль*": "!Test123" + - text: Придумайте пароль* + - img "показать пароль" + - textbox "Повторите пароль*": "!Test123" + - text: Повторите пароль* + - paragraph: ИЛИ + - button "Sfedu Logo Войти через аккаунт @sfedu": + - img "Sfedu Logo" + - text: Войти через аккаунт @sfedu + - button "Зарегистрироваться" + - paragraph: Уже есть аккаунт? + - paragraph: Авторизируйтесь + - paragraph: Всероссийская научная конференция "Системный синтез и прикладная синергетика" + - paragraph + - paragraph: "Напишите нам:" + - paragraph: + - text: "e-mail:" + - link "ssas@ictis.sfedu.ru": + - /url: mailto:ssas@ictis.sfedu.ru + - text: Сайт разработан Центром исследований и разработки ИКТИБ + - link "Ознакомиться с руководством пользователя": + - /url: /static/media/user_manual.f1df94e2c5143919fb0d.pdf +``` + +# Test source + +```ts + 1 | import { test, expect } from '@playwright/test'; + 2 | import { RegisterPage } from '../../../page-objects/RegisterPage'; + 3 | + 4 | test.describe('Позитивные сценарии регистрации', () => { + 5 | + 6 | test('Успешная регистрация нового пользователя', async ({ page }) => { + 7 | const registerPage = new RegisterPage(page); + 8 | await registerPage.goto(); + 9 | + 10 | // Генерация уникального email и телефона + 11 | const randomSuffix = Math.floor(Math.random() * 100000); + 12 | const uniqueEmail = `autotest${randomSuffix}@example.com`; + 13 | const uniquePhone = `+7987${randomSuffix.toString().padStart(6, '0')}`; + 14 | + 15 | await registerPage.register({ + 16 | name: 'Иван', + 17 | surname: 'Тестов', + 18 | patronymic: 'Александрович', + 19 | academicTitle: 'Доцент', + 20 | degree: 'Кандидат наук', + 21 | position: 'Преподаватель', + 22 | organization: 'ЮФУ', + 23 | email: uniqueEmail, + 24 | phone: uniquePhone, + 25 | password: '!Test123', + 26 | confirmPassword: '!Test123' + 27 | }); + 28 | + 29 | // Проверяем редирект на страницу подтверждения кода +> 30 | await expect(page).toHaveURL(/\/login\/confirmLogin/); + | ^ Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected) + 31 | await expect(page.locator('text=Подтвердите адрес электронной почты')).toBeVisible(); + 32 | + 33 | }); + 34 | + 35 | }); + 36 | +``` \ No newline at end of file diff --git a/allure-report/data/attachments/1958b451ff2044f0.md b/allure-report/data/attachments/1958b451ff2044f0.md new file mode 100644 index 0000000..8672d53 --- /dev/null +++ b/allure-report/data/attachments/1958b451ff2044f0.md @@ -0,0 +1,212 @@ +# Test info + +- Name: get started link +- Location: /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/example.spec.ts:10:5 + +# Error details + +``` +Error: locator.click: Test timeout of 30000ms exceeded. +Call log: + - waiting for getByRole('link', { name: 'Get started' }) + - locator resolved to Get started + - attempting click action + - waiting for element to be visible, enabled and stable + + at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/example.spec.ts:14:57 +``` + +# Page snapshot + +```yaml +- region "Skip to main content": + - link "Skip to main content": + - /url: "#__docusaurus_skipToContent_fallback" +- navigation "Main": + - link "Playwright logo Playwright": + - /url: / + - img "Playwright logo" + - text: Playwright + - link "Docs": + - /url: /docs/intro + - link "API": + - /url: /docs/api/class-playwright + - button "Node.js" + - link "Community": + - /url: /community/welcome + - link "GitHub repository": + - /url: https://github.com/microsoft/playwright + - link "Discord server": + - /url: https://aka.ms/playwright/discord + - button "Switch between dark and light mode (currently system mode)" + - button "Search (Command+K)": Search ⌘ K +- banner: + - heading "Playwright enables reliable end-to-end testing for modern web apps." [level=1] + - link "Get started": + - /url: /docs/intro + - link "Star microsoft/playwright on GitHub": + - /url: https://github.com/microsoft/playwright + - text: Star + - link "73k+ stargazers on GitHub": + - /url: https://github.com/microsoft/playwright/stargazers + - text: 73k+ +- main: + - img "Browsers (Chromium, Firefox, WebKit)" + - heading "Any browser • Any platform • One API" [level=3] + - paragraph: Cross-browser. Playwright supports all modern rendering engines including Chromium, WebKit, and Firefox. + - paragraph: Cross-platform. Test on Windows, Linux, and macOS, locally or on CI, headless or headed. + - paragraph: + - text: Cross-language. Use the Playwright API in + - link "TypeScript": + - /url: https://playwright.dev/docs/intro + - text: "," + - link "JavaScript": + - /url: https://playwright.dev/docs/intro + - text: "," + - link "Python": + - /url: https://playwright.dev/python/docs/intro + - text: "," + - link ".NET": + - /url: https://playwright.dev/dotnet/docs/intro + - text: "," + - link "Java": + - /url: https://playwright.dev/java/docs/intro + - text: . + - paragraph: Test Mobile Web. Native mobile emulation of Google Chrome for Android and Mobile Safari. The same rendering engine works on your Desktop and in the Cloud. + - heading [level=3] + - heading [level=3] + - heading "Resilient • No flaky tests" [level=3] + - paragraph: Auto-wait. Playwright waits for elements to be actionable prior to performing actions. It also has a rich set of introspection events. The combination of the two eliminates the need for artificial timeouts - the primary cause of flaky tests. + - paragraph: Web-first assertions. Playwright assertions are created specifically for the dynamic web. Checks are automatically retried until the necessary conditions are met. + - paragraph: Tracing. Configure test retry strategy, capture execution trace, videos, screenshots to eliminate flakes. + - heading "No trade-offs • No limits" [level=3] + - paragraph: Browsers run web content belonging to different origins in different processes. Playwright is aligned with the modern browsers architecture and runs tests out-of-process. This makes Playwright free of the typical in-process test runner limitations. + - paragraph: Multiple everything. Test scenarios that span multiple tabs, multiple origins and multiple users. Create scenarios with different contexts for different users and run them against your server, all in one test. + - paragraph: Trusted events. Hover elements, interact with dynamic controls, produce trusted events. Playwright uses real browser input pipeline indistinguishable from the real user. + - paragraph: Test frames, pierce Shadow DOM. Playwright selectors pierce shadow DOM and allow entering frames seamlessly. + - heading [level=3] + - heading [level=3] + - heading "Full isolation • Fast execution" [level=3] + - paragraph: Browser contexts. Playwright creates a browser context for each test. Browser context is equivalent to a brand new browser profile. This delivers full test isolation with zero overhead. Creating a new browser context only takes a handful of milliseconds. + - paragraph: Log in once. Save the authentication state of the context and reuse it in all the tests. This bypasses repetitive log-in operations in each test, yet delivers full isolation of independent tests. + - heading "Powerful Tooling" [level=3] + - paragraph: + - link "Codegen.": + - /url: docs/codegen + - text: Generate tests by recording your actions. Save them into any language. + - paragraph: + - link "Playwright inspector.": + - /url: docs/debug#playwright-inspector + - text: Inspect page, generate selectors, step through the test execution, see click points, explore execution logs. + - paragraph: + - link "Trace Viewer.": + - /url: docs/trace-viewer-intro + - text: Capture all the information to investigate the test failure. Playwright trace contains test execution screencast, live DOM snapshots, action explorer, test source, and many more. + - heading "Chosen by companies and open source projects" [level=2] + - list: + - listitem: + - link "VS Code": + - /url: https://code.visualstudio.com + - img "VS Code" + - listitem: + - link "Bing": + - /url: https://bing.com + - img "Bing" + - listitem: + - link "Outlook": + - /url: https://outlook.com + - img "Outlook" + - listitem: + - link "Disney+ Hotstar": + - /url: https://www.hotstar.com/ + - img "Disney+ Hotstar" + - listitem: + - link "Material UI": + - /url: https://github.com/mui-org/material-ui + - img "Material UI" + - listitem: + - link "ING": + - /url: https://github.com/ing-bank/lion + - img "ING" + - listitem: + - link "Adobe": + - /url: https://github.com/adobe/spectrum-web-components + - img "Adobe" + - listitem: + - link "React Navigation": + - /url: https://github.com/react-navigation/react-navigation + - img "React Navigation" + - listitem: + - link "Accessibility Insights": + - /url: https://accessibilityinsights.io/ + - img "Accessibility Insights" +- contentinfo: + - text: Learn + - list: + - listitem: + - link "Getting started": + - /url: /docs/intro + - listitem: + - link "Playwright Training": + - /url: https://learn.microsoft.com/en-us/training/modules/build-with-playwright/ + - listitem: + - link "Learn Videos": + - /url: /community/learn-videos + - listitem: + - link "Feature Videos": + - /url: /community/feature-videos + - text: Community + - list: + - listitem: + - link "Stack Overflow": + - /url: https://stackoverflow.com/questions/tagged/playwright + - listitem: + - link "Discord": + - /url: https://aka.ms/playwright/discord + - listitem: + - link "Twitter": + - /url: https://twitter.com/playwrightweb + - listitem: + - link "LinkedIn": + - /url: https://www.linkedin.com/company/playwrightweb + - text: More + - list: + - listitem: + - link "GitHub": + - /url: https://github.com/microsoft/playwright + - listitem: + - link "YouTube": + - /url: https://www.youtube.com/channel/UC46Zj8pDH5tDosqm1gd7WTg + - listitem: + - link "Blog": + - /url: https://dev.to/playwright + - listitem: + - link "Ambassadors": + - /url: /community/ambassadors + - text: Copyright © 2025 Microsoft +``` + +# Test source + +```ts + 1 | import { test, expect } from '@playwright/test'; + 2 | + 3 | test('has title', async ({ page }) => { + 4 | await page.goto('https://playwright.dev/'); + 5 | + 6 | // Expect a title "to contain" a substring. + 7 | await expect(page).toHaveTitle(/Playwright/); + 8 | }); + 9 | + 10 | test('get started link', async ({ page }) => { + 11 | await page.goto('https://playwright.dev/'); + 12 | + 13 | // Click the get started link. +> 14 | await page.getByRole('link', { name: 'Get started' }).click(); + | ^ Error: locator.click: Test timeout of 30000ms exceeded. + 15 | + 16 | // Expects page to have a heading with the name of Installation. + 17 | await expect(page.getByRole('heading', { name: 'Installation' })).toBeVisible(); + 18 | }); + 19 | +``` \ No newline at end of file diff --git a/allure-report/data/attachments/20ac02439d479a74.md b/allure-report/data/attachments/20ac02439d479a74.md new file mode 100644 index 0000000..cefb30e --- /dev/null +++ b/allure-report/data/attachments/20ac02439d479a74.md @@ -0,0 +1,61 @@ +# Test info + +- Name: Позитивные сценарии регистрации >> Успешная регистрация нового пользователя +- Location: /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.spec.ts:6:7 + +# Error details + +``` +Error: expect(locator).toHaveURL(expected) + +Locator: locator(':root') +Expected pattern: /\/login\/confirmLogin/ +Received string: "" +Call log: + - expect.toHaveURL with timeout 5000ms + - waiting for locator(':root') + + at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.spec.ts:30:24 +``` + +# Test source + +```ts + 1 | import { test, expect } from '@playwright/test'; + 2 | import { RegisterPage } from '../../../page-objects/RegisterPage'; + 3 | + 4 | test.describe('Позитивные сценарии регистрации', () => { + 5 | + 6 | test('Успешная регистрация нового пользователя', async ({ page }) => { + 7 | const registerPage = new RegisterPage(page); + 8 | await registerPage.goto(); + 9 | + 10 | // Генерация уникального email и телефона + 11 | const randomSuffix = Math.floor(Math.random() * 100000); + 12 | const uniqueEmail = `autotest${randomSuffix}@example.com`; + 13 | const uniquePhone = `+79${randomSuffix.toString().padStart(9, '0')}`; + 14 | + 15 | await registerPage.register({ + 16 | name: 'Иван', + 17 | surname: 'Тестов', + 18 | patronymic: 'Александрович', + 19 | academicTitle: 'Доцент', + 20 | degree: 'Кандидат наук', + 21 | position: 'Преподаватель', + 22 | organization: 'ЮФУ', + 23 | email: uniqueEmail, + 24 | phone: uniquePhone, + 25 | password: '!Test123456', + 26 | confirmPassword: '!Test123456' + 27 | }); + 28 | + 29 | // Проверяем редирект на страницу подтверждения кода +> 30 | await expect(page).toHaveURL(/\/login\/confirmLogin/); + | ^ Error: expect(locator).toHaveURL(expected) + 31 | await expect(page.locator('text=Подтвердите адрес электронной почты')).toBeVisible(); + 32 | + 33 | }); + 34 | + 35 | }); + 36 | +``` \ No newline at end of file diff --git a/allure-report/data/attachments/396ca355b214b7d0.zip b/allure-report/data/attachments/396ca355b214b7d0.zip new file mode 100644 index 0000000..75e1b21 Binary files /dev/null and b/allure-report/data/attachments/396ca355b214b7d0.zip differ diff --git a/allure-report/data/attachments/9d85bea98f85af45.md b/allure-report/data/attachments/9d85bea98f85af45.md new file mode 100644 index 0000000..41d05cc --- /dev/null +++ b/allure-report/data/attachments/9d85bea98f85af45.md @@ -0,0 +1,171 @@ +# Test info + +- Name: Негативные сценарии регистрации >> Слишком длинное название организации +- Location: /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.negative.spec.ts:48:7 + +# Error details + +``` +Error: Timed out 5000ms waiting for expect(locator).toBeVisible() + +Locator: getByText('Некорректное название организации!') +Expected: visible +Received: +Call log: + - expect.toBeVisible with timeout 5000ms + - waiting for getByText('Некорректное название организации!') + + at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.negative.spec.ts:67:72 +``` + +# Page snapshot + +```yaml +- main: + - main: + - button + - button "Скрыть Close": + - text: Скрыть + - img "Close" + - list: + - listitem: + - text: Главная + - img "Arrow" + - listitem: + - text: Автору + - img "Arrow" + - listitem: + - text: Новости + - img "Arrow" + - listitem: + - text: Участники + - img "Arrow" + - listitem: + - text: Оргкомитет + - img "Arrow" + - paragraph: 19.06.2025 + - paragraph: Этап + - img "Logo" + - paragraph: Добро пожаловать + - paragraph: Зарегистрируйтесь, чтобы начать работу. + - textbox "Имя*": Иван + - text: Имя* + - textbox "Фамилия*": Иванов + - text: Фамилия* + - textbox "Отчество" + - textbox "Учёное звание*": Доцент + - img "img" + - text: Учёное звание* + - textbox "Учёная степень*": Кандидат наук + - img "img" + - text: Учёная степень* + - textbox "Должность": Преподаватель + - text: Должность + - textbox "Организация*": ООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООО + - text: Организация* + - textbox "Email (логин)*": test1750252524321@example.com + - text: Email (логин)* + - textbox "Номер телефона*": +7 (999) 197-79-6 + - text: Некорректный номер + - img "!" + - img "показать пароль" + - textbox "Придумайте пароль*": "!Test123" + - text: Придумайте пароль* + - img "показать пароль" + - textbox "Повторите пароль*": "!Test123" + - text: Повторите пароль* + - paragraph: ИЛИ + - button "Sfedu Logo Войти через аккаунт @sfedu": + - img "Sfedu Logo" + - text: Войти через аккаунт @sfedu + - button "Зарегистрироваться" + - paragraph: Уже есть аккаунт? + - paragraph: Авторизируйтесь + - paragraph: Всероссийская научная конференция "Системный синтез и прикладная синергетика" + - paragraph: 19 - 26 июня 2025 года Таганрог + - paragraph: "Напишите нам:" + - paragraph: + - text: "e-mail:" + - link "ssas@ictis.sfedu.ru": + - /url: mailto:ssas@ictis.sfedu.ru + - text: Сайт разработан Центром исследований и разработки ИКТИБ + - link "Ознакомиться с руководством пользователя": + - /url: /static/media/user_manual.f1df94e2c5143919fb0d.pdf +``` + +# Test source + +```ts + 1 | import { test, expect } from '@playwright/test'; + 2 | import { RegisterPage } from '../../../page-objects/RegisterPage'; + 3 | + 4 | test.describe('Негативные сценарии регистрации', () => { + 5 | + 6 | test('Отправка пустой формы', async ({ page }) => { + 7 | const registerPage = new RegisterPage(page); + 8 | await registerPage.goto(); + 9 | await registerPage.submit(); + 10 | + 11 | const requiredErrors = await page.locator('div[name="error"]', { hasText: 'Поле обязательно для заполнения' }).allTextContents(); + 12 | expect(requiredErrors.length).toBeGreaterThan(0); + 13 | await expect(page.getByText('Не менее 8 символов')).toBeVisible(); // пароль + 14 | }); + 15 | + 16 | test('Некорректное имя и фамилия (слишком длинные)', async ({ page }) => { + 17 | const registerPage = new RegisterPage(page); + 18 | await registerPage.goto(); + 19 | + 20 | await registerPage.fillName('А'.repeat(51)); + 21 | await registerPage.fillSurname('Б'.repeat(51)); + 22 | await registerPage.submit(); + 23 | + 24 | await expect(page.getByText('Некорректное имя')).toBeVisible(); + 25 | await expect(page.getByText('Некорректная фамилия')).toBeVisible(); + 26 | }); + 27 | + 28 | test('Некорректный email формат', async ({ page }) => { + 29 | const registerPage = new RegisterPage(page); + 30 | await registerPage.goto(); + 31 | + 32 | await registerPage.fillEmail('invalid-email'); + 33 | await registerPage.submit(); + 34 | + 35 | await expect(page.getByText('Некорректный Email')).toBeVisible(); + 36 | }); + 37 | + 38 | test('Слишком длинная должность', async ({ page }) => { + 39 | const registerPage = new RegisterPage(page); + 40 | await registerPage.goto(); + 41 | + 42 | await registerPage.fillPosition('X'.repeat(201)); + 43 | await registerPage.submit(); + 44 | + 45 | await expect(page.getByText('Не более 200 символов!')).toBeVisible(); + 46 | }); + 47 | + 48 | test('Слишком длинное название организации', async ({ page }) => { + 49 | const registerPage = new RegisterPage(page); + 50 | await registerPage.goto(); + 51 | + 52 | // Заполнить все поля валидно, кроме организации + 53 | await registerPage.register({ + 54 | name: 'Иван', + 55 | surname: 'Иванов', + 56 | patronymic: '', + 57 | academicTitle: 'Доцент', + 58 | degree: 'Кандидат наук', + 59 | position: 'Преподаватель', + 60 | organization: 'О'.repeat(201), + 61 | email: `test${Date.now()}@example.com`, + 62 | phone: `+7999${Math.floor(Math.random() * 1000000).toString().padStart(6, '0')}`, + 63 | password: '!Test123', + 64 | confirmPassword: '!Test123' + 65 | }); + 66 | +> 67 | await expect(page.getByText('Некорректное название организации!')).toBeVisible(); + | ^ Error: Timed out 5000ms waiting for expect(locator).toBeVisible() + 68 | }); + 69 | + 70 | }); + 71 | +``` \ No newline at end of file diff --git a/allure-report/data/attachments/a5e2e64380ba3e9a.md b/allure-report/data/attachments/a5e2e64380ba3e9a.md new file mode 100644 index 0000000..1fef9c8 --- /dev/null +++ b/allure-report/data/attachments/a5e2e64380ba3e9a.md @@ -0,0 +1,66 @@ +# Test info + +- Name: Позитивные сценарии регистрации >> Успешная регистрация нового пользователя +- Location: /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.spec.ts:6:7 + +# Error details + +``` +Error: browserContext._wrapApiCall: Test ended. +Browser logs: + + /Users/vladsmykov/Library/Caches/ms-playwright/chromium-1169/chrome-mac/Chromium.app/Contents/MacOS/Chromium --disable-field-trial-config --disable-background-networking --disable-background-timer-throttling --disable-backgrounding-occluded-windows --disable-back-forward-cache --disable-breakpad --disable-client-side-phishing-detection --disable-component-extensions-with-background-pages --disable-component-update --no-default-browser-check --disable-default-apps --disable-dev-shm-usage --disable-extensions --disable-features=AcceptCHFrame,AutoExpandDetailsElement,AvoidUnnecessaryBeforeUnloadCheckSync,CertificateTransparencyComponentUpdater,DeferRendererTasksAfterInput,DestroyProfileOnBrowserClose,DialMediaRouteProvider,ExtensionManifestV2Disabled,GlobalMediaControls,HttpsUpgrades,ImprovedCookieControls,LazyFrameLoading,LensOverlay,MediaRouter,PaintHolding,ThirdPartyStoragePartitioning,Translate --allow-pre-commit-input --disable-hang-monitor --disable-ipc-flooding-protection --disable-popup-blocking --disable-prompt-on-repost --disable-renderer-backgrounding --force-color-profile=srgb --metrics-recording-only --no-first-run --enable-automation --password-store=basic --use-mock-keychain --no-service-autorun --export-tagged-pdf --disable-search-engine-choice-screen --unsafely-disable-devtools-self-xss-warnings --enable-use-zoom-for-dsf=false --no-sandbox --user-data-dir=/var/folders/lg/h2gsyjw52lg9sl4rjvlxq91w0000gn/T/playwright_chromiumdev_profile-TxrrIk --remote-debugging-pipe --no-startup-window + pid=53322 +[pid=53322][err] 2025-06-17 19:07:46.501 Chromium[53322:11903656] +[IMKClient subclass]: chose IMKClient_Modern +[pid=53322][err] 2025-06-17 19:08:28.659 Chromium[53322:11903656] +[IMKInputSession subclass]: chose IMKInputSession_Modern +[pid=53322] +``` + +# Test source + +```ts + 1 | import { test, expect } from '@playwright/test'; + 2 | import { RegisterPage } from '../../../page-objects/RegisterPage'; + 3 | + 4 | test.describe('Позитивные сценарии регистрации', () => { + 5 | +> 6 | test('Успешная регистрация нового пользователя', async ({ page }) => { + | ^ Error: browserContext._wrapApiCall: Test ended. + 7 | const registerPage = new RegisterPage(page); + 8 | await registerPage.goto(); + 9 | + 10 | // Генерация уникального email и телефона + 11 | const randomSuffix = Math.floor(Math.random() * 100000); + 12 | const uniqueEmail = `autotest${randomSuffix}@example.com`; + 13 | const uniquePhone = `+7987${randomSuffix.toString().padStart(6, '0')}`; + 14 | + 15 | // Заполнение формы + 16 | await registerPage.register({ + 17 | name: 'Иван', + 18 | surname: 'Тестов', + 19 | patronymic: 'Александрович', + 20 | academicTitle: 'Доцент', + 21 | degree: 'Кандидат наук', + 22 | position: 'Преподаватель', + 23 | organization: 'ЮФУ', + 24 | email: uniqueEmail, + 25 | phone: uniquePhone, + 26 | password: '!Test123456', // более надёжный + 27 | confirmPassword: '!Test123456' + 28 | }); + 29 | + 30 | // --- ВСТАВКА ДЛЯ ОТЛАДКИ --- + 31 | const errorModal = page.locator('p.ErrorModal_title__heTm5'); + 32 | if (await errorModal.isVisible()) { + 33 | const msg = await errorModal.textContent(); + 34 | throw new Error(`Регистрация не удалась. Модалка: "${msg}"`); + 35 | } + 36 | + 37 | // Ждём, что будет редирект + 38 | await expect(page).toHaveURL(/\/login\/confirmLogin/); + 39 | await expect(page.locator('text=Подтвердите адрес электронной почты')).toBeVisible(); + 40 | }); + 41 | + 42 | }); + 43 | +``` \ No newline at end of file diff --git a/allure-report/data/attachments/aa974eccc88088cd.md b/allure-report/data/attachments/aa974eccc88088cd.md new file mode 100644 index 0000000..fad9228 --- /dev/null +++ b/allure-report/data/attachments/aa974eccc88088cd.md @@ -0,0 +1,155 @@ +# Test info + +- Name: Негативные сценарии регистрации >> Некорректный email формат +- Location: /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.negative.spec.ts:28:7 + +# Error details + +``` +Error: page.goto: Target page, context or browser has been closed +Call log: + - navigating to "https://ssas.dev.rdcenter.ru/login/registration", waiting until "load" + + at RegisterPage.goto (/Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/page-objects/RegisterPage.ts:81:21) + at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.negative.spec.ts:30:24 +``` + +# Test source + +```ts + 1 | import { Page, Locator } from '@playwright/test'; + 2 | + 3 | export class RegisterPage { + 4 | readonly page: Page; + 5 | + 6 | // Поля ввода + 7 | readonly nameInput: Locator; + 8 | readonly surnameInput: Locator; + 9 | readonly patronymicInput: Locator; + 10 | readonly academicTitleInput: Locator; + 11 | readonly degreeInput: Locator; + 12 | readonly positionInput: Locator; + 13 | readonly organizationInput: Locator; + 14 | readonly emailInput: Locator; + 15 | readonly phoneInput: Locator; + 16 | readonly passwordInput: Locator; + 17 | readonly confirmPasswordInput: Locator; + 18 | + 19 | // Глазики + 20 | readonly passwordToggle: Locator; + 21 | readonly confirmPasswordToggle: Locator; + 22 | + 23 | // Кнопка регистрации + 24 | readonly submitButton: Locator; + 25 | + 26 | // Ссылка "Авторизируйтесь" + 27 | readonly loginLink: Locator; + 28 | + 29 | // Ошибки валидации + 30 | readonly requiredFieldErrors: Locator; + 31 | readonly nameError: Locator; + 32 | readonly surnameError: Locator; + 33 | readonly positionError: Locator; + 34 | readonly emailFormatError: Locator; + 35 | readonly passwordLengthError: Locator; + 36 | readonly confirmPasswordRequiredError: Locator; + 37 | + 38 | // Модалки + 39 | readonly duplicateUserModal: Locator; + 40 | readonly invalidOrgModal: Locator; + 41 | + 42 | constructor(page: Page) { + 43 | this.page = page; + 44 | + 45 | // Инпуты + 46 | this.nameInput = page.getByPlaceholder('Имя*'); + 47 | this.surnameInput = page.getByPlaceholder('Фамилия*'); + 48 | this.patronymicInput = page.getByPlaceholder('Отчество'); + 49 | this.academicTitleInput = page.getByPlaceholder('Учёное звание*'); + 50 | this.degreeInput = page.getByPlaceholder('Учёная степень*'); + 51 | this.positionInput = page.getByPlaceholder('Должность'); + 52 | this.organizationInput = page.getByPlaceholder('Организация*'); + 53 | this.emailInput = page.getByPlaceholder('Email (логин)*'); + 54 | this.phoneInput = page.getByPlaceholder('Номер телефона*'); + 55 | this.passwordInput = page.getByPlaceholder('Придумайте пароль*'); + 56 | this.confirmPasswordInput = page.getByPlaceholder('Повторите пароль*'); + 57 | + 58 | // Глазики + 59 | this.passwordToggle = page.locator('input[name="password"] + img'); + 60 | this.confirmPasswordToggle = page.locator('input[name="confirmPassword"] + img'); + 61 | + 62 | // Кнопки + 63 | this.submitButton = page.getByRole('button', { name: 'Зарегистрироваться' }); + 64 | this.loginLink = page.getByText('Авторизируйтесь'); + 65 | + 66 | // Ошибки + 67 | this.requiredFieldErrors = page.locator('div[name="error"]', { hasText: 'Поле обязательно для заполнения' }); + 68 | this.nameError = page.getByText('Некорректное имя'); + 69 | this.surnameError = page.getByText('Некорректная фамилия'); + 70 | this.positionError = page.getByText('Не более 200 символов!'); + 71 | this.emailFormatError = page.getByText('Некорректный Email'); + 72 | this.passwordLengthError = page.getByText('Не менее 8 символов'); + 73 | this.confirmPasswordRequiredError = page.getByText('Поле обязательно для заполнения'); + 74 | + 75 | // Модальные окна + 76 | this.duplicateUserModal = page.getByText('Пользователь с таким email или телефоном уже зарегистрирован!'); + 77 | this.invalidOrgModal = page.getByText('Некорректное название организации!'); + 78 | } + 79 | + 80 | async goto() { +> 81 | await this.page.goto('/login/registration'); + | ^ Error: page.goto: Target page, context or browser has been closed + 82 | } + 83 | + 84 | async register(data: { + 85 | name: string, + 86 | surname: string, + 87 | patronymic?: string, + 88 | academicTitle: string, + 89 | degree: string, + 90 | position?: string, + 91 | organization: string, + 92 | email: string, + 93 | phone: string, + 94 | password: string, + 95 | confirmPassword: string + 96 | }) { + 97 | await this.nameInput.fill(data.name); + 98 | await this.surnameInput.fill(data.surname); + 99 | if (data.patronymic) await this.patronymicInput.fill(data.patronymic); + 100 | await this.academicTitleInput.click(); + 101 | await this.page.locator('li', { hasText: data.academicTitle }).click(); + 102 | await this.degreeInput.click(); + 103 | await this.page.locator('li', { hasText: data.degree }).click(); + 104 | if (data.position) await this.positionInput.fill(data.position); + 105 | await this.organizationInput.fill(data.organization); + 106 | await this.emailInput.fill(data.email); + 107 | await this.phoneInput.fill(data.phone); + 108 | await this.passwordInput.fill(data.password); + 109 | await this.confirmPasswordInput.fill(data.confirmPassword); + 110 | await this.submitButton.click(); + 111 | } + 112 | + 113 | async fillName(name: string) { + 114 | await this.nameInput.fill(name); + 115 | } + 116 | + 117 | async fillSurname(surname: string) { + 118 | await this.surnameInput.fill(surname); + 119 | } + 120 | + 121 | async fillEmail(email: string) { + 122 | await this.emailInput.fill(email); + 123 | } + 124 | + 125 | async fillPosition(position: string) { + 126 | await this.positionInput.fill(position); + 127 | } + 128 | + 129 | async submit() { + 130 | await this.submitButton.click(); + 131 | } + 132 | + 133 | } + 134 | +``` \ No newline at end of file diff --git a/allure-report/data/attachments/af2e9b7d53e4244c.md b/allure-report/data/attachments/af2e9b7d53e4244c.md new file mode 100644 index 0000000..69249f5 --- /dev/null +++ b/allure-report/data/attachments/af2e9b7d53e4244c.md @@ -0,0 +1,63 @@ +# Test info + +- Name: Позитивные сценарии регистрации >> Успешная регистрация нового пользователя +- Location: /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.spec.ts:6:7 + +# Error details + +``` +Error: locator.isVisible: Target page, context or browser has been closed +Call log: + - checking visibility of locator('p.ErrorModal_title__heTm5') + + at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.spec.ts:32:26 +``` + +# Test source + +```ts + 1 | import { test, expect } from '@playwright/test'; + 2 | import { RegisterPage } from '../../../page-objects/RegisterPage'; + 3 | + 4 | test.describe('Позитивные сценарии регистрации', () => { + 5 | + 6 | test('Успешная регистрация нового пользователя', async ({ page }) => { + 7 | const registerPage = new RegisterPage(page); + 8 | await registerPage.goto(); + 9 | + 10 | // Генерация уникального email и телефона + 11 | const randomSuffix = Math.floor(Math.random() * 100000); + 12 | const uniqueEmail = `autotest${randomSuffix}@example.com`; + 13 | const uniquePhone = `+7987${randomSuffix.toString().padStart(6, '0')}`; + 14 | + 15 | // Заполнение формы + 16 | await registerPage.register({ + 17 | name: 'Иван', + 18 | surname: 'Тестов', + 19 | patronymic: 'Александрович', + 20 | academicTitle: 'Доцент', + 21 | degree: 'Кандидат наук', + 22 | position: 'Преподаватель', + 23 | organization: 'ЮФУ', + 24 | email: uniqueEmail, + 25 | phone: uniquePhone, + 26 | password: '!Test123456', // более надёжный + 27 | confirmPassword: '!Test123456' + 28 | }); + 29 | + 30 | // --- ВСТАВКА ДЛЯ ОТЛАДКИ --- + 31 | const errorModal = page.locator('p.ErrorModal_title__heTm5'); +> 32 | if (await errorModal.isVisible()) { + | ^ Error: locator.isVisible: Target page, context or browser has been closed + 33 | const msg = await errorModal.textContent(); + 34 | throw new Error(`Регистрация не удалась. Модалка: "${msg}"`); + 35 | } + 36 | + 37 | // Ждём, что будет редирект + 38 | await expect(page).toHaveURL(/\/login\/confirmLogin/); + 39 | await expect(page.locator('text=Подтвердите адрес электронной почты')).toBeVisible(); + 40 | }); + 41 | + 42 | }); + 43 | +``` \ No newline at end of file diff --git a/allure-report/data/attachments/b8cd5c9b73ae48f9.md b/allure-report/data/attachments/b8cd5c9b73ae48f9.md new file mode 100644 index 0000000..db2b93d --- /dev/null +++ b/allure-report/data/attachments/b8cd5c9b73ae48f9.md @@ -0,0 +1,137 @@ +# Test info + +- Name: Позитивные сценарии регистрации >> Успешная регистрация нового пользователя +- Location: /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.spec.ts:6:7 + +# Error details + +``` +Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected) + +Locator: locator(':root') +Expected pattern: /\/login\/confirmLogin/ +Received string: "https://ssas.dev.rdcenter.ru/login/registration" +Call log: + - expect.toHaveURL with timeout 5000ms + - waiting for locator(':root') + 9 × locator resolved to … + - unexpected value "https://ssas.dev.rdcenter.ru/login/registration" + + at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.spec.ts:30:24 +``` + +# Page snapshot + +```yaml +- main: + - main: + - button + - button "Скрыть Close": + - text: Скрыть + - img "Close" + - list: + - listitem: + - text: Главная + - img "Arrow" + - listitem: + - text: Автору + - img "Arrow" + - listitem: + - text: Новости + - img "Arrow" + - listitem: + - text: Участники + - img "Arrow" + - listitem: + - text: Оргкомитет + - img "Arrow" + - img "Logo" + - paragraph: Добро пожаловать + - paragraph: Зарегистрируйтесь, чтобы начать работу. + - textbox "Имя*": Иван + - text: Имя* + - textbox "Фамилия*": Тестов + - text: Фамилия* + - textbox "Отчество": Александрович + - text: Отчество + - textbox "Учёное звание*": Доцент + - img "img" + - text: Учёное звание* + - textbox "Учёная степень*": Кандидат наук + - img "img" + - text: Учёная степень* + - textbox "Должность": Преподаватель + - text: Должность + - textbox "Организация*": ЮФУ + - text: Организация* + - textbox "Email (логин)*": autotest29704@example.com + - text: Email (логин)* + - textbox "Номер телефона*": +7 (987) 029-70-4 + - text: Некорректный номер + - img "!" + - img "показать пароль" + - textbox "Придумайте пароль*": "!Test123" + - text: Придумайте пароль* + - img "показать пароль" + - textbox "Повторите пароль*": "!Test123" + - text: Повторите пароль* + - paragraph: ИЛИ + - button "Sfedu Logo Войти через аккаунт @sfedu": + - img "Sfedu Logo" + - text: Войти через аккаунт @sfedu + - button "Зарегистрироваться" + - paragraph: Уже есть аккаунт? + - paragraph: Авторизируйтесь + - paragraph: Всероссийская научная конференция "Системный синтез и прикладная синергетика" + - paragraph + - paragraph: "Напишите нам:" + - paragraph: + - text: "e-mail:" + - link "ssas@ictis.sfedu.ru": + - /url: mailto:ssas@ictis.sfedu.ru + - text: Сайт разработан Центром исследований и разработки ИКТИБ + - link "Ознакомиться с руководством пользователя": + - /url: /static/media/user_manual.f1df94e2c5143919fb0d.pdf +``` + +# Test source + +```ts + 1 | import { test, expect } from '@playwright/test'; + 2 | import { RegisterPage } from '../../../page-objects/RegisterPage'; + 3 | + 4 | test.describe('Позитивные сценарии регистрации', () => { + 5 | + 6 | test('Успешная регистрация нового пользователя', async ({ page }) => { + 7 | const registerPage = new RegisterPage(page); + 8 | await registerPage.goto(); + 9 | + 10 | // Генерация уникального email и телефона + 11 | const randomSuffix = Math.floor(Math.random() * 100000); + 12 | const uniqueEmail = `autotest${randomSuffix}@example.com`; + 13 | const uniquePhone = `+7987${randomSuffix.toString().padStart(6, '0')}`; + 14 | + 15 | await registerPage.register({ + 16 | name: 'Иван', + 17 | surname: 'Тестов', + 18 | patronymic: 'Александрович', + 19 | academicTitle: 'Доцент', + 20 | degree: 'Кандидат наук', + 21 | position: 'Преподаватель', + 22 | organization: 'ЮФУ', + 23 | email: uniqueEmail, + 24 | phone: uniquePhone, + 25 | password: '!Test123', + 26 | confirmPassword: '!Test123' + 27 | }); + 28 | + 29 | // Проверяем редирект на страницу подтверждения кода +> 30 | await expect(page).toHaveURL(/\/login\/confirmLogin/); + | ^ Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected) + 31 | await expect(page.locator('text=Подтвердите адрес электронной почты')).toBeVisible(); + 32 | + 33 | }); + 34 | + 35 | }); + 36 | +``` \ No newline at end of file diff --git a/allure-report/data/attachments/bacac1152fdc8aab.md b/allure-report/data/attachments/bacac1152fdc8aab.md new file mode 100644 index 0000000..c258805 --- /dev/null +++ b/allure-report/data/attachments/bacac1152fdc8aab.md @@ -0,0 +1,136 @@ +# Test info + +- Name: Позитивные сценарии регистрации >> Успешная регистрация нового пользователя +- Location: /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.spec.ts:6:7 + +# Error details + +``` +Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected) + +Locator: locator(':root') +Expected pattern: /\/login\/authorization/ +Received string: "https://ssas.dev.rdcenter.ru/login/registration" +Call log: + - expect.toHaveURL with timeout 5000ms + - waiting for locator(':root') + 9 × locator resolved to … + - unexpected value "https://ssas.dev.rdcenter.ru/login/registration" + + at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.spec.ts:30:24 +``` + +# Page snapshot + +```yaml +- main: + - main: + - button + - button "Скрыть Close": + - text: Скрыть + - img "Close" + - list: + - listitem: + - text: Главная + - img "Arrow" + - listitem: + - text: Автору + - img "Arrow" + - listitem: + - text: Новости + - img "Arrow" + - listitem: + - text: Участники + - img "Arrow" + - listitem: + - text: Оргкомитет + - img "Arrow" + - img "Logo" + - paragraph: Добро пожаловать + - paragraph: Зарегистрируйтесь, чтобы начать работу. + - textbox "Имя*": Иван + - text: Имя* + - textbox "Фамилия*": Тестов + - text: Фамилия* + - textbox "Отчество": Александрович + - text: Отчество + - textbox "Учёное звание*": Доцент + - img "img" + - text: Учёное звание* + - textbox "Учёная степень*": Кандидат наук + - img "img" + - text: Учёная степень* + - textbox "Должность": Преподаватель + - text: Должность + - textbox "Организация*": ЮФУ + - text: Организация* + - textbox "Email (логин)*": autotest7469@example.com + - text: Email (логин)* + - textbox "Номер телефона*": +7 (987) 007-46-9 + - text: Некорректный номер + - img "!" + - img "показать пароль" + - textbox "Придумайте пароль*": "!Test123" + - text: Придумайте пароль* + - img "показать пароль" + - textbox "Повторите пароль*": "!Test123" + - text: Повторите пароль* + - paragraph: ИЛИ + - button "Sfedu Logo Войти через аккаунт @sfedu": + - img "Sfedu Logo" + - text: Войти через аккаунт @sfedu + - button "Зарегистрироваться" + - paragraph: Уже есть аккаунт? + - paragraph: Авторизируйтесь + - paragraph: Всероссийская научная конференция "Системный синтез и прикладная синергетика" + - paragraph + - paragraph: "Напишите нам:" + - paragraph: + - text: "e-mail:" + - link "ssas@ictis.sfedu.ru": + - /url: mailto:ssas@ictis.sfedu.ru + - text: Сайт разработан Центром исследований и разработки ИКТИБ + - link "Ознакомиться с руководством пользователя": + - /url: /static/media/user_manual.f1df94e2c5143919fb0d.pdf +``` + +# Test source + +```ts + 1 | import { test, expect } from '@playwright/test'; + 2 | import { RegisterPage } from '../../../page-objects/RegisterPage'; + 3 | + 4 | test.describe('Позитивные сценарии регистрации', () => { + 5 | + 6 | test('Успешная регистрация нового пользователя', async ({ page }) => { + 7 | const registerPage = new RegisterPage(page); + 8 | await registerPage.goto(); + 9 | + 10 | // Генерация уникального email и телефона + 11 | const randomSuffix = Math.floor(Math.random() * 100000); + 12 | const uniqueEmail = `autotest${randomSuffix}@example.com`; + 13 | const uniquePhone = `+7987${randomSuffix.toString().padStart(6, '0')}`; + 14 | + 15 | await registerPage.register({ + 16 | name: 'Иван', + 17 | surname: 'Тестов', + 18 | patronymic: 'Александрович', + 19 | academicTitle: 'Доцент', + 20 | degree: 'Кандидат наук', + 21 | position: 'Преподаватель', + 22 | organization: 'ЮФУ', + 23 | email: uniqueEmail, + 24 | phone: uniquePhone, + 25 | password: '!Test123', + 26 | confirmPassword: '!Test123' + 27 | }); + 28 | + 29 | // Проверяем редирект на страницу авторизации +> 30 | await expect(page).toHaveURL(/\/login\/authorization/); + | ^ Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected) + 31 | await expect(page.getByRole('heading')).toContainText('Авторизация'); + 32 | }); + 33 | + 34 | }); + 35 | +``` \ No newline at end of file diff --git a/allure-report/data/attachments/cbb12df74fff4338.md b/allure-report/data/attachments/cbb12df74fff4338.md new file mode 100644 index 0000000..90046f8 --- /dev/null +++ b/allure-report/data/attachments/cbb12df74fff4338.md @@ -0,0 +1,58 @@ +# Test info + +- Name: Позитивные сценарии регистрации >> Успешная регистрация нового пользователя +- Location: /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.spec.ts:6:7 + +# Error details + +``` +Error: browserContext._wrapApiCall: Test ended. +Browser logs: + + /Users/vladsmykov/Library/Caches/ms-playwright/chromium-1169/chrome-mac/Chromium.app/Contents/MacOS/Chromium --disable-field-trial-config --disable-background-networking --disable-background-timer-throttling --disable-backgrounding-occluded-windows --disable-back-forward-cache --disable-breakpad --disable-client-side-phishing-detection --disable-component-extensions-with-background-pages --disable-component-update --no-default-browser-check --disable-default-apps --disable-dev-shm-usage --disable-extensions --disable-features=AcceptCHFrame,AutoExpandDetailsElement,AvoidUnnecessaryBeforeUnloadCheckSync,CertificateTransparencyComponentUpdater,DeferRendererTasksAfterInput,DestroyProfileOnBrowserClose,DialMediaRouteProvider,ExtensionManifestV2Disabled,GlobalMediaControls,HttpsUpgrades,ImprovedCookieControls,LazyFrameLoading,LensOverlay,MediaRouter,PaintHolding,ThirdPartyStoragePartitioning,Translate --allow-pre-commit-input --disable-hang-monitor --disable-ipc-flooding-protection --disable-popup-blocking --disable-prompt-on-repost --disable-renderer-backgrounding --force-color-profile=srgb --metrics-recording-only --no-first-run --enable-automation --password-store=basic --use-mock-keychain --no-service-autorun --export-tagged-pdf --disable-search-engine-choice-screen --unsafely-disable-devtools-self-xss-warnings --enable-use-zoom-for-dsf=false --no-sandbox --user-data-dir=/var/folders/lg/h2gsyjw52lg9sl4rjvlxq91w0000gn/T/playwright_chromiumdev_profile-LRGFrl --remote-debugging-pipe --no-startup-window + pid=51693 +[pid=51693][err] 2025-06-17 17:16:44.156 Chromium[51693:11871004] +[IMKClient subclass]: chose IMKClient_Modern +[pid=51693][err] 2025-06-17 17:16:44.156 Chromium[51693:11871004] +[IMKInputSession subclass]: chose IMKInputSession_Modern +[pid=51693] +``` + +# Test source + +```ts + 1 | import { test, expect } from '@playwright/test'; + 2 | import { RegisterPage } from '../../../page-objects/RegisterPage'; + 3 | + 4 | test.describe('Позитивные сценарии регистрации', () => { + 5 | +> 6 | test('Успешная регистрация нового пользователя', async ({ page }) => { + | ^ Error: browserContext._wrapApiCall: Test ended. + 7 | const registerPage = new RegisterPage(page); + 8 | await registerPage.goto(); + 9 | + 10 | // Генерация уникального email и телефона + 11 | const randomSuffix = Math.floor(Math.random() * 100000); + 12 | const uniqueEmail = `autotest${randomSuffix}@example.com`; + 13 | const uniquePhone = `+7987${randomSuffix.toString().padStart(6, '0')}`; + 14 | + 15 | await registerPage.register({ + 16 | name: 'Иван', + 17 | surname: 'Тестов', + 18 | patronymic: 'Александрович', + 19 | academicTitle: 'Доцент', + 20 | degree: 'Кандидат наук', + 21 | position: 'Преподаватель', + 22 | organization: 'ЮФУ', + 23 | email: uniqueEmail, + 24 | phone: uniquePhone, + 25 | password: '!Test123', + 26 | confirmPassword: '!Test123' + 27 | }); + 28 | + 29 | // Проверяем редирект на страницу авторизации + 30 | await expect(page).toHaveURL(/\/login\/authorization/); + 31 | await expect(page.getByRole('heading')).toContainText('Авторизация'); + 32 | }); + 33 | + 34 | }); + 35 | +``` \ No newline at end of file diff --git a/allure-report/data/attachments/cebd349f86ba86b0.md b/allure-report/data/attachments/cebd349f86ba86b0.md new file mode 100644 index 0000000..37581c8 --- /dev/null +++ b/allure-report/data/attachments/cebd349f86ba86b0.md @@ -0,0 +1,59 @@ +# Test info + +- Name: Позитивные сценарии регистрации >> Успешная регистрация нового пользователя +- Location: /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.spec.ts:6:7 + +# Error details + +``` +Error: browserContext._wrapApiCall: Test ended. +Browser logs: + + /Users/vladsmykov/Library/Caches/ms-playwright/chromium-1169/chrome-mac/Chromium.app/Contents/MacOS/Chromium --disable-field-trial-config --disable-background-networking --disable-background-timer-throttling --disable-backgrounding-occluded-windows --disable-back-forward-cache --disable-breakpad --disable-client-side-phishing-detection --disable-component-extensions-with-background-pages --disable-component-update --no-default-browser-check --disable-default-apps --disable-dev-shm-usage --disable-extensions --disable-features=AcceptCHFrame,AutoExpandDetailsElement,AvoidUnnecessaryBeforeUnloadCheckSync,CertificateTransparencyComponentUpdater,DeferRendererTasksAfterInput,DestroyProfileOnBrowserClose,DialMediaRouteProvider,ExtensionManifestV2Disabled,GlobalMediaControls,HttpsUpgrades,ImprovedCookieControls,LazyFrameLoading,LensOverlay,MediaRouter,PaintHolding,ThirdPartyStoragePartitioning,Translate --allow-pre-commit-input --disable-hang-monitor --disable-ipc-flooding-protection --disable-popup-blocking --disable-prompt-on-repost --disable-renderer-backgrounding --force-color-profile=srgb --metrics-recording-only --no-first-run --enable-automation --password-store=basic --use-mock-keychain --no-service-autorun --export-tagged-pdf --disable-search-engine-choice-screen --unsafely-disable-devtools-self-xss-warnings --enable-use-zoom-for-dsf=false --no-sandbox --user-data-dir=/var/folders/lg/h2gsyjw52lg9sl4rjvlxq91w0000gn/T/playwright_chromiumdev_profile-ebxZKI --remote-debugging-pipe --no-startup-window + pid=53578 +[pid=53578][err] 2025-06-17 19:09:43.952 Chromium[53578:11906463] +[IMKClient subclass]: chose IMKClient_Modern +[pid=53578][err] 2025-06-17 19:09:43.953 Chromium[53578:11906463] +[IMKInputSession subclass]: chose IMKInputSession_Modern +[pid=53578] +``` + +# Test source + +```ts + 1 | import { test, expect } from '@playwright/test'; + 2 | import { RegisterPage } from '../../../page-objects/RegisterPage'; + 3 | + 4 | test.describe('Позитивные сценарии регистрации', () => { + 5 | +> 6 | test('Успешная регистрация нового пользователя', async ({ page }) => { + | ^ Error: browserContext._wrapApiCall: Test ended. + 7 | const registerPage = new RegisterPage(page); + 8 | await registerPage.goto(); + 9 | + 10 | // Генерация уникального email и телефона + 11 | const randomSuffix = Math.floor(Math.random() * 100000); + 12 | const uniqueEmail = `autotest${randomSuffix}@example.com`; + 13 | const uniquePhone = `+79${randomSuffix.toString().padStart(9, '0')}`; + 14 | + 15 | await registerPage.register({ + 16 | name: 'Иван', + 17 | surname: 'Тестов', + 18 | patronymic: 'Александрович', + 19 | academicTitle: 'Доцент', + 20 | degree: 'Кандидат наук', + 21 | position: 'Преподаватель', + 22 | organization: 'ЮФУ', + 23 | email: uniqueEmail, + 24 | phone: uniquePhone, + 25 | password: '!Test123456', + 26 | confirmPassword: '!Test123456' + 27 | }); + 28 | + 29 | // Проверяем редирект на страницу подтверждения кода + 30 | await expect(page).toHaveURL(/\/login\/confirmLogin/); + 31 | await expect(page.locator('text=Подтвердите адрес электронной почты')).toBeVisible(); + 32 | + 33 | }); + 34 | + 35 | }); + 36 | +``` \ No newline at end of file diff --git a/allure-report/data/attachments/d6c34e14eef6eba3.md b/allure-report/data/attachments/d6c34e14eef6eba3.md new file mode 100644 index 0000000..cfbbaa7 --- /dev/null +++ b/allure-report/data/attachments/d6c34e14eef6eba3.md @@ -0,0 +1,137 @@ +# Test info + +- Name: Позитивные сценарии регистрации >> Успешная регистрация нового пользователя +- Location: /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.spec.ts:6:7 + +# Error details + +``` +Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected) + +Locator: locator(':root') +Expected pattern: /\/login\/confirmLogin/ +Received string: "https://ssas.dev.rdcenter.ru/login/registration" +Call log: + - expect.toHaveURL with timeout 5000ms + - waiting for locator(':root') + 9 × locator resolved to … + - unexpected value "https://ssas.dev.rdcenter.ru/login/registration" + + at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.spec.ts:30:24 +``` + +# Page snapshot + +```yaml +- main: + - main: + - button + - button "Скрыть Close": + - text: Скрыть + - img "Close" + - list: + - listitem: + - text: Главная + - img "Arrow" + - listitem: + - text: Автору + - img "Arrow" + - listitem: + - text: Новости + - img "Arrow" + - listitem: + - text: Участники + - img "Arrow" + - listitem: + - text: Оргкомитет + - img "Arrow" + - img "Logo" + - paragraph: Добро пожаловать + - paragraph: Зарегистрируйтесь, чтобы начать работу. + - textbox "Имя*": Иван + - text: Имя* + - textbox "Фамилия*": Тестов + - text: Фамилия* + - textbox "Отчество": Александрович + - text: Отчество + - textbox "Учёное звание*": Доцент + - img "img" + - text: Учёное звание* + - textbox "Учёная степень*": Кандидат наук + - img "img" + - text: Учёная степень* + - textbox "Должность": Преподаватель + - text: Должность + - textbox "Организация*": ЮФУ + - text: Организация* + - textbox "Email (логин)*": autotest70036@example.com + - text: Email (логин)* + - textbox "Номер телефона*": +7 (987) 070-03-6 + - text: Некорректный номер + - img "!" + - img "показать пароль" + - textbox "Придумайте пароль*": "!Test123" + - text: Придумайте пароль* + - img "показать пароль" + - textbox "Повторите пароль*": "!Test123" + - text: Повторите пароль* + - paragraph: ИЛИ + - button "Sfedu Logo Войти через аккаунт @sfedu": + - img "Sfedu Logo" + - text: Войти через аккаунт @sfedu + - button "Зарегистрироваться" + - paragraph: Уже есть аккаунт? + - paragraph: Авторизируйтесь + - paragraph: Всероссийская научная конференция "Системный синтез и прикладная синергетика" + - paragraph + - paragraph: "Напишите нам:" + - paragraph: + - text: "e-mail:" + - link "ssas@ictis.sfedu.ru": + - /url: mailto:ssas@ictis.sfedu.ru + - text: Сайт разработан Центром исследований и разработки ИКТИБ + - link "Ознакомиться с руководством пользователя": + - /url: /static/media/user_manual.f1df94e2c5143919fb0d.pdf +``` + +# Test source + +```ts + 1 | import { test, expect } from '@playwright/test'; + 2 | import { RegisterPage } from '../../../page-objects/RegisterPage'; + 3 | + 4 | test.describe('Позитивные сценарии регистрации', () => { + 5 | + 6 | test('Успешная регистрация нового пользователя', async ({ page }) => { + 7 | const registerPage = new RegisterPage(page); + 8 | await registerPage.goto(); + 9 | + 10 | // Генерация уникального email и телефона + 11 | const randomSuffix = Math.floor(Math.random() * 100000); + 12 | const uniqueEmail = `autotest${randomSuffix}@example.com`; + 13 | const uniquePhone = `+7987${randomSuffix.toString().padStart(6, '0')}`; + 14 | + 15 | await registerPage.register({ + 16 | name: 'Иван', + 17 | surname: 'Тестов', + 18 | patronymic: 'Александрович', + 19 | academicTitle: 'Доцент', + 20 | degree: 'Кандидат наук', + 21 | position: 'Преподаватель', + 22 | organization: 'ЮФУ', + 23 | email: uniqueEmail, + 24 | phone: uniquePhone, + 25 | password: '!Test123', + 26 | confirmPassword: '!Test123' + 27 | }); + 28 | + 29 | // Проверяем редирект на страницу подтверждения кода +> 30 | await expect(page).toHaveURL(/\/login\/confirmLogin/); + | ^ Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected) + 31 | await expect(page.locator('text=Подтвердите адрес электронной почты')).toBeVisible(); + 32 | + 33 | }); + 34 | + 35 | }); + 36 | +``` \ No newline at end of file diff --git a/allure-report/data/attachments/e725d47715349e6.md b/allure-report/data/attachments/e725d47715349e6.md new file mode 100644 index 0000000..7b952cc --- /dev/null +++ b/allure-report/data/attachments/e725d47715349e6.md @@ -0,0 +1,140 @@ +# Test info + +- Name: Негативные сценарии восстановления пароля >> Неверный код подтверждения +- Location: /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/recovery/recover-negative.spec.ts:23:7 + +# Error details + +``` +Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected) + +Locator: locator(':root') +Expected pattern: /\/recoverpassword\/checkemail/ +Received string: "https://ssas.dev.rdcenter.ru/recoverpassword" +Call log: + - expect.toHaveURL with timeout 5000ms + - waiting for locator(':root') + 9 × locator resolved to … + - unexpected value "https://ssas.dev.rdcenter.ru/recoverpassword" + + at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/recovery/recover-negative.spec.ts:28:24 +``` + +# Page snapshot + +```yaml +- main: + - button + - button "Скрыть Close": + - text: Скрыть + - img "Close" + - list: + - listitem: + - text: Вход/Регистрация + - img "Arrow" + - listitem: + - text: Главная + - img "Arrow" + - listitem: + - text: Автору + - img "Arrow" + - listitem: + - text: Новости + - img "Arrow" + - listitem: + - text: Участники + - img "Arrow" + - listitem: + - text: Оргкомитет + - img "Arrow" + - img "Логотип" + - heading "Забыли пароль?" [level=2] + - paragraph: Чтобы задать новый пароль, введите электронную почту своего аккаунта + - img + - textbox "Email": autotest@example.com + - button "Далее" + - paragraph: Всероссийская научная конференция "Системный синтез и прикладная синергетика" + - paragraph + - paragraph: "Напишите нам:" + - paragraph: + - text: "e-mail:" + - link "ssas@ictis.sfedu.ru": + - /url: mailto:ssas@ictis.sfedu.ru + - text: Сайт разработан Центром исследований и разработки ИКТИБ + - link "Ознакомиться с руководством пользователя": + - /url: /static/media/user_manual.f1df94e2c5143919fb0d.pdf +``` + +# Test source + +```ts + 1 | import { test, expect } from '@playwright/test'; + 2 | import { RecoverPage } from '../../../page-objects/RecoverPage'; + 3 | import { recovery, recoveryErrors, users } from '../../../utils/test-data'; + 4 | + 5 | test.describe('Негативные сценарии восстановления пароля', () => { + 6 | + 7 | test('Некорректный email (формат)', async ({ page }) => { + 8 | const recoverPage = new RecoverPage(page); + 9 | await recoverPage.goto(); + 10 | + 11 | await recoverPage.enterEmail('invalid-email'); + 12 | await expect(recoverPage.emailFormatError).toBeVisible(); + 13 | }); + 14 | + 15 | test('Несуществующий email', async ({ page }) => { + 16 | const recoverPage = new RecoverPage(page); + 17 | await recoverPage.goto(); + 18 | + 19 | await recoverPage.enterEmail(recovery.emailNotFound); + 20 | await expect(recoverPage.emailFormatError).toBeVisible(); // сервер показывает ту же ошибку + 21 | }); + 22 | + 23 | test('Неверный код подтверждения', async ({ page }) => { + 24 | const recoverPage = new RecoverPage(page); + 25 | await recoverPage.goto(); + 26 | + 27 | await recoverPage.enterEmail(recovery.emailExists); +> 28 | await expect(page).toHaveURL(/\/recoverpassword\/checkemail/); + | ^ Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected) + 29 | + 30 | await recoverPage.enterVerificationCode('654321'); // неверный + 31 | await expect(recoverPage.codeError).toBeVisible(); + 32 | }); + 33 | + 34 | test('Некорректный новый пароль', async ({ page }) => { + 35 | const recoverPage = new RecoverPage(page); + 36 | await recoverPage.goto(); + 37 | + 38 | await recoverPage.enterEmail(recovery.emailExists); + 39 | await recoverPage.enterVerificationCode(recovery.verificationCode); + 40 | + 41 | await recoverPage.enterNewPassword(users.newPassword.weakPassword, users.newPassword.weakPassword); + 42 | await expect(recoverPage.passwordError).toBeVisible(); + 43 | }); + 44 | + 45 | test('Пустое поле "Повторите пароль"', async ({ page }) => { + 46 | const recoverPage = new RecoverPage(page); + 47 | await recoverPage.goto(); + 48 | + 49 | await recoverPage.enterEmail(recovery.emailExists); + 50 | await recoverPage.enterVerificationCode(recovery.verificationCode); + 51 | + 52 | await recoverPage.enterNewPassword(users.newPassword.password, ''); + 53 | await expect(recoverPage.passwordRepeatError).toBeVisible(); + 54 | }); + 55 | + 56 | test('Пароли не совпадают', async ({ page }) => { + 57 | const recoverPage = new RecoverPage(page); + 58 | await recoverPage.goto(); + 59 | + 60 | await recoverPage.enterEmail(recovery.emailExists); + 61 | await recoverPage.enterVerificationCode(recovery.verificationCode); + 62 | + 63 | await recoverPage.enterNewPassword(users.newPassword.password, users.newPassword.mismatchPassword); + 64 | await expect(recoverPage.mismatchPasswordError).toBeVisible(); + 65 | }); + 66 | + 67 | }); + 68 | +``` \ No newline at end of file diff --git a/allure-report/data/attachments/f267138497001754.md b/allure-report/data/attachments/f267138497001754.md new file mode 100644 index 0000000..ec769a6 --- /dev/null +++ b/allure-report/data/attachments/f267138497001754.md @@ -0,0 +1,147 @@ +# Test info + +- Name: Позитивные сценарии регистрации >> Успешная регистрация нового пользователя +- Location: /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.spec.ts:6:7 + +# Error details + +``` +Error: locator.fill: Target page, context or browser has been closed +Call log: + - waiting for getByPlaceholder('Учёное звание*') + - locator resolved to + - fill("Доцент") + - attempting fill action + 2 × waiting for element to be visible, enabled and editable + - element is not editable + - retrying fill action + - waiting 20ms + 2 × waiting for element to be visible, enabled and editable + - element is not editable + - retrying fill action + - waiting 100ms + 128 × waiting for element to be visible, enabled and editable + - element is not editable + - retrying fill action + - waiting 500ms + + at RegisterPage.register (/Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/page-objects/RegisterPage.ts:100:35) + at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.spec.ts:15:5 +``` + +# Test source + +```ts + 1 | import { Page, Locator } from '@playwright/test'; + 2 | + 3 | export class RegisterPage { + 4 | readonly page: Page; + 5 | + 6 | // Поля ввода + 7 | readonly nameInput: Locator; + 8 | readonly surnameInput: Locator; + 9 | readonly patronymicInput: Locator; + 10 | readonly academicTitleInput: Locator; + 11 | readonly degreeInput: Locator; + 12 | readonly positionInput: Locator; + 13 | readonly organizationInput: Locator; + 14 | readonly emailInput: Locator; + 15 | readonly phoneInput: Locator; + 16 | readonly passwordInput: Locator; + 17 | readonly confirmPasswordInput: Locator; + 18 | + 19 | // Глазики + 20 | readonly passwordToggle: Locator; + 21 | readonly confirmPasswordToggle: Locator; + 22 | + 23 | // Кнопка регистрации + 24 | readonly submitButton: Locator; + 25 | + 26 | // Ссылка "Авторизируйтесь" + 27 | readonly loginLink: Locator; + 28 | + 29 | // Ошибки валидации + 30 | readonly requiredFieldErrors: Locator; + 31 | readonly nameError: Locator; + 32 | readonly surnameError: Locator; + 33 | readonly positionError: Locator; + 34 | readonly emailFormatError: Locator; + 35 | readonly passwordLengthError: Locator; + 36 | readonly confirmPasswordRequiredError: Locator; + 37 | + 38 | // Модалки + 39 | readonly duplicateUserModal: Locator; + 40 | readonly invalidOrgModal: Locator; + 41 | + 42 | constructor(page: Page) { + 43 | this.page = page; + 44 | + 45 | // Инпуты + 46 | this.nameInput = page.getByPlaceholder('Имя*'); + 47 | this.surnameInput = page.getByPlaceholder('Фамилия*'); + 48 | this.patronymicInput = page.getByPlaceholder('Отчество'); + 49 | this.academicTitleInput = page.getByPlaceholder('Учёное звание*'); + 50 | this.degreeInput = page.getByPlaceholder('Учёная степень*'); + 51 | this.positionInput = page.getByPlaceholder('Должность'); + 52 | this.organizationInput = page.getByPlaceholder('Организация*'); + 53 | this.emailInput = page.getByPlaceholder('Email (логин)*'); + 54 | this.phoneInput = page.getByPlaceholder('Номер телефона*'); + 55 | this.passwordInput = page.getByPlaceholder('Придумайте пароль*'); + 56 | this.confirmPasswordInput = page.getByPlaceholder('Повторите пароль*'); + 57 | + 58 | // Глазики + 59 | this.passwordToggle = page.locator('input[name="password"] + img'); + 60 | this.confirmPasswordToggle = page.locator('input[name="confirmPassword"] + img'); + 61 | + 62 | // Кнопки + 63 | this.submitButton = page.getByRole('button', { name: 'Зарегистрироваться' }); + 64 | this.loginLink = page.getByText('Авторизируйтесь'); + 65 | + 66 | // Ошибки + 67 | this.requiredFieldErrors = page.locator('div[name="error"]', { hasText: 'Поле обязательно для заполнения' }); + 68 | this.nameError = page.getByText('Некорректное имя'); + 69 | this.surnameError = page.getByText('Некорректная фамилия'); + 70 | this.positionError = page.getByText('Не более 200 символов!'); + 71 | this.emailFormatError = page.getByText('Некорректный Email'); + 72 | this.passwordLengthError = page.getByText('Не менее 8 символов'); + 73 | this.confirmPasswordRequiredError = page.getByText('Поле обязательно для заполнения'); + 74 | + 75 | // Модальные окна + 76 | this.duplicateUserModal = page.getByText('Пользователь с таким email или телефоном уже зарегистрирован!'); + 77 | this.invalidOrgModal = page.getByText('Некорректное название организации!'); + 78 | } + 79 | + 80 | async goto() { + 81 | await this.page.goto('/login/registration'); + 82 | } + 83 | + 84 | async register(data: { + 85 | name: string, + 86 | surname: string, + 87 | patronymic?: string, + 88 | academicTitle: string, + 89 | degree: string, + 90 | position?: string, + 91 | organization: string, + 92 | email: string, + 93 | phone: string, + 94 | password: string, + 95 | confirmPassword: string + 96 | }) { + 97 | await this.nameInput.fill(data.name); + 98 | await this.surnameInput.fill(data.surname); + 99 | if (data.patronymic) await this.patronymicInput.fill(data.patronymic); +> 100 | await this.academicTitleInput.fill(data.academicTitle); + | ^ Error: locator.fill: Target page, context or browser has been closed + 101 | await this.degreeInput.fill(data.degree); + 102 | if (data.position) await this.positionInput.fill(data.position); + 103 | await this.organizationInput.fill(data.organization); + 104 | await this.emailInput.fill(data.email); + 105 | await this.phoneInput.fill(data.phone); + 106 | await this.passwordInput.fill(data.password); + 107 | await this.confirmPasswordInput.fill(data.confirmPassword); + 108 | await this.submitButton.click(); + 109 | } + 110 | } + 111 | +``` \ No newline at end of file diff --git a/allure-report/data/behaviors.csv b/allure-report/data/behaviors.csv index d82d173..dca6a77 100644 --- a/allure-report/data/behaviors.csv +++ b/allure-report/data/behaviors.csv @@ -1,2 +1,2 @@ "BROKEN","EPIC","FAILED","FEATURE","PASSED","SKIPPED","STORY","UNKNOWN" -"0","","0","","57","0","","0" +"1","","0","","74","0","","0" diff --git a/allure-report/data/behaviors.json b/allure-report/data/behaviors.json index 8607f2e..fcd13bd 100644 --- a/allure-report/data/behaviors.json +++ b/allure-report/data/behaviors.json @@ -1 +1 @@ -{"uid":"b1a8273437954620fa374b796ffaacdd","name":"behaviors","children":[{"name":"Переход по ссылке \"Зарегистрируйтесь\"","uid":"31bb4ab4326f6487","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084487577,"stop":1750084488773,"duration":1196},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Переход по ссылке \"Забыли пароль?\"","uid":"accf5a2fef71e751","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084487578,"stop":1750084490119,"duration":2541},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"get started link","uid":"b714c3ef6b1955c5","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084487579,"stop":1750084488883,"duration":1304},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"has title","uid":"731f29d77f45de06","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084487580,"stop":1750084490628,"duration":3048},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Неверный пароль","uid":"1f34f20dd4a0d9fd","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084489259,"stop":1750084490492,"duration":1233},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Несуществующий email","uid":"f5ffdd03c44055b1","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084489363,"stop":1750084490743,"duration":1380},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Оба поля пустые","uid":"f7a702fb49f5f201","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084490497,"stop":1750084491239,"duration":742},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Только email без пароля","uid":"219f17571c2d2715","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084490528,"stop":1750084491353,"duration":825},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректный формат email","uid":"1aae5dc9a4d21981","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084490746,"stop":1750084491640,"duration":894},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Регистр в email (User@test.com ≠ user@test.com)","uid":"287ea007721245b5","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084491115,"stop":1750084492165,"duration":1050},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":["test.com","test.com)"]},{"name":"Пользователь должен успешно залогиниться с валидными данными","uid":"5c52ce3f42b81329","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084491243,"stop":1750084492069,"duration":826},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Переключатель видимости пароля показывает и скрывает ввод","uid":"c82bf9b727e4250d","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084491357,"stop":1750084492371,"duration":1014},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректный email (формат)","uid":"701a94631e81e6af","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084491646,"stop":1750084492211,"duration":565},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Несуществующий email","uid":"a1fd8ee0914c6a57","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084492074,"stop":1750084492970,"duration":896},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Неверный код подтверждения","uid":"e3d2684b480ff47b","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084492172,"stop":1750084493410,"duration":1238},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректный новый пароль","uid":"e07c24690f801b74","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084492220,"stop":1750084493759,"duration":1539},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Пустое поле \"Повторите пароль\"","uid":"96736297720c2c0d","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084492375,"stop":1750084493870,"duration":1495},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Пароли не совпадают","uid":"b20bbc8741046798","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084492974,"stop":1750084493874,"duration":900},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Пользователь успешно восстанавливает пароль","uid":"9c1576c7213cf7a9","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084493416,"stop":1750084494507,"duration":1091},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"get started link","uid":"e94724f7c9383d0e","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084494460,"stop":1750084496622,"duration":2162},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"has title","uid":"f7bfbf67a45ab3ec","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084494460,"stop":1750084496600,"duration":2140},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Переход по ссылке \"Забыли пароль?\"","uid":"a53cc3de606dc5ae","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084494465,"stop":1750084496561,"duration":2096},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Переход по ссылке \"Зарегистрируйтесь\"","uid":"34179ea7ef46fc56","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084494915,"stop":1750084497374,"duration":2459},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Неверный пароль","uid":"88a8af1bf7652c0e","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084497996,"stop":1750084499294,"duration":1298},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Несуществующий email","uid":"f6b2716194c4ce74","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084498297,"stop":1750084500105,"duration":1808},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Оба поля пустые","uid":"f0ec6d6d628046ac","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084498792,"stop":1750084500139,"duration":1347},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Только email без пароля","uid":"589b172d059c0837","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084499301,"stop":1750084500455,"duration":1154},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Некорректный формат email","uid":"749fb76346883a7d","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084499796,"stop":1750084501311,"duration":1515},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Регистр в email (User@test.com ≠ user@test.com)","uid":"98e3f9bd5b0da70e","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084500111,"stop":1750084501485,"duration":1374},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":["test.com","test.com)"]},{"name":"Пользователь должен успешно залогиниться с валидными данными","uid":"909368716fad6c28","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084500146,"stop":1750084501725,"duration":1579},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Переключатель видимости пароля показывает и скрывает ввод","uid":"3bba1028b851bbbc","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084500466,"stop":1750084501581,"duration":1115},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Некорректный email (формат)","uid":"c7a1902ba1108ba2","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084501326,"stop":1750084502338,"duration":1012},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Несуществующий email","uid":"7b807a335cae4963","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084501499,"stop":1750084502685,"duration":1186},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Неверный код подтверждения","uid":"1bf14a52b790d91","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084501594,"stop":1750084503368,"duration":1774},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Некорректный новый пароль","uid":"8af42ae3367ca0d6","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084501747,"stop":1750084503402,"duration":1655},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Пустое поле \"Повторите пароль\"","uid":"2e06dcefaf1e4c31","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084502343,"stop":1750084503756,"duration":1413},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Пароли не совпадают","uid":"159330e44b573ebb","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084502694,"stop":1750084504377,"duration":1683},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Пользователь успешно восстанавливает пароль","uid":"922c07477f21c047","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084503378,"stop":1750084505830,"duration":2452},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"has title","uid":"13a3c47523dc168e","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084504438,"stop":1750084505941,"duration":1503},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"get started link","uid":"995bb2612eda65c","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084504688,"stop":1750084506422,"duration":1734},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Переход по ссылке \"Забыли пароль?\"","uid":"31dc1d9640018cfc","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084505493,"stop":1750084506516,"duration":1023},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Неверный пароль","uid":"d30e1a8a947541fc","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084506454,"stop":1750084507609,"duration":1155},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Несуществующий email","uid":"ce94b9aa72086b4e","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084506686,"stop":1750084507723,"duration":1037},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Оба поля пустые","uid":"a2b4235c46265be0","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084506701,"stop":1750084507952,"duration":1251},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Переход по ссылке \"Зарегистрируйтесь\"","uid":"c9901a9937a7b7a5","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084506996,"stop":1750084507961,"duration":965},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Только email без пароля","uid":"9059b807844ecd29","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084507616,"stop":1750084508347,"duration":731},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Некорректный формат email","uid":"4da4945bee2a6177","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084507730,"stop":1750084508673,"duration":943},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Регистр в email (User@test.com ≠ user@test.com)","uid":"c0406bead53d77ca","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084507958,"stop":1750084508862,"duration":904},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":["test.com","test.com)"]},{"name":"Пользователь должен успешно залогиниться с валидными данными","uid":"9e16f68655df37d3","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084508128,"stop":1750084509091,"duration":963},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Переключатель видимости пароля показывает и скрывает ввод","uid":"2f8af4d67d869f1","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084508352,"stop":1750084509225,"duration":873},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Некорректный email (формат)","uid":"e8ebfdb5511bffc3","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084508679,"stop":1750084509441,"duration":762},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Несуществующий email","uid":"127e2567cd7d94f3","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084508872,"stop":1750084509760,"duration":888},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Неверный код подтверждения","uid":"703a2301ffdc2da7","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084509104,"stop":1750084510143,"duration":1039},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Некорректный новый пароль","uid":"a9ee13342854924d","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084509235,"stop":1750084510626,"duration":1391},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Пустое поле \"Повторите пароль\"","uid":"1f2ff10db5665418","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084509447,"stop":1750084510516,"duration":1069},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Пароли не совпадают","uid":"9ed8b38ec7c4a34b","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084509765,"stop":1750084510859,"duration":1094},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Пользователь успешно восстанавливает пароль","uid":"8d0ccd1c875a97cc","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750084510151,"stop":1750084511331,"duration":1180},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]}]} \ No newline at end of file +{"uid":"b1a8273437954620fa374b796ffaacdd","name":"behaviors","children":[{"name":"Переход по ссылке \"Зарегистрируйтесь\"","uid":"2b89ce8c9b1ff011","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253539579,"stop":1750253541710,"duration":2131},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"get started link","uid":"6962b06e4eb06b10","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"broken","time":{"start":1750253539580,"stop":1750253579575,"duration":39995},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":true,"parameters":["chromium"],"tags":[]},{"name":"has title","uid":"c7cd56bdce8656af","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253539581,"stop":1750253541528,"duration":1947},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Переход по ссылке \"Забыли пароль?\"","uid":"de38ce213e0340ea","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253539582,"stop":1750253541712,"duration":2130},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Неверный пароль","uid":"b47108b604f86692","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253541844,"stop":1750253543782,"duration":1938},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Несуществующий email","uid":"85493f33f5b82a23","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253542024,"stop":1750253543977,"duration":1953},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Оба поля пустые","uid":"bdfb8cd05c21f618","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253542026,"stop":1750253543994,"duration":1968},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Только email без пароля","uid":"12daddbe908eeb70","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253543785,"stop":1750253554497,"duration":10712},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректный формат email","uid":"b8861ed3561357c1","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253543980,"stop":1750253554437,"duration":10457},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Регистр в email (User@test.com ≠ user@test.com)","uid":"d84d93cab9b2d9bf","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253543998,"stop":1750253554549,"duration":10551},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":["test.com","test.com)"]},{"name":"Пользователь должен успешно залогиниться с валидными данными","uid":"579b024130132991","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253554444,"stop":1750253556270,"duration":1826},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Переключатель видимости пароля показывает и скрывает ввод","uid":"4fd8070ee07c07e1","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253554502,"stop":1750253556660,"duration":2158},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректный email (формат)","uid":"e5b2a4ada3cdd147","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253554554,"stop":1750253556742,"duration":2188},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Несуществующий email","uid":"edf7ac0b504065f6","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253556276,"stop":1750253562859,"duration":6583},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Неверный код подтверждения","uid":"c1ab22b3f9166450","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253556666,"stop":1750253562794,"duration":6128},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":true,"parameters":["chromium"],"tags":[]},{"name":"Некорректный новый пароль","uid":"c989d1690bcfa46f","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253556746,"stop":1750253562562,"duration":5816},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Пустое поле \"Повторите пароль\"","uid":"1c2b927f6a4c2926","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253562565,"stop":1750253564290,"duration":1725},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Пароли не совпадают","uid":"4eebb1230811a3dd","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253562798,"stop":1750253569425,"duration":6627},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Пользователь успешно восстанавливает пароль","uid":"348561a89d288bda","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253562864,"stop":1750253569405,"duration":6541},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Отправка пустой формы","uid":"ffac43d36c488156","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253564295,"stop":1750253570263,"duration":5968},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректное имя и фамилия (слишком длинные)","uid":"d449fe499514742d","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253569409,"stop":1750253577616,"duration":8207},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректный email формат","uid":"43316c0a1abf58ba","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253569430,"stop":1750253577638,"duration":8208},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Слишком длинная должность","uid":"1aa50af46a2c6c85","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253570265,"stop":1750253577600,"duration":7335},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Слишком длинное название организации","uid":"a59360836ecd582e","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253577607,"stop":1750253579829,"duration":2222},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":5,"retriesStatusChange":true,"parameters":["chromium"],"tags":[]},{"name":"Успешная регистрация нового пользователя","uid":"1ffa1f32ab940059","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253577624,"stop":1750253579862,"duration":2238},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":10,"retriesStatusChange":true,"parameters":["chromium"],"tags":[]},{"name":"has title","uid":"9e2f1dea9cfe0b65","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253578127,"stop":1750253582408,"duration":4281},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"get started link","uid":"9dbd22211a852adb","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253580470,"stop":1750253583690,"duration":3220},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Переход по ссылке \"Забыли пароль?\"","uid":"b804adb591f93bce","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253580476,"stop":1750253584678,"duration":4202},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Переход по ссылке \"Зарегистрируйтесь\"","uid":"f12e99c96967b550","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253580604,"stop":1750253590440,"duration":9836},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Неверный пароль","uid":"3f0e10c74637e3d3","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253583944,"stop":1750253591152,"duration":7208},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Несуществующий email","uid":"1e1a6ccd54582ad8","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253584291,"stop":1750253591595,"duration":7304},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Оба поля пустые","uid":"de659773fd4e5c6e","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253585670,"stop":1750253592130,"duration":6460},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Только email без пароля","uid":"24d0761a6935af7f","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253591157,"stop":1750253597964,"duration":6807},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Некорректный формат email","uid":"8554552a459385ed","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253591599,"stop":1750253598769,"duration":7170},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Регистр в email (User@test.com ≠ user@test.com)","uid":"8364fab107a5383f","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253591861,"stop":1750253598453,"duration":6592},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":["test.com","test.com)"]},{"name":"Пользователь должен успешно залогиниться с валидными данными","uid":"5d5913a5fa886b55","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253592136,"stop":1750253599022,"duration":6886},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Переключатель видимости пароля показывает и скрывает ввод","uid":"dd3b057d4871238c","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253597973,"stop":1750253599889,"duration":1916},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Некорректный email (формат)","uid":"2d6e81b71171ace1","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253598459,"stop":1750253600776,"duration":2317},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Несуществующий email","uid":"47ca0e41ec1ea8fb","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253598775,"stop":1750253604401,"duration":5626},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Неверный код подтверждения","uid":"d202e4c572649d08","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253599029,"stop":1750253601554,"duration":2525},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Некорректный новый пароль","uid":"268082d8261ccc76","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253599892,"stop":1750253602241,"duration":2349},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Пустое поле \"Повторите пароль\"","uid":"c5a5985d074991f8","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253600779,"stop":1750253603897,"duration":3118},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Пароли не совпадают","uid":"94f1b1ff67f3d4b2","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253601557,"stop":1750253604956,"duration":3399},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Пользователь успешно восстанавливает пароль","uid":"bdebd619900bc3fe","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253602246,"stop":1750253610240,"duration":7994},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Отправка пустой формы","uid":"ef734132e3fbac4f","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253603906,"stop":1750253611740,"duration":7834},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Некорректное имя и фамилия (слишком длинные)","uid":"f32fd3da60726a1e","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253604406,"stop":1750253611801,"duration":7395},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Некорректный email формат","uid":"25c5b161e06d93d9","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253604966,"stop":1750253611362,"duration":6396},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":true,"parameters":["firefox"],"tags":[]},{"name":"Слишком длинная должность","uid":"b6cf932c7feaf975","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253610248,"stop":1750253612680,"duration":2432},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Слишком длинное название организации","uid":"d6ec22530a71c4d6","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253611365,"stop":1750253620996,"duration":9631},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Успешная регистрация нового пользователя","uid":"7bd365bab41d410d","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253611748,"stop":1750253620699,"duration":8951},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"has title","uid":"bde11e0db442031c","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253612661,"stop":1750253615520,"duration":2859},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"get started link","uid":"7be5c1dfc4d42552","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253613514,"stop":1750253616668,"duration":3154},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Переход по ссылке \"Забыли пароль?\"","uid":"969ce7fb67ee94cb","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253615927,"stop":1750253618481,"duration":2554},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Переход по ссылке \"Зарегистрируйтесь\"","uid":"ddb409ab42c11aa9","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253616847,"stop":1750253618431,"duration":1584},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Неверный пароль","uid":"d99021bc0bd45ce9","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253618438,"stop":1750253620369,"duration":1931},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Несуществующий email","uid":"716b6c73ce6c62ba","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253618487,"stop":1750253620044,"duration":1557},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Оба поля пустые","uid":"41ad93595349c29","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253620048,"stop":1750253625592,"duration":5544},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Только email без пароля","uid":"74ce0bc363de24e3","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253620373,"stop":1750253625769,"duration":5396},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Некорректный формат email","uid":"d8233d7d84131656","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253621559,"stop":1750253626826,"duration":5267},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Регистр в email (User@test.com ≠ user@test.com)","uid":"a64dad12f676d820","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253621861,"stop":1750253625596,"duration":3735},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":["test.com","test.com)"]},{"name":"Пользователь должен успешно залогиниться с валидными данными","uid":"8ab573c35bfcbb5a","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253625598,"stop":1750253627407,"duration":1809},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Переключатель видимости пароля показывает и скрывает ввод","uid":"3d110a427012de38","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253625771,"stop":1750253627417,"duration":1646},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Некорректный email (формат)","uid":"f858e1d3e4667ccb","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253625776,"stop":1750253628901,"duration":3125},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Несуществующий email","uid":"2981b57719f478ef","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253627038,"stop":1750253629360,"duration":2322},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Неверный код подтверждения","uid":"a90b7beaa711f52d","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253627415,"stop":1750253629829,"duration":2414},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Некорректный новый пароль","uid":"8ff2d3069826e842","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253627424,"stop":1750253629445,"duration":2021},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Пустое поле \"Повторите пароль\"","uid":"7c195f45eccd77f0","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253628906,"stop":1750253632674,"duration":3768},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Пароли не совпадают","uid":"5d12a7641d21519b","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253629369,"stop":1750253631627,"duration":2258},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Пользователь успешно восстанавливает пароль","uid":"3ffdae9c16b02a46","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253629450,"stop":1750253631204,"duration":1754},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Отправка пустой формы","uid":"311909f1f9bb172e","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253629833,"stop":1750253631616,"duration":1783},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Некорректное имя и фамилия (слишком длинные)","uid":"8b6e30a20f47471a","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253631208,"stop":1750253633092,"duration":1884},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Некорректный email формат","uid":"459b4b10daa488e2","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253631623,"stop":1750253633317,"duration":1694},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Слишком длинная должность","uid":"bfaa389e6b880a54","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253631638,"stop":1750253633505,"duration":1867},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Слишком длинное название организации","uid":"1a3b3ab485523c37","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253632679,"stop":1750253634953,"duration":2274},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Успешная регистрация нового пользователя","uid":"161e58a3f3c0816d","parentUid":"b1a8273437954620fa374b796ffaacdd","status":"passed","time":{"start":1750253633097,"stop":1750253636457,"duration":3360},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]}]} \ No newline at end of file diff --git a/allure-report/data/categories.csv b/allure-report/data/categories.csv index e69de29..b10454e 100644 --- a/allure-report/data/categories.csv +++ b/allure-report/data/categories.csv @@ -0,0 +1,2 @@ +"BROKEN","CATEGORY","FAILED","PASSED","SKIPPED","UNKNOWN" +"1","Test defects","0","0","0","0" diff --git a/allure-report/data/categories.json b/allure-report/data/categories.json index a51bc93..28992dc 100644 --- a/allure-report/data/categories.json +++ b/allure-report/data/categories.json @@ -1 +1 @@ -{"uid":"4b4757e66a1912dae1a509f688f20b0f","name":"categories","children":[]} \ No newline at end of file +{"uid":"4b4757e66a1912dae1a509f688f20b0f","name":"categories","children":[{"name":"Test defects","children":[{"name":"Test timeout of 30000ms exceeded.","children":[{"name":"get started link","uid":"6962b06e4eb06b10","parentUid":"c40db157585b53b0bc1e162332a78fe1","status":"broken","time":{"start":1750253539580,"stop":1750253579575,"duration":39995},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":true,"parameters":["chromium"],"tags":[]}],"uid":"c40db157585b53b0bc1e162332a78fe1"}],"uid":"bdbf199525818fae7a8651db9eafe741"}]} \ No newline at end of file diff --git a/allure-report/data/packages.json b/allure-report/data/packages.json index 03a7f20..ce874bb 100644 --- a/allure-report/data/packages.json +++ b/allure-report/data/packages.json @@ -1 +1 @@ -{"uid":"83edc06c07f9ae9e47eb6dd1b683e4e2","name":"packages","children":[{"name":"ui","children":[{"name":"login.login","children":[{"name":"link.spec.ts","children":[{"name":"Переход по ссылке \"Зарегистрируйтесь\"","uid":"31bb4ab4326f6487","parentUid":"cc1acf8e5be3cffbad026d34aa944e89","status":"passed","time":{"start":1750084487577,"stop":1750084488773,"duration":1196},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Переход по ссылке \"Забыли пароль?\"","uid":"accf5a2fef71e751","parentUid":"cc1acf8e5be3cffbad026d34aa944e89","status":"passed","time":{"start":1750084487578,"stop":1750084490119,"duration":2541},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Переход по ссылке \"Забыли пароль?\"","uid":"a53cc3de606dc5ae","parentUid":"cc1acf8e5be3cffbad026d34aa944e89","status":"passed","time":{"start":1750084494465,"stop":1750084496561,"duration":2096},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Переход по ссылке \"Зарегистрируйтесь\"","uid":"34179ea7ef46fc56","parentUid":"cc1acf8e5be3cffbad026d34aa944e89","status":"passed","time":{"start":1750084494915,"stop":1750084497374,"duration":2459},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Переход по ссылке \"Забыли пароль?\"","uid":"31dc1d9640018cfc","parentUid":"cc1acf8e5be3cffbad026d34aa944e89","status":"passed","time":{"start":1750084505493,"stop":1750084506516,"duration":1023},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Переход по ссылке \"Зарегистрируйтесь\"","uid":"c9901a9937a7b7a5","parentUid":"cc1acf8e5be3cffbad026d34aa944e89","status":"passed","time":{"start":1750084506996,"stop":1750084507961,"duration":965},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]}],"uid":"link.spec.ts"},{"name":"negative.spec.ts","children":[{"name":"Неверный пароль","uid":"1f34f20dd4a0d9fd","parentUid":"7f94df7fceb2ac02d9d7ba32be16aa41","status":"passed","time":{"start":1750084489259,"stop":1750084490492,"duration":1233},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Несуществующий email","uid":"f5ffdd03c44055b1","parentUid":"7f94df7fceb2ac02d9d7ba32be16aa41","status":"passed","time":{"start":1750084489363,"stop":1750084490743,"duration":1380},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Оба поля пустые","uid":"f7a702fb49f5f201","parentUid":"7f94df7fceb2ac02d9d7ba32be16aa41","status":"passed","time":{"start":1750084490497,"stop":1750084491239,"duration":742},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Только email без пароля","uid":"219f17571c2d2715","parentUid":"7f94df7fceb2ac02d9d7ba32be16aa41","status":"passed","time":{"start":1750084490528,"stop":1750084491353,"duration":825},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректный формат email","uid":"1aae5dc9a4d21981","parentUid":"7f94df7fceb2ac02d9d7ba32be16aa41","status":"passed","time":{"start":1750084490746,"stop":1750084491640,"duration":894},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Регистр в email (User@test.com ≠ user@test.com)","uid":"287ea007721245b5","parentUid":"7f94df7fceb2ac02d9d7ba32be16aa41","status":"passed","time":{"start":1750084491115,"stop":1750084492165,"duration":1050},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":["test.com","test.com)"]},{"name":"Неверный пароль","uid":"88a8af1bf7652c0e","parentUid":"7f94df7fceb2ac02d9d7ba32be16aa41","status":"passed","time":{"start":1750084497996,"stop":1750084499294,"duration":1298},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Несуществующий email","uid":"f6b2716194c4ce74","parentUid":"7f94df7fceb2ac02d9d7ba32be16aa41","status":"passed","time":{"start":1750084498297,"stop":1750084500105,"duration":1808},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Оба поля пустые","uid":"f0ec6d6d628046ac","parentUid":"7f94df7fceb2ac02d9d7ba32be16aa41","status":"passed","time":{"start":1750084498792,"stop":1750084500139,"duration":1347},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Только email без пароля","uid":"589b172d059c0837","parentUid":"7f94df7fceb2ac02d9d7ba32be16aa41","status":"passed","time":{"start":1750084499301,"stop":1750084500455,"duration":1154},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Некорректный формат email","uid":"749fb76346883a7d","parentUid":"7f94df7fceb2ac02d9d7ba32be16aa41","status":"passed","time":{"start":1750084499796,"stop":1750084501311,"duration":1515},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Регистр в email (User@test.com ≠ user@test.com)","uid":"98e3f9bd5b0da70e","parentUid":"7f94df7fceb2ac02d9d7ba32be16aa41","status":"passed","time":{"start":1750084500111,"stop":1750084501485,"duration":1374},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":["test.com","test.com)"]},{"name":"Неверный пароль","uid":"d30e1a8a947541fc","parentUid":"7f94df7fceb2ac02d9d7ba32be16aa41","status":"passed","time":{"start":1750084506454,"stop":1750084507609,"duration":1155},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Несуществующий email","uid":"ce94b9aa72086b4e","parentUid":"7f94df7fceb2ac02d9d7ba32be16aa41","status":"passed","time":{"start":1750084506686,"stop":1750084507723,"duration":1037},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Оба поля пустые","uid":"a2b4235c46265be0","parentUid":"7f94df7fceb2ac02d9d7ba32be16aa41","status":"passed","time":{"start":1750084506701,"stop":1750084507952,"duration":1251},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Только email без пароля","uid":"9059b807844ecd29","parentUid":"7f94df7fceb2ac02d9d7ba32be16aa41","status":"passed","time":{"start":1750084507616,"stop":1750084508347,"duration":731},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Некорректный формат email","uid":"4da4945bee2a6177","parentUid":"7f94df7fceb2ac02d9d7ba32be16aa41","status":"passed","time":{"start":1750084507730,"stop":1750084508673,"duration":943},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Регистр в email (User@test.com ≠ user@test.com)","uid":"c0406bead53d77ca","parentUid":"7f94df7fceb2ac02d9d7ba32be16aa41","status":"passed","time":{"start":1750084507958,"stop":1750084508862,"duration":904},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":["test.com","test.com)"]}],"uid":"negative.spec.ts"},{"name":"spec.ts","children":[{"name":"Пользователь должен успешно залогиниться с валидными данными","uid":"5c52ce3f42b81329","parentUid":"94b5df0ce1bdc151227367bb666f0f34","status":"passed","time":{"start":1750084491243,"stop":1750084492069,"duration":826},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Пользователь должен успешно залогиниться с валидными данными","uid":"909368716fad6c28","parentUid":"94b5df0ce1bdc151227367bb666f0f34","status":"passed","time":{"start":1750084500146,"stop":1750084501725,"duration":1579},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Пользователь должен успешно залогиниться с валидными данными","uid":"9e16f68655df37d3","parentUid":"94b5df0ce1bdc151227367bb666f0f34","status":"passed","time":{"start":1750084508128,"stop":1750084509091,"duration":963},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]}],"uid":"spec.ts"},{"name":"ui.spec.ts","children":[{"name":"Переключатель видимости пароля показывает и скрывает ввод","uid":"c82bf9b727e4250d","parentUid":"fa0c2aa2b79ce689a9185006c0ad3e0c","status":"passed","time":{"start":1750084491357,"stop":1750084492371,"duration":1014},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Переключатель видимости пароля показывает и скрывает ввод","uid":"3bba1028b851bbbc","parentUid":"fa0c2aa2b79ce689a9185006c0ad3e0c","status":"passed","time":{"start":1750084500466,"stop":1750084501581,"duration":1115},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Переключатель видимости пароля показывает и скрывает ввод","uid":"2f8af4d67d869f1","parentUid":"fa0c2aa2b79ce689a9185006c0ad3e0c","status":"passed","time":{"start":1750084508352,"stop":1750084509225,"duration":873},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]}],"uid":"ui.spec.ts"}],"uid":"login.login"},{"name":"recovery","children":[{"name":"recover-negative.spec.ts","children":[{"name":"Некорректный email (формат)","uid":"701a94631e81e6af","parentUid":"f71fbe8419efa929efbadb28a5e69898","status":"passed","time":{"start":1750084491646,"stop":1750084492211,"duration":565},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Несуществующий email","uid":"a1fd8ee0914c6a57","parentUid":"f71fbe8419efa929efbadb28a5e69898","status":"passed","time":{"start":1750084492074,"stop":1750084492970,"duration":896},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Неверный код подтверждения","uid":"e3d2684b480ff47b","parentUid":"f71fbe8419efa929efbadb28a5e69898","status":"passed","time":{"start":1750084492172,"stop":1750084493410,"duration":1238},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректный новый пароль","uid":"e07c24690f801b74","parentUid":"f71fbe8419efa929efbadb28a5e69898","status":"passed","time":{"start":1750084492220,"stop":1750084493759,"duration":1539},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Пустое поле \"Повторите пароль\"","uid":"96736297720c2c0d","parentUid":"f71fbe8419efa929efbadb28a5e69898","status":"passed","time":{"start":1750084492375,"stop":1750084493870,"duration":1495},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Пароли не совпадают","uid":"b20bbc8741046798","parentUid":"f71fbe8419efa929efbadb28a5e69898","status":"passed","time":{"start":1750084492974,"stop":1750084493874,"duration":900},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректный email (формат)","uid":"c7a1902ba1108ba2","parentUid":"f71fbe8419efa929efbadb28a5e69898","status":"passed","time":{"start":1750084501326,"stop":1750084502338,"duration":1012},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Несуществующий email","uid":"7b807a335cae4963","parentUid":"f71fbe8419efa929efbadb28a5e69898","status":"passed","time":{"start":1750084501499,"stop":1750084502685,"duration":1186},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Неверный код подтверждения","uid":"1bf14a52b790d91","parentUid":"f71fbe8419efa929efbadb28a5e69898","status":"passed","time":{"start":1750084501594,"stop":1750084503368,"duration":1774},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Некорректный новый пароль","uid":"8af42ae3367ca0d6","parentUid":"f71fbe8419efa929efbadb28a5e69898","status":"passed","time":{"start":1750084501747,"stop":1750084503402,"duration":1655},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Пустое поле \"Повторите пароль\"","uid":"2e06dcefaf1e4c31","parentUid":"f71fbe8419efa929efbadb28a5e69898","status":"passed","time":{"start":1750084502343,"stop":1750084503756,"duration":1413},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Пароли не совпадают","uid":"159330e44b573ebb","parentUid":"f71fbe8419efa929efbadb28a5e69898","status":"passed","time":{"start":1750084502694,"stop":1750084504377,"duration":1683},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Некорректный email (формат)","uid":"e8ebfdb5511bffc3","parentUid":"f71fbe8419efa929efbadb28a5e69898","status":"passed","time":{"start":1750084508679,"stop":1750084509441,"duration":762},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Несуществующий email","uid":"127e2567cd7d94f3","parentUid":"f71fbe8419efa929efbadb28a5e69898","status":"passed","time":{"start":1750084508872,"stop":1750084509760,"duration":888},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Неверный код подтверждения","uid":"703a2301ffdc2da7","parentUid":"f71fbe8419efa929efbadb28a5e69898","status":"passed","time":{"start":1750084509104,"stop":1750084510143,"duration":1039},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Некорректный новый пароль","uid":"a9ee13342854924d","parentUid":"f71fbe8419efa929efbadb28a5e69898","status":"passed","time":{"start":1750084509235,"stop":1750084510626,"duration":1391},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Пустое поле \"Повторите пароль\"","uid":"1f2ff10db5665418","parentUid":"f71fbe8419efa929efbadb28a5e69898","status":"passed","time":{"start":1750084509447,"stop":1750084510516,"duration":1069},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Пароли не совпадают","uid":"9ed8b38ec7c4a34b","parentUid":"f71fbe8419efa929efbadb28a5e69898","status":"passed","time":{"start":1750084509765,"stop":1750084510859,"duration":1094},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]}],"uid":"recover-negative.spec.ts"},{"name":"recover-password.spec.ts","children":[{"name":"Пользователь успешно восстанавливает пароль","uid":"9c1576c7213cf7a9","parentUid":"b22b2a9b293f045266b8c1825f59fe28","status":"passed","time":{"start":1750084493416,"stop":1750084494507,"duration":1091},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Пользователь успешно восстанавливает пароль","uid":"922c07477f21c047","parentUid":"b22b2a9b293f045266b8c1825f59fe28","status":"passed","time":{"start":1750084503378,"stop":1750084505830,"duration":2452},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Пользователь успешно восстанавливает пароль","uid":"8d0ccd1c875a97cc","parentUid":"b22b2a9b293f045266b8c1825f59fe28","status":"passed","time":{"start":1750084510151,"stop":1750084511331,"duration":1180},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]}],"uid":"recover-password.spec.ts"}],"uid":"83fb17d7d98f768f4ab913139e168e0f"}],"uid":"4c0e9cb4210f607d23135f6226f1112f"},{"name":"example.spec.ts","children":[{"name":"get started link","uid":"b714c3ef6b1955c5","parentUid":"26f0b1cacc04df6f7e9ec87618cb6981","status":"passed","time":{"start":1750084487579,"stop":1750084488883,"duration":1304},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"has title","uid":"731f29d77f45de06","parentUid":"26f0b1cacc04df6f7e9ec87618cb6981","status":"passed","time":{"start":1750084487580,"stop":1750084490628,"duration":3048},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"get started link","uid":"e94724f7c9383d0e","parentUid":"26f0b1cacc04df6f7e9ec87618cb6981","status":"passed","time":{"start":1750084494460,"stop":1750084496622,"duration":2162},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"has title","uid":"f7bfbf67a45ab3ec","parentUid":"26f0b1cacc04df6f7e9ec87618cb6981","status":"passed","time":{"start":1750084494460,"stop":1750084496600,"duration":2140},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"has title","uid":"13a3c47523dc168e","parentUid":"26f0b1cacc04df6f7e9ec87618cb6981","status":"passed","time":{"start":1750084504438,"stop":1750084505941,"duration":1503},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"get started link","uid":"995bb2612eda65c","parentUid":"26f0b1cacc04df6f7e9ec87618cb6981","status":"passed","time":{"start":1750084504688,"stop":1750084506422,"duration":1734},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]}],"uid":"example.spec.ts"}]} \ No newline at end of file +{"uid":"83edc06c07f9ae9e47eb6dd1b683e4e2","name":"packages","children":[{"name":"ui","children":[{"name":"login.login","children":[{"name":"link.spec.ts","children":[{"name":"Переход по ссылке \"Зарегистрируйтесь\"","uid":"2b89ce8c9b1ff011","parentUid":"cc1acf8e5be3cffbad026d34aa944e89","status":"passed","time":{"start":1750253539579,"stop":1750253541710,"duration":2131},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Переход по ссылке \"Забыли пароль?\"","uid":"de38ce213e0340ea","parentUid":"cc1acf8e5be3cffbad026d34aa944e89","status":"passed","time":{"start":1750253539582,"stop":1750253541712,"duration":2130},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Переход по ссылке \"Забыли пароль?\"","uid":"b804adb591f93bce","parentUid":"cc1acf8e5be3cffbad026d34aa944e89","status":"passed","time":{"start":1750253580476,"stop":1750253584678,"duration":4202},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Переход по ссылке \"Зарегистрируйтесь\"","uid":"f12e99c96967b550","parentUid":"cc1acf8e5be3cffbad026d34aa944e89","status":"passed","time":{"start":1750253580604,"stop":1750253590440,"duration":9836},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Переход по ссылке \"Забыли пароль?\"","uid":"969ce7fb67ee94cb","parentUid":"cc1acf8e5be3cffbad026d34aa944e89","status":"passed","time":{"start":1750253615927,"stop":1750253618481,"duration":2554},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Переход по ссылке \"Зарегистрируйтесь\"","uid":"ddb409ab42c11aa9","parentUid":"cc1acf8e5be3cffbad026d34aa944e89","status":"passed","time":{"start":1750253616847,"stop":1750253618431,"duration":1584},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]}],"uid":"link.spec.ts"},{"name":"negative.spec.ts","children":[{"name":"Неверный пароль","uid":"b47108b604f86692","parentUid":"7f94df7fceb2ac02d9d7ba32be16aa41","status":"passed","time":{"start":1750253541844,"stop":1750253543782,"duration":1938},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Несуществующий email","uid":"85493f33f5b82a23","parentUid":"7f94df7fceb2ac02d9d7ba32be16aa41","status":"passed","time":{"start":1750253542024,"stop":1750253543977,"duration":1953},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Оба поля пустые","uid":"bdfb8cd05c21f618","parentUid":"7f94df7fceb2ac02d9d7ba32be16aa41","status":"passed","time":{"start":1750253542026,"stop":1750253543994,"duration":1968},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Только email без пароля","uid":"12daddbe908eeb70","parentUid":"7f94df7fceb2ac02d9d7ba32be16aa41","status":"passed","time":{"start":1750253543785,"stop":1750253554497,"duration":10712},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректный формат email","uid":"b8861ed3561357c1","parentUid":"7f94df7fceb2ac02d9d7ba32be16aa41","status":"passed","time":{"start":1750253543980,"stop":1750253554437,"duration":10457},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Регистр в email (User@test.com ≠ user@test.com)","uid":"d84d93cab9b2d9bf","parentUid":"7f94df7fceb2ac02d9d7ba32be16aa41","status":"passed","time":{"start":1750253543998,"stop":1750253554549,"duration":10551},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":["test.com","test.com)"]},{"name":"Неверный пароль","uid":"3f0e10c74637e3d3","parentUid":"7f94df7fceb2ac02d9d7ba32be16aa41","status":"passed","time":{"start":1750253583944,"stop":1750253591152,"duration":7208},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Несуществующий email","uid":"1e1a6ccd54582ad8","parentUid":"7f94df7fceb2ac02d9d7ba32be16aa41","status":"passed","time":{"start":1750253584291,"stop":1750253591595,"duration":7304},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Оба поля пустые","uid":"de659773fd4e5c6e","parentUid":"7f94df7fceb2ac02d9d7ba32be16aa41","status":"passed","time":{"start":1750253585670,"stop":1750253592130,"duration":6460},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Только email без пароля","uid":"24d0761a6935af7f","parentUid":"7f94df7fceb2ac02d9d7ba32be16aa41","status":"passed","time":{"start":1750253591157,"stop":1750253597964,"duration":6807},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Некорректный формат email","uid":"8554552a459385ed","parentUid":"7f94df7fceb2ac02d9d7ba32be16aa41","status":"passed","time":{"start":1750253591599,"stop":1750253598769,"duration":7170},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Регистр в email (User@test.com ≠ user@test.com)","uid":"8364fab107a5383f","parentUid":"7f94df7fceb2ac02d9d7ba32be16aa41","status":"passed","time":{"start":1750253591861,"stop":1750253598453,"duration":6592},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":["test.com","test.com)"]},{"name":"Неверный пароль","uid":"d99021bc0bd45ce9","parentUid":"7f94df7fceb2ac02d9d7ba32be16aa41","status":"passed","time":{"start":1750253618438,"stop":1750253620369,"duration":1931},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Несуществующий email","uid":"716b6c73ce6c62ba","parentUid":"7f94df7fceb2ac02d9d7ba32be16aa41","status":"passed","time":{"start":1750253618487,"stop":1750253620044,"duration":1557},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Оба поля пустые","uid":"41ad93595349c29","parentUid":"7f94df7fceb2ac02d9d7ba32be16aa41","status":"passed","time":{"start":1750253620048,"stop":1750253625592,"duration":5544},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Только email без пароля","uid":"74ce0bc363de24e3","parentUid":"7f94df7fceb2ac02d9d7ba32be16aa41","status":"passed","time":{"start":1750253620373,"stop":1750253625769,"duration":5396},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Некорректный формат email","uid":"d8233d7d84131656","parentUid":"7f94df7fceb2ac02d9d7ba32be16aa41","status":"passed","time":{"start":1750253621559,"stop":1750253626826,"duration":5267},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Регистр в email (User@test.com ≠ user@test.com)","uid":"a64dad12f676d820","parentUid":"7f94df7fceb2ac02d9d7ba32be16aa41","status":"passed","time":{"start":1750253621861,"stop":1750253625596,"duration":3735},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":["test.com","test.com)"]}],"uid":"negative.spec.ts"},{"name":"spec.ts","children":[{"name":"Пользователь должен успешно залогиниться с валидными данными","uid":"579b024130132991","parentUid":"94b5df0ce1bdc151227367bb666f0f34","status":"passed","time":{"start":1750253554444,"stop":1750253556270,"duration":1826},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Пользователь должен успешно залогиниться с валидными данными","uid":"5d5913a5fa886b55","parentUid":"94b5df0ce1bdc151227367bb666f0f34","status":"passed","time":{"start":1750253592136,"stop":1750253599022,"duration":6886},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Пользователь должен успешно залогиниться с валидными данными","uid":"8ab573c35bfcbb5a","parentUid":"94b5df0ce1bdc151227367bb666f0f34","status":"passed","time":{"start":1750253625598,"stop":1750253627407,"duration":1809},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]}],"uid":"spec.ts"},{"name":"ui.spec.ts","children":[{"name":"Переключатель видимости пароля показывает и скрывает ввод","uid":"4fd8070ee07c07e1","parentUid":"fa0c2aa2b79ce689a9185006c0ad3e0c","status":"passed","time":{"start":1750253554502,"stop":1750253556660,"duration":2158},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Переключатель видимости пароля показывает и скрывает ввод","uid":"dd3b057d4871238c","parentUid":"fa0c2aa2b79ce689a9185006c0ad3e0c","status":"passed","time":{"start":1750253597973,"stop":1750253599889,"duration":1916},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Переключатель видимости пароля показывает и скрывает ввод","uid":"3d110a427012de38","parentUid":"fa0c2aa2b79ce689a9185006c0ad3e0c","status":"passed","time":{"start":1750253625771,"stop":1750253627417,"duration":1646},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]}],"uid":"ui.spec.ts"}],"uid":"login.login"},{"name":"recovery","children":[{"name":"recover-negative.spec.ts","children":[{"name":"Некорректный email (формат)","uid":"e5b2a4ada3cdd147","parentUid":"f71fbe8419efa929efbadb28a5e69898","status":"passed","time":{"start":1750253554554,"stop":1750253556742,"duration":2188},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Несуществующий email","uid":"edf7ac0b504065f6","parentUid":"f71fbe8419efa929efbadb28a5e69898","status":"passed","time":{"start":1750253556276,"stop":1750253562859,"duration":6583},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Неверный код подтверждения","uid":"c1ab22b3f9166450","parentUid":"f71fbe8419efa929efbadb28a5e69898","status":"passed","time":{"start":1750253556666,"stop":1750253562794,"duration":6128},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":true,"parameters":["chromium"],"tags":[]},{"name":"Некорректный новый пароль","uid":"c989d1690bcfa46f","parentUid":"f71fbe8419efa929efbadb28a5e69898","status":"passed","time":{"start":1750253556746,"stop":1750253562562,"duration":5816},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Пустое поле \"Повторите пароль\"","uid":"1c2b927f6a4c2926","parentUid":"f71fbe8419efa929efbadb28a5e69898","status":"passed","time":{"start":1750253562565,"stop":1750253564290,"duration":1725},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Пароли не совпадают","uid":"4eebb1230811a3dd","parentUid":"f71fbe8419efa929efbadb28a5e69898","status":"passed","time":{"start":1750253562798,"stop":1750253569425,"duration":6627},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректный email (формат)","uid":"2d6e81b71171ace1","parentUid":"f71fbe8419efa929efbadb28a5e69898","status":"passed","time":{"start":1750253598459,"stop":1750253600776,"duration":2317},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Несуществующий email","uid":"47ca0e41ec1ea8fb","parentUid":"f71fbe8419efa929efbadb28a5e69898","status":"passed","time":{"start":1750253598775,"stop":1750253604401,"duration":5626},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Неверный код подтверждения","uid":"d202e4c572649d08","parentUid":"f71fbe8419efa929efbadb28a5e69898","status":"passed","time":{"start":1750253599029,"stop":1750253601554,"duration":2525},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Некорректный новый пароль","uid":"268082d8261ccc76","parentUid":"f71fbe8419efa929efbadb28a5e69898","status":"passed","time":{"start":1750253599892,"stop":1750253602241,"duration":2349},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Пустое поле \"Повторите пароль\"","uid":"c5a5985d074991f8","parentUid":"f71fbe8419efa929efbadb28a5e69898","status":"passed","time":{"start":1750253600779,"stop":1750253603897,"duration":3118},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Пароли не совпадают","uid":"94f1b1ff67f3d4b2","parentUid":"f71fbe8419efa929efbadb28a5e69898","status":"passed","time":{"start":1750253601557,"stop":1750253604956,"duration":3399},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Некорректный email (формат)","uid":"f858e1d3e4667ccb","parentUid":"f71fbe8419efa929efbadb28a5e69898","status":"passed","time":{"start":1750253625776,"stop":1750253628901,"duration":3125},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Несуществующий email","uid":"2981b57719f478ef","parentUid":"f71fbe8419efa929efbadb28a5e69898","status":"passed","time":{"start":1750253627038,"stop":1750253629360,"duration":2322},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Неверный код подтверждения","uid":"a90b7beaa711f52d","parentUid":"f71fbe8419efa929efbadb28a5e69898","status":"passed","time":{"start":1750253627415,"stop":1750253629829,"duration":2414},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Некорректный новый пароль","uid":"8ff2d3069826e842","parentUid":"f71fbe8419efa929efbadb28a5e69898","status":"passed","time":{"start":1750253627424,"stop":1750253629445,"duration":2021},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Пустое поле \"Повторите пароль\"","uid":"7c195f45eccd77f0","parentUid":"f71fbe8419efa929efbadb28a5e69898","status":"passed","time":{"start":1750253628906,"stop":1750253632674,"duration":3768},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Пароли не совпадают","uid":"5d12a7641d21519b","parentUid":"f71fbe8419efa929efbadb28a5e69898","status":"passed","time":{"start":1750253629369,"stop":1750253631627,"duration":2258},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]}],"uid":"recover-negative.spec.ts"},{"name":"recover-password.spec.ts","children":[{"name":"Пользователь успешно восстанавливает пароль","uid":"348561a89d288bda","parentUid":"b22b2a9b293f045266b8c1825f59fe28","status":"passed","time":{"start":1750253562864,"stop":1750253569405,"duration":6541},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Пользователь успешно восстанавливает пароль","uid":"bdebd619900bc3fe","parentUid":"b22b2a9b293f045266b8c1825f59fe28","status":"passed","time":{"start":1750253602246,"stop":1750253610240,"duration":7994},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Пользователь успешно восстанавливает пароль","uid":"3ffdae9c16b02a46","parentUid":"b22b2a9b293f045266b8c1825f59fe28","status":"passed","time":{"start":1750253629450,"stop":1750253631204,"duration":1754},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]}],"uid":"recover-password.spec.ts"}],"uid":"83fb17d7d98f768f4ab913139e168e0f"},{"name":"registration.register","children":[{"name":"negative.spec.ts","children":[{"name":"Отправка пустой формы","uid":"ffac43d36c488156","parentUid":"f6e4ad08ab29c66bceadb7b4d53c3c4c","status":"passed","time":{"start":1750253564295,"stop":1750253570263,"duration":5968},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректное имя и фамилия (слишком длинные)","uid":"d449fe499514742d","parentUid":"f6e4ad08ab29c66bceadb7b4d53c3c4c","status":"passed","time":{"start":1750253569409,"stop":1750253577616,"duration":8207},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректный email формат","uid":"43316c0a1abf58ba","parentUid":"f6e4ad08ab29c66bceadb7b4d53c3c4c","status":"passed","time":{"start":1750253569430,"stop":1750253577638,"duration":8208},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Слишком длинная должность","uid":"1aa50af46a2c6c85","parentUid":"f6e4ad08ab29c66bceadb7b4d53c3c4c","status":"passed","time":{"start":1750253570265,"stop":1750253577600,"duration":7335},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Слишком длинное название организации","uid":"a59360836ecd582e","parentUid":"f6e4ad08ab29c66bceadb7b4d53c3c4c","status":"passed","time":{"start":1750253577607,"stop":1750253579829,"duration":2222},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":5,"retriesStatusChange":true,"parameters":["chromium"],"tags":[]},{"name":"Отправка пустой формы","uid":"ef734132e3fbac4f","parentUid":"f6e4ad08ab29c66bceadb7b4d53c3c4c","status":"passed","time":{"start":1750253603906,"stop":1750253611740,"duration":7834},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Некорректное имя и фамилия (слишком длинные)","uid":"f32fd3da60726a1e","parentUid":"f6e4ad08ab29c66bceadb7b4d53c3c4c","status":"passed","time":{"start":1750253604406,"stop":1750253611801,"duration":7395},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Некорректный email формат","uid":"25c5b161e06d93d9","parentUid":"f6e4ad08ab29c66bceadb7b4d53c3c4c","status":"passed","time":{"start":1750253604966,"stop":1750253611362,"duration":6396},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":true,"parameters":["firefox"],"tags":[]},{"name":"Слишком длинная должность","uid":"b6cf932c7feaf975","parentUid":"f6e4ad08ab29c66bceadb7b4d53c3c4c","status":"passed","time":{"start":1750253610248,"stop":1750253612680,"duration":2432},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Слишком длинное название организации","uid":"d6ec22530a71c4d6","parentUid":"f6e4ad08ab29c66bceadb7b4d53c3c4c","status":"passed","time":{"start":1750253611365,"stop":1750253620996,"duration":9631},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Отправка пустой формы","uid":"311909f1f9bb172e","parentUid":"f6e4ad08ab29c66bceadb7b4d53c3c4c","status":"passed","time":{"start":1750253629833,"stop":1750253631616,"duration":1783},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Некорректное имя и фамилия (слишком длинные)","uid":"8b6e30a20f47471a","parentUid":"f6e4ad08ab29c66bceadb7b4d53c3c4c","status":"passed","time":{"start":1750253631208,"stop":1750253633092,"duration":1884},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Некорректный email формат","uid":"459b4b10daa488e2","parentUid":"f6e4ad08ab29c66bceadb7b4d53c3c4c","status":"passed","time":{"start":1750253631623,"stop":1750253633317,"duration":1694},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Слишком длинная должность","uid":"bfaa389e6b880a54","parentUid":"f6e4ad08ab29c66bceadb7b4d53c3c4c","status":"passed","time":{"start":1750253631638,"stop":1750253633505,"duration":1867},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Слишком длинное название организации","uid":"1a3b3ab485523c37","parentUid":"f6e4ad08ab29c66bceadb7b4d53c3c4c","status":"passed","time":{"start":1750253632679,"stop":1750253634953,"duration":2274},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]}],"uid":"negative.spec.ts"},{"name":"spec.ts","children":[{"name":"Успешная регистрация нового пользователя","uid":"1ffa1f32ab940059","parentUid":"9aed9c40f1eb502623cdb7238f2441e8","status":"passed","time":{"start":1750253577624,"stop":1750253579862,"duration":2238},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":10,"retriesStatusChange":true,"parameters":["chromium"],"tags":[]},{"name":"Успешная регистрация нового пользователя","uid":"7bd365bab41d410d","parentUid":"9aed9c40f1eb502623cdb7238f2441e8","status":"passed","time":{"start":1750253611748,"stop":1750253620699,"duration":8951},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Успешная регистрация нового пользователя","uid":"161e58a3f3c0816d","parentUid":"9aed9c40f1eb502623cdb7238f2441e8","status":"passed","time":{"start":1750253633097,"stop":1750253636457,"duration":3360},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]}],"uid":"spec.ts"}],"uid":"registration.register"}],"uid":"4c0e9cb4210f607d23135f6226f1112f"},{"name":"example.spec.ts","children":[{"name":"get started link","uid":"6962b06e4eb06b10","parentUid":"26f0b1cacc04df6f7e9ec87618cb6981","status":"broken","time":{"start":1750253539580,"stop":1750253579575,"duration":39995},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":true,"parameters":["chromium"],"tags":[]},{"name":"has title","uid":"c7cd56bdce8656af","parentUid":"26f0b1cacc04df6f7e9ec87618cb6981","status":"passed","time":{"start":1750253539581,"stop":1750253541528,"duration":1947},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"has title","uid":"9e2f1dea9cfe0b65","parentUid":"26f0b1cacc04df6f7e9ec87618cb6981","status":"passed","time":{"start":1750253578127,"stop":1750253582408,"duration":4281},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"get started link","uid":"9dbd22211a852adb","parentUid":"26f0b1cacc04df6f7e9ec87618cb6981","status":"passed","time":{"start":1750253580470,"stop":1750253583690,"duration":3220},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"has title","uid":"bde11e0db442031c","parentUid":"26f0b1cacc04df6f7e9ec87618cb6981","status":"passed","time":{"start":1750253612661,"stop":1750253615520,"duration":2859},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"get started link","uid":"7be5c1dfc4d42552","parentUid":"26f0b1cacc04df6f7e9ec87618cb6981","status":"passed","time":{"start":1750253613514,"stop":1750253616668,"duration":3154},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]}],"uid":"example.spec.ts"}]} \ No newline at end of file diff --git a/allure-report/data/suites.csv b/allure-report/data/suites.csv index a56e6ec..4b8018c 100644 --- a/allure-report/data/suites.csv +++ b/allure-report/data/suites.csv @@ -1,58 +1,76 @@ "DESCRIPTION","DURATION IN MS","NAME","PARENT SUITE","START TIME","STATUS","STOP TIME","SUB SUITE","SUITE","TEST CLASS","TEST METHOD" -"","1155","Неверный пароль","webkit","Mon Jun 16 17:35:06 MSK 2025","passed","Mon Jun 16 17:35:07 MSK 2025","Негативные сценарии авторизации","ui/login/login.negative.spec.ts","","" -"","2096","Переход по ссылке ""Забыли пароль?""","firefox","Mon Jun 16 17:34:54 MSK 2025","passed","Mon Jun 16 17:34:56 MSK 2025","Переходы по ссылкам в разделе авторизации","ui/login/login.link.spec.ts","","" -"","2162","get started link","firefox","Mon Jun 16 17:34:54 MSK 2025","passed","Mon Jun 16 17:34:56 MSK 2025","","example.spec.ts","","" -"","1304","get started link","chromium","Mon Jun 16 17:34:47 MSK 2025","passed","Mon Jun 16 17:34:48 MSK 2025","","example.spec.ts","","" -"","1774","Неверный код подтверждения","firefox","Mon Jun 16 17:35:01 MSK 2025","passed","Mon Jun 16 17:35:03 MSK 2025","Негативные сценарии восстановления пароля","ui/recovery/recover-negative.spec.ts","","" -"","565","Некорректный email (формат)","chromium","Mon Jun 16 17:34:51 MSK 2025","passed","Mon Jun 16 17:34:52 MSK 2025","Негативные сценарии восстановления пароля","ui/recovery/recover-negative.spec.ts","","" -"","1154","Только email без пароля","firefox","Mon Jun 16 17:34:59 MSK 2025","passed","Mon Jun 16 17:35:00 MSK 2025","Негативные сценарии авторизации","ui/login/login.negative.spec.ts","","" -"","2541","Переход по ссылке ""Забыли пароль?""","chromium","Mon Jun 16 17:34:47 MSK 2025","passed","Mon Jun 16 17:34:50 MSK 2025","Переходы по ссылкам в разделе авторизации","ui/login/login.link.spec.ts","","" -"","900","Пароли не совпадают","chromium","Mon Jun 16 17:34:52 MSK 2025","passed","Mon Jun 16 17:34:53 MSK 2025","Негативные сценарии восстановления пароля","ui/recovery/recover-negative.spec.ts","","" -"","742","Оба поля пустые","chromium","Mon Jun 16 17:34:50 MSK 2025","passed","Mon Jun 16 17:34:51 MSK 2025","Негативные сценарии авторизации","ui/login/login.negative.spec.ts","","" -"","904","Регистр в email (User@test.com ≠ user@test.com)","webkit","Mon Jun 16 17:35:07 MSK 2025","passed","Mon Jun 16 17:35:08 MSK 2025","Негативные сценарии авторизации","ui/login/login.negative.spec.ts","","" -"","2452","Пользователь успешно восстанавливает пароль","firefox","Mon Jun 16 17:35:03 MSK 2025","passed","Mon Jun 16 17:35:05 MSK 2025","Восстановление пароля — позитивные сценарии","ui/recovery/recover-password.spec.ts","","" -"","1413","Пустое поле ""Повторите пароль""","firefox","Mon Jun 16 17:35:02 MSK 2025","passed","Mon Jun 16 17:35:03 MSK 2025","Негативные сценарии восстановления пароля","ui/recovery/recover-negative.spec.ts","","" -"","1503","has title","webkit","Mon Jun 16 17:35:04 MSK 2025","passed","Mon Jun 16 17:35:05 MSK 2025","","example.spec.ts","","" -"","1495","Пустое поле ""Повторите пароль""","chromium","Mon Jun 16 17:34:52 MSK 2025","passed","Mon Jun 16 17:34:53 MSK 2025","Негативные сценарии восстановления пароля","ui/recovery/recover-negative.spec.ts","","" -"","1196","Переход по ссылке ""Зарегистрируйтесь""","chromium","Mon Jun 16 17:34:47 MSK 2025","passed","Mon Jun 16 17:34:48 MSK 2025","Переходы по ссылкам в разделе авторизации","ui/login/login.link.spec.ts","","" -"","1069","Пустое поле ""Повторите пароль""","webkit","Mon Jun 16 17:35:09 MSK 2025","passed","Mon Jun 16 17:35:10 MSK 2025","Негативные сценарии восстановления пароля","ui/recovery/recover-negative.spec.ts","","" -"","888","Несуществующий email","webkit","Mon Jun 16 17:35:08 MSK 2025","passed","Mon Jun 16 17:35:09 MSK 2025","Негативные сценарии восстановления пароля","ui/recovery/recover-negative.spec.ts","","" -"","1515","Некорректный формат email","firefox","Mon Jun 16 17:34:59 MSK 2025","passed","Mon Jun 16 17:35:01 MSK 2025","Негативные сценарии авторизации","ui/login/login.negative.spec.ts","","" -"","1374","Регистр в email (User@test.com ≠ user@test.com)","firefox","Mon Jun 16 17:35:00 MSK 2025","passed","Mon Jun 16 17:35:01 MSK 2025","Негативные сценарии авторизации","ui/login/login.negative.spec.ts","","" -"","1347","Оба поля пустые","firefox","Mon Jun 16 17:34:58 MSK 2025","passed","Mon Jun 16 17:35:00 MSK 2025","Негативные сценарии авторизации","ui/login/login.negative.spec.ts","","" -"","1233","Неверный пароль","chromium","Mon Jun 16 17:34:49 MSK 2025","passed","Mon Jun 16 17:34:50 MSK 2025","Негативные сценарии авторизации","ui/login/login.negative.spec.ts","","" -"","1091","Пользователь успешно восстанавливает пароль","chromium","Mon Jun 16 17:34:53 MSK 2025","passed","Mon Jun 16 17:34:54 MSK 2025","Восстановление пароля — позитивные сценарии","ui/recovery/recover-password.spec.ts","","" -"","762","Некорректный email (формат)","webkit","Mon Jun 16 17:35:08 MSK 2025","passed","Mon Jun 16 17:35:09 MSK 2025","Негативные сценарии восстановления пароля","ui/recovery/recover-negative.spec.ts","","" -"","963","Пользователь должен успешно залогиниться с валидными данными","webkit","Mon Jun 16 17:35:08 MSK 2025","passed","Mon Jun 16 17:35:09 MSK 2025","Авторизация пользователя","ui/login/login.spec.ts","","" -"","1579","Пользователь должен успешно залогиниться с валидными данными","firefox","Mon Jun 16 17:35:00 MSK 2025","passed","Mon Jun 16 17:35:01 MSK 2025","Авторизация пользователя","ui/login/login.spec.ts","","" -"","1039","Неверный код подтверждения","webkit","Mon Jun 16 17:35:09 MSK 2025","passed","Mon Jun 16 17:35:10 MSK 2025","Негативные сценарии восстановления пароля","ui/recovery/recover-negative.spec.ts","","" -"","943","Некорректный формат email","webkit","Mon Jun 16 17:35:07 MSK 2025","passed","Mon Jun 16 17:35:08 MSK 2025","Негативные сценарии авторизации","ui/login/login.negative.spec.ts","","" -"","894","Некорректный формат email","chromium","Mon Jun 16 17:34:50 MSK 2025","passed","Mon Jun 16 17:34:51 MSK 2025","Негативные сценарии авторизации","ui/login/login.negative.spec.ts","","" -"","1180","Пользователь успешно восстанавливает пароль","webkit","Mon Jun 16 17:35:10 MSK 2025","passed","Mon Jun 16 17:35:11 MSK 2025","Восстановление пароля — позитивные сценарии","ui/recovery/recover-password.spec.ts","","" -"","731","Только email без пароля","webkit","Mon Jun 16 17:35:07 MSK 2025","passed","Mon Jun 16 17:35:08 MSK 2025","Негативные сценарии авторизации","ui/login/login.negative.spec.ts","","" -"","1298","Неверный пароль","firefox","Mon Jun 16 17:34:57 MSK 2025","passed","Mon Jun 16 17:34:59 MSK 2025","Негативные сценарии авторизации","ui/login/login.negative.spec.ts","","" -"","896","Несуществующий email","chromium","Mon Jun 16 17:34:52 MSK 2025","passed","Mon Jun 16 17:34:52 MSK 2025","Негативные сценарии восстановления пароля","ui/recovery/recover-negative.spec.ts","","" -"","873","Переключатель видимости пароля показывает и скрывает ввод","webkit","Mon Jun 16 17:35:08 MSK 2025","passed","Mon Jun 16 17:35:09 MSK 2025","UI сценарии авторизации","ui/login/login.ui.spec.ts","","" -"","1734","get started link","webkit","Mon Jun 16 17:35:04 MSK 2025","passed","Mon Jun 16 17:35:06 MSK 2025","","example.spec.ts","","" -"","825","Только email без пароля","chromium","Mon Jun 16 17:34:50 MSK 2025","passed","Mon Jun 16 17:34:51 MSK 2025","Негативные сценарии авторизации","ui/login/login.negative.spec.ts","","" -"","826","Пользователь должен успешно залогиниться с валидными данными","chromium","Mon Jun 16 17:34:51 MSK 2025","passed","Mon Jun 16 17:34:52 MSK 2025","Авторизация пользователя","ui/login/login.spec.ts","","" -"","1094","Пароли не совпадают","webkit","Mon Jun 16 17:35:09 MSK 2025","passed","Mon Jun 16 17:35:10 MSK 2025","Негативные сценарии восстановления пароля","ui/recovery/recover-negative.spec.ts","","" -"","1539","Некорректный новый пароль","chromium","Mon Jun 16 17:34:52 MSK 2025","passed","Mon Jun 16 17:34:53 MSK 2025","Негативные сценарии восстановления пароля","ui/recovery/recover-negative.spec.ts","","" -"","3048","has title","chromium","Mon Jun 16 17:34:47 MSK 2025","passed","Mon Jun 16 17:34:50 MSK 2025","","example.spec.ts","","" -"","1655","Некорректный новый пароль","firefox","Mon Jun 16 17:35:01 MSK 2025","passed","Mon Jun 16 17:35:03 MSK 2025","Негативные сценарии восстановления пароля","ui/recovery/recover-negative.spec.ts","","" -"","1808","Несуществующий email","firefox","Mon Jun 16 17:34:58 MSK 2025","passed","Mon Jun 16 17:35:00 MSK 2025","Негативные сценарии авторизации","ui/login/login.negative.spec.ts","","" -"","1050","Регистр в email (User@test.com ≠ user@test.com)","chromium","Mon Jun 16 17:34:51 MSK 2025","passed","Mon Jun 16 17:34:52 MSK 2025","Негативные сценарии авторизации","ui/login/login.negative.spec.ts","","" -"","1683","Пароли не совпадают","firefox","Mon Jun 16 17:35:02 MSK 2025","passed","Mon Jun 16 17:35:04 MSK 2025","Негативные сценарии восстановления пароля","ui/recovery/recover-negative.spec.ts","","" -"","965","Переход по ссылке ""Зарегистрируйтесь""","webkit","Mon Jun 16 17:35:06 MSK 2025","passed","Mon Jun 16 17:35:07 MSK 2025","Переходы по ссылкам в разделе авторизации","ui/login/login.link.spec.ts","","" -"","1037","Несуществующий email","webkit","Mon Jun 16 17:35:06 MSK 2025","passed","Mon Jun 16 17:35:07 MSK 2025","Негативные сценарии авторизации","ui/login/login.negative.spec.ts","","" -"","1380","Несуществующий email","chromium","Mon Jun 16 17:34:49 MSK 2025","passed","Mon Jun 16 17:34:50 MSK 2025","Негативные сценарии авторизации","ui/login/login.negative.spec.ts","","" -"","1012","Некорректный email (формат)","firefox","Mon Jun 16 17:35:01 MSK 2025","passed","Mon Jun 16 17:35:02 MSK 2025","Негативные сценарии восстановления пароля","ui/recovery/recover-negative.spec.ts","","" -"","1391","Некорректный новый пароль","webkit","Mon Jun 16 17:35:09 MSK 2025","passed","Mon Jun 16 17:35:10 MSK 2025","Негативные сценарии восстановления пароля","ui/recovery/recover-negative.spec.ts","","" -"","1251","Оба поля пустые","webkit","Mon Jun 16 17:35:06 MSK 2025","passed","Mon Jun 16 17:35:07 MSK 2025","Негативные сценарии авторизации","ui/login/login.negative.spec.ts","","" -"","2459","Переход по ссылке ""Зарегистрируйтесь""","firefox","Mon Jun 16 17:34:54 MSK 2025","passed","Mon Jun 16 17:34:57 MSK 2025","Переходы по ссылкам в разделе авторизации","ui/login/login.link.spec.ts","","" -"","1023","Переход по ссылке ""Забыли пароль?""","webkit","Mon Jun 16 17:35:05 MSK 2025","passed","Mon Jun 16 17:35:06 MSK 2025","Переходы по ссылкам в разделе авторизации","ui/login/login.link.spec.ts","","" -"","1186","Несуществующий email","firefox","Mon Jun 16 17:35:01 MSK 2025","passed","Mon Jun 16 17:35:02 MSK 2025","Негативные сценарии восстановления пароля","ui/recovery/recover-negative.spec.ts","","" -"","1238","Неверный код подтверждения","chromium","Mon Jun 16 17:34:52 MSK 2025","passed","Mon Jun 16 17:34:53 MSK 2025","Негативные сценарии восстановления пароля","ui/recovery/recover-negative.spec.ts","","" -"","1014","Переключатель видимости пароля показывает и скрывает ввод","chromium","Mon Jun 16 17:34:51 MSK 2025","passed","Mon Jun 16 17:34:52 MSK 2025","UI сценарии авторизации","ui/login/login.ui.spec.ts","","" -"","1115","Переключатель видимости пароля показывает и скрывает ввод","firefox","Mon Jun 16 17:35:00 MSK 2025","passed","Mon Jun 16 17:35:01 MSK 2025","UI сценарии авторизации","ui/login/login.ui.spec.ts","","" -"","2140","has title","firefox","Mon Jun 16 17:34:54 MSK 2025","passed","Mon Jun 16 17:34:56 MSK 2025","","example.spec.ts","","" +"","2238","Успешная регистрация нового пользователя","chromium","Wed Jun 18 16:32:57 MSK 2025","passed","Wed Jun 18 16:32:59 MSK 2025","Позитивные сценарии регистрации","ui/registration/register.spec.ts","","" +"","1557","Несуществующий email","webkit","Wed Jun 18 16:33:38 MSK 2025","passed","Wed Jun 18 16:33:40 MSK 2025","Негативные сценарии авторизации","ui/login/login.negative.spec.ts","","" +"","2158","Переключатель видимости пароля показывает и скрывает ввод","chromium","Wed Jun 18 16:32:34 MSK 2025","passed","Wed Jun 18 16:32:36 MSK 2025","UI сценарии авторизации","ui/login/login.ui.spec.ts","","" +"","5626","Несуществующий email","firefox","Wed Jun 18 16:33:18 MSK 2025","passed","Wed Jun 18 16:33:24 MSK 2025","Негативные сценарии восстановления пароля","ui/recovery/recover-negative.spec.ts","","" +"","8207","Некорректное имя и фамилия (слишком длинные)","chromium","Wed Jun 18 16:32:49 MSK 2025","passed","Wed Jun 18 16:32:57 MSK 2025","Негативные сценарии регистрации","ui/registration/register.negative.spec.ts","","" +"","2222","Слишком длинное название организации","chromium","Wed Jun 18 16:32:57 MSK 2025","passed","Wed Jun 18 16:32:59 MSK 2025","Негативные сценарии регистрации","ui/registration/register.negative.spec.ts","","" +"","1947","has title","chromium","Wed Jun 18 16:32:19 MSK 2025","passed","Wed Jun 18 16:32:21 MSK 2025","","example.spec.ts","","" +"","2258","Пароли не совпадают","webkit","Wed Jun 18 16:33:49 MSK 2025","passed","Wed Jun 18 16:33:51 MSK 2025","Негативные сценарии восстановления пароля","ui/recovery/recover-negative.spec.ts","","" +"","3360","Успешная регистрация нового пользователя","webkit","Wed Jun 18 16:33:53 MSK 2025","passed","Wed Jun 18 16:33:56 MSK 2025","Позитивные сценарии регистрации","ui/registration/register.spec.ts","","" +"","1931","Неверный пароль","webkit","Wed Jun 18 16:33:38 MSK 2025","passed","Wed Jun 18 16:33:40 MSK 2025","Негативные сценарии авторизации","ui/login/login.negative.spec.ts","","" +"","1646","Переключатель видимости пароля показывает и скрывает ввод","webkit","Wed Jun 18 16:33:45 MSK 2025","passed","Wed Jun 18 16:33:47 MSK 2025","UI сценарии авторизации","ui/login/login.ui.spec.ts","","" +"","9631","Слишком длинное название организации","firefox","Wed Jun 18 16:33:31 MSK 2025","passed","Wed Jun 18 16:33:40 MSK 2025","Негативные сценарии регистрации","ui/registration/register.negative.spec.ts","","" +"","3220","get started link","firefox","Wed Jun 18 16:33:00 MSK 2025","passed","Wed Jun 18 16:33:03 MSK 2025","","example.spec.ts","","" +"","3735","Регистр в email (User@test.com ≠ user@test.com)","webkit","Wed Jun 18 16:33:41 MSK 2025","passed","Wed Jun 18 16:33:45 MSK 2025","Негативные сценарии авторизации","ui/login/login.negative.spec.ts","","" +"","7335","Слишком длинная должность","chromium","Wed Jun 18 16:32:50 MSK 2025","passed","Wed Jun 18 16:32:57 MSK 2025","Негативные сценарии регистрации","ui/registration/register.negative.spec.ts","","" +"","9836","Переход по ссылке ""Зарегистрируйтесь""","firefox","Wed Jun 18 16:33:00 MSK 2025","passed","Wed Jun 18 16:33:10 MSK 2025","Переходы по ссылкам в разделе авторизации","ui/login/login.link.spec.ts","","" +"","1584","Переход по ссылке ""Зарегистрируйтесь""","webkit","Wed Jun 18 16:33:36 MSK 2025","passed","Wed Jun 18 16:33:38 MSK 2025","Переходы по ссылкам в разделе авторизации","ui/login/login.link.spec.ts","","" +"","2188","Некорректный email (формат)","chromium","Wed Jun 18 16:32:34 MSK 2025","passed","Wed Jun 18 16:32:36 MSK 2025","Негативные сценарии восстановления пароля","ui/recovery/recover-negative.spec.ts","","" +"","1725","Пустое поле ""Повторите пароль""","chromium","Wed Jun 18 16:32:42 MSK 2025","passed","Wed Jun 18 16:32:44 MSK 2025","Негативные сценарии восстановления пароля","ui/recovery/recover-negative.spec.ts","","" +"","6396","Некорректный email формат","firefox","Wed Jun 18 16:33:24 MSK 2025","passed","Wed Jun 18 16:33:31 MSK 2025","Негативные сценарии регистрации","ui/registration/register.negative.spec.ts","","" +"","10712","Только email без пароля","chromium","Wed Jun 18 16:32:23 MSK 2025","passed","Wed Jun 18 16:32:34 MSK 2025","Негативные сценарии авторизации","ui/login/login.negative.spec.ts","","" +"","2131","Переход по ссылке ""Зарегистрируйтесь""","chromium","Wed Jun 18 16:32:19 MSK 2025","passed","Wed Jun 18 16:32:21 MSK 2025","Переходы по ссылкам в разделе авторизации","ui/login/login.link.spec.ts","","" +"","2525","Неверный код подтверждения","firefox","Wed Jun 18 16:33:19 MSK 2025","passed","Wed Jun 18 16:33:21 MSK 2025","Негативные сценарии восстановления пароля","ui/recovery/recover-negative.spec.ts","","" +"","7834","Отправка пустой формы","firefox","Wed Jun 18 16:33:23 MSK 2025","passed","Wed Jun 18 16:33:31 MSK 2025","Негативные сценарии регистрации","ui/registration/register.negative.spec.ts","","" +"","5544","Оба поля пустые","webkit","Wed Jun 18 16:33:40 MSK 2025","passed","Wed Jun 18 16:33:45 MSK 2025","Негативные сценарии авторизации","ui/login/login.negative.spec.ts","","" +"","1754","Пользователь успешно восстанавливает пароль","webkit","Wed Jun 18 16:33:49 MSK 2025","passed","Wed Jun 18 16:33:51 MSK 2025","Восстановление пароля — позитивные сценарии","ui/recovery/recover-password.spec.ts","","" +"","1809","Пользователь должен успешно залогиниться с валидными данными","webkit","Wed Jun 18 16:33:45 MSK 2025","passed","Wed Jun 18 16:33:47 MSK 2025","Авторизация пользователя","ui/login/login.spec.ts","","" +"","10457","Некорректный формат email","chromium","Wed Jun 18 16:32:23 MSK 2025","passed","Wed Jun 18 16:32:34 MSK 2025","Негативные сценарии авторизации","ui/login/login.negative.spec.ts","","" +"","6886","Пользователь должен успешно залогиниться с валидными данными","firefox","Wed Jun 18 16:33:12 MSK 2025","passed","Wed Jun 18 16:33:19 MSK 2025","Авторизация пользователя","ui/login/login.spec.ts","","" +"","1884","Некорректное имя и фамилия (слишком длинные)","webkit","Wed Jun 18 16:33:51 MSK 2025","passed","Wed Jun 18 16:33:53 MSK 2025","Негативные сценарии регистрации","ui/registration/register.negative.spec.ts","","" +"","1968","Оба поля пустые","chromium","Wed Jun 18 16:32:22 MSK 2025","passed","Wed Jun 18 16:32:23 MSK 2025","Негативные сценарии авторизации","ui/login/login.negative.spec.ts","","" +"","1953","Несуществующий email","chromium","Wed Jun 18 16:32:22 MSK 2025","passed","Wed Jun 18 16:32:23 MSK 2025","Негативные сценарии авторизации","ui/login/login.negative.spec.ts","","" +"","1694","Некорректный email формат","webkit","Wed Jun 18 16:33:51 MSK 2025","passed","Wed Jun 18 16:33:53 MSK 2025","Негативные сценарии регистрации","ui/registration/register.negative.spec.ts","","" +"","2322","Несуществующий email","webkit","Wed Jun 18 16:33:47 MSK 2025","passed","Wed Jun 18 16:33:49 MSK 2025","Негативные сценарии восстановления пароля","ui/recovery/recover-negative.spec.ts","","" +"","4281","has title","firefox","Wed Jun 18 16:32:58 MSK 2025","passed","Wed Jun 18 16:33:02 MSK 2025","","example.spec.ts","","" +"","5968","Отправка пустой формы","chromium","Wed Jun 18 16:32:44 MSK 2025","passed","Wed Jun 18 16:32:50 MSK 2025","Негативные сценарии регистрации","ui/registration/register.negative.spec.ts","","" +"","6460","Оба поля пустые","firefox","Wed Jun 18 16:33:05 MSK 2025","passed","Wed Jun 18 16:33:12 MSK 2025","Негативные сценарии авторизации","ui/login/login.negative.spec.ts","","" +"","5267","Некорректный формат email","webkit","Wed Jun 18 16:33:41 MSK 2025","passed","Wed Jun 18 16:33:46 MSK 2025","Негативные сценарии авторизации","ui/login/login.negative.spec.ts","","" +"","2317","Некорректный email (формат)","firefox","Wed Jun 18 16:33:18 MSK 2025","passed","Wed Jun 18 16:33:20 MSK 2025","Негативные сценарии восстановления пароля","ui/recovery/recover-negative.spec.ts","","" +"","6541","Пользователь успешно восстанавливает пароль","chromium","Wed Jun 18 16:32:42 MSK 2025","passed","Wed Jun 18 16:32:49 MSK 2025","Восстановление пароля — позитивные сценарии","ui/recovery/recover-password.spec.ts","","" +"","6807","Только email без пароля","firefox","Wed Jun 18 16:33:11 MSK 2025","passed","Wed Jun 18 16:33:17 MSK 2025","Негативные сценарии авторизации","ui/login/login.negative.spec.ts","","" +"","2414","Неверный код подтверждения","webkit","Wed Jun 18 16:33:47 MSK 2025","passed","Wed Jun 18 16:33:49 MSK 2025","Негативные сценарии восстановления пароля","ui/recovery/recover-negative.spec.ts","","" +"","4202","Переход по ссылке ""Забыли пароль?""","firefox","Wed Jun 18 16:33:00 MSK 2025","passed","Wed Jun 18 16:33:04 MSK 2025","Переходы по ссылкам в разделе авторизации","ui/login/login.link.spec.ts","","" +"","2274","Слишком длинное название организации","webkit","Wed Jun 18 16:33:52 MSK 2025","passed","Wed Jun 18 16:33:54 MSK 2025","Негативные сценарии регистрации","ui/registration/register.negative.spec.ts","","" +"","1916","Переключатель видимости пароля показывает и скрывает ввод","firefox","Wed Jun 18 16:33:17 MSK 2025","passed","Wed Jun 18 16:33:19 MSK 2025","UI сценарии авторизации","ui/login/login.ui.spec.ts","","" +"","1826","Пользователь должен успешно залогиниться с валидными данными","chromium","Wed Jun 18 16:32:34 MSK 2025","passed","Wed Jun 18 16:32:36 MSK 2025","Авторизация пользователя","ui/login/login.spec.ts","","" +"","8208","Некорректный email формат","chromium","Wed Jun 18 16:32:49 MSK 2025","passed","Wed Jun 18 16:32:57 MSK 2025","Негативные сценарии регистрации","ui/registration/register.negative.spec.ts","","" +"","7994","Пользователь успешно восстанавливает пароль","firefox","Wed Jun 18 16:33:22 MSK 2025","passed","Wed Jun 18 16:33:30 MSK 2025","Восстановление пароля — позитивные сценарии","ui/recovery/recover-password.spec.ts","","" +"","3125","Некорректный email (формат)","webkit","Wed Jun 18 16:33:45 MSK 2025","passed","Wed Jun 18 16:33:48 MSK 2025","Негативные сценарии восстановления пароля","ui/recovery/recover-negative.spec.ts","","" +"","2859","has title","webkit","Wed Jun 18 16:33:32 MSK 2025","passed","Wed Jun 18 16:33:35 MSK 2025","","example.spec.ts","","" +"","6128","Неверный код подтверждения","chromium","Wed Jun 18 16:32:36 MSK 2025","passed","Wed Jun 18 16:32:42 MSK 2025","Негативные сценарии восстановления пароля","ui/recovery/recover-negative.spec.ts","","" +"","6627","Пароли не совпадают","chromium","Wed Jun 18 16:32:42 MSK 2025","passed","Wed Jun 18 16:32:49 MSK 2025","Негативные сценарии восстановления пароля","ui/recovery/recover-negative.spec.ts","","" +"","3768","Пустое поле ""Повторите пароль""","webkit","Wed Jun 18 16:33:48 MSK 2025","passed","Wed Jun 18 16:33:52 MSK 2025","Негативные сценарии восстановления пароля","ui/recovery/recover-negative.spec.ts","","" +"","2349","Некорректный новый пароль","firefox","Wed Jun 18 16:33:19 MSK 2025","passed","Wed Jun 18 16:33:22 MSK 2025","Негативные сценарии восстановления пароля","ui/recovery/recover-negative.spec.ts","","" +"","2554","Переход по ссылке ""Забыли пароль?""","webkit","Wed Jun 18 16:33:35 MSK 2025","passed","Wed Jun 18 16:33:38 MSK 2025","Переходы по ссылкам в разделе авторизации","ui/login/login.link.spec.ts","","" +"","3118","Пустое поле ""Повторите пароль""","firefox","Wed Jun 18 16:33:20 MSK 2025","passed","Wed Jun 18 16:33:23 MSK 2025","Негативные сценарии восстановления пароля","ui/recovery/recover-negative.spec.ts","","" +"","6583","Несуществующий email","chromium","Wed Jun 18 16:32:36 MSK 2025","passed","Wed Jun 18 16:32:42 MSK 2025","Негативные сценарии восстановления пароля","ui/recovery/recover-negative.spec.ts","","" +"","1867","Слишком длинная должность","webkit","Wed Jun 18 16:33:51 MSK 2025","passed","Wed Jun 18 16:33:53 MSK 2025","Негативные сценарии регистрации","ui/registration/register.negative.spec.ts","","" +"","7170","Некорректный формат email","firefox","Wed Jun 18 16:33:11 MSK 2025","passed","Wed Jun 18 16:33:18 MSK 2025","Негативные сценарии авторизации","ui/login/login.negative.spec.ts","","" +"","3154","get started link","webkit","Wed Jun 18 16:33:33 MSK 2025","passed","Wed Jun 18 16:33:36 MSK 2025","","example.spec.ts","","" +"","6592","Регистр в email (User@test.com ≠ user@test.com)","firefox","Wed Jun 18 16:33:11 MSK 2025","passed","Wed Jun 18 16:33:18 MSK 2025","Негативные сценарии авторизации","ui/login/login.negative.spec.ts","","" +"","2432","Слишком длинная должность","firefox","Wed Jun 18 16:33:30 MSK 2025","passed","Wed Jun 18 16:33:32 MSK 2025","Негативные сценарии регистрации","ui/registration/register.negative.spec.ts","","" +"","2021","Некорректный новый пароль","webkit","Wed Jun 18 16:33:47 MSK 2025","passed","Wed Jun 18 16:33:49 MSK 2025","Негативные сценарии восстановления пароля","ui/recovery/recover-negative.spec.ts","","" +"","5816","Некорректный новый пароль","chromium","Wed Jun 18 16:32:36 MSK 2025","passed","Wed Jun 18 16:32:42 MSK 2025","Негативные сценарии восстановления пароля","ui/recovery/recover-negative.spec.ts","","" +"","1783","Отправка пустой формы","webkit","Wed Jun 18 16:33:49 MSK 2025","passed","Wed Jun 18 16:33:51 MSK 2025","Негативные сценарии регистрации","ui/registration/register.negative.spec.ts","","" +"","7304","Несуществующий email","firefox","Wed Jun 18 16:33:04 MSK 2025","passed","Wed Jun 18 16:33:11 MSK 2025","Негативные сценарии авторизации","ui/login/login.negative.spec.ts","","" +"","7208","Неверный пароль","firefox","Wed Jun 18 16:33:03 MSK 2025","passed","Wed Jun 18 16:33:11 MSK 2025","Негативные сценарии авторизации","ui/login/login.negative.spec.ts","","" +"","10551","Регистр в email (User@test.com ≠ user@test.com)","chromium","Wed Jun 18 16:32:23 MSK 2025","passed","Wed Jun 18 16:32:34 MSK 2025","Негативные сценарии авторизации","ui/login/login.negative.spec.ts","","" +"","39995","get started link","chromium","Wed Jun 18 16:32:19 MSK 2025","broken","Wed Jun 18 16:32:59 MSK 2025","","example.spec.ts","","" +"","3399","Пароли не совпадают","firefox","Wed Jun 18 16:33:21 MSK 2025","passed","Wed Jun 18 16:33:24 MSK 2025","Негативные сценарии восстановления пароля","ui/recovery/recover-negative.spec.ts","","" +"","2130","Переход по ссылке ""Забыли пароль?""","chromium","Wed Jun 18 16:32:19 MSK 2025","passed","Wed Jun 18 16:32:21 MSK 2025","Переходы по ссылкам в разделе авторизации","ui/login/login.link.spec.ts","","" +"","1938","Неверный пароль","chromium","Wed Jun 18 16:32:21 MSK 2025","passed","Wed Jun 18 16:32:23 MSK 2025","Негативные сценарии авторизации","ui/login/login.negative.spec.ts","","" +"","8951","Успешная регистрация нового пользователя","firefox","Wed Jun 18 16:33:31 MSK 2025","passed","Wed Jun 18 16:33:40 MSK 2025","Позитивные сценарии регистрации","ui/registration/register.spec.ts","","" +"","7395","Некорректное имя и фамилия (слишком длинные)","firefox","Wed Jun 18 16:33:24 MSK 2025","passed","Wed Jun 18 16:33:31 MSK 2025","Негативные сценарии регистрации","ui/registration/register.negative.spec.ts","","" +"","5396","Только email без пароля","webkit","Wed Jun 18 16:33:40 MSK 2025","passed","Wed Jun 18 16:33:45 MSK 2025","Негативные сценарии авторизации","ui/login/login.negative.spec.ts","","" diff --git a/allure-report/data/suites.json b/allure-report/data/suites.json index fd8633d..39845d1 100644 --- a/allure-report/data/suites.json +++ b/allure-report/data/suites.json @@ -1 +1 @@ -{"uid":"98d3104e051c652961429bf95fa0b5d6","name":"suites","children":[{"name":"chromium","children":[{"name":"ui/login/login.link.spec.ts","children":[{"name":"Переходы по ссылкам в разделе авторизации","children":[{"name":"Переход по ссылке \"Зарегистрируйтесь\"","uid":"31bb4ab4326f6487","parentUid":"27d6724defa2d6869bd71e13340d5592","status":"passed","time":{"start":1750084487577,"stop":1750084488773,"duration":1196},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Переход по ссылке \"Забыли пароль?\"","uid":"accf5a2fef71e751","parentUid":"27d6724defa2d6869bd71e13340d5592","status":"passed","time":{"start":1750084487578,"stop":1750084490119,"duration":2541},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]}],"uid":"27d6724defa2d6869bd71e13340d5592"}],"uid":"23ca674dda06ae99c3ed88f29bf62c7f"},{"name":"example.spec.ts","children":[{"name":"get started link","uid":"b714c3ef6b1955c5","parentUid":"e4b544034979f0ed71670fbfdd0e6370","status":"passed","time":{"start":1750084487579,"stop":1750084488883,"duration":1304},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"has title","uid":"731f29d77f45de06","parentUid":"e4b544034979f0ed71670fbfdd0e6370","status":"passed","time":{"start":1750084487580,"stop":1750084490628,"duration":3048},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]}],"uid":"e4b544034979f0ed71670fbfdd0e6370"},{"name":"ui/login/login.negative.spec.ts","children":[{"name":"Негативные сценарии авторизации","children":[{"name":"Неверный пароль","uid":"1f34f20dd4a0d9fd","parentUid":"9d415c263d24f36e11ee8450ff7c90d2","status":"passed","time":{"start":1750084489259,"stop":1750084490492,"duration":1233},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Несуществующий email","uid":"f5ffdd03c44055b1","parentUid":"9d415c263d24f36e11ee8450ff7c90d2","status":"passed","time":{"start":1750084489363,"stop":1750084490743,"duration":1380},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Оба поля пустые","uid":"f7a702fb49f5f201","parentUid":"9d415c263d24f36e11ee8450ff7c90d2","status":"passed","time":{"start":1750084490497,"stop":1750084491239,"duration":742},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Только email без пароля","uid":"219f17571c2d2715","parentUid":"9d415c263d24f36e11ee8450ff7c90d2","status":"passed","time":{"start":1750084490528,"stop":1750084491353,"duration":825},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректный формат email","uid":"1aae5dc9a4d21981","parentUid":"9d415c263d24f36e11ee8450ff7c90d2","status":"passed","time":{"start":1750084490746,"stop":1750084491640,"duration":894},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Регистр в email (User@test.com ≠ user@test.com)","uid":"287ea007721245b5","parentUid":"9d415c263d24f36e11ee8450ff7c90d2","status":"passed","time":{"start":1750084491115,"stop":1750084492165,"duration":1050},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":["test.com","test.com)"]}],"uid":"9d415c263d24f36e11ee8450ff7c90d2"}],"uid":"e8519a694148d39c29b6a581b943ce36"},{"name":"ui/login/login.spec.ts","children":[{"name":"Авторизация пользователя","children":[{"name":"Пользователь должен успешно залогиниться с валидными данными","uid":"5c52ce3f42b81329","parentUid":"80a8d5345aa4004c76030a8e7453246e","status":"passed","time":{"start":1750084491243,"stop":1750084492069,"duration":826},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]}],"uid":"80a8d5345aa4004c76030a8e7453246e"}],"uid":"dd896a40db093b0b05c6f3d23b11f180"},{"name":"ui/login/login.ui.spec.ts","children":[{"name":"UI сценарии авторизации","children":[{"name":"Переключатель видимости пароля показывает и скрывает ввод","uid":"c82bf9b727e4250d","parentUid":"6b02da7a62ab0060bbecefd1a4f9ff08","status":"passed","time":{"start":1750084491357,"stop":1750084492371,"duration":1014},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]}],"uid":"6b02da7a62ab0060bbecefd1a4f9ff08"}],"uid":"278146b462a330fbb026a2381af2fff6"},{"name":"ui/recovery/recover-negative.spec.ts","children":[{"name":"Негативные сценарии восстановления пароля","children":[{"name":"Некорректный email (формат)","uid":"701a94631e81e6af","parentUid":"d91b346cbf5155129e2b8ad1f02a978a","status":"passed","time":{"start":1750084491646,"stop":1750084492211,"duration":565},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Несуществующий email","uid":"a1fd8ee0914c6a57","parentUid":"d91b346cbf5155129e2b8ad1f02a978a","status":"passed","time":{"start":1750084492074,"stop":1750084492970,"duration":896},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Неверный код подтверждения","uid":"e3d2684b480ff47b","parentUid":"d91b346cbf5155129e2b8ad1f02a978a","status":"passed","time":{"start":1750084492172,"stop":1750084493410,"duration":1238},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректный новый пароль","uid":"e07c24690f801b74","parentUid":"d91b346cbf5155129e2b8ad1f02a978a","status":"passed","time":{"start":1750084492220,"stop":1750084493759,"duration":1539},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Пустое поле \"Повторите пароль\"","uid":"96736297720c2c0d","parentUid":"d91b346cbf5155129e2b8ad1f02a978a","status":"passed","time":{"start":1750084492375,"stop":1750084493870,"duration":1495},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Пароли не совпадают","uid":"b20bbc8741046798","parentUid":"d91b346cbf5155129e2b8ad1f02a978a","status":"passed","time":{"start":1750084492974,"stop":1750084493874,"duration":900},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]}],"uid":"d91b346cbf5155129e2b8ad1f02a978a"}],"uid":"44e9d8938009322c1fce2b1007193503"},{"name":"ui/recovery/recover-password.spec.ts","children":[{"name":"Восстановление пароля — позитивные сценарии","children":[{"name":"Пользователь успешно восстанавливает пароль","uid":"9c1576c7213cf7a9","parentUid":"5c5d213ab99e5773482566f91167d464","status":"passed","time":{"start":1750084493416,"stop":1750084494507,"duration":1091},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]}],"uid":"5c5d213ab99e5773482566f91167d464"}],"uid":"01ddef53de4fe1affd39059162af3625"}],"uid":"36c900977e1d8b81a2c6893cc82bfc01"},{"name":"firefox","children":[{"name":"example.spec.ts","children":[{"name":"get started link","uid":"e94724f7c9383d0e","parentUid":"5276fbf332ec18e7fab5cc15b1bd3f0c","status":"passed","time":{"start":1750084494460,"stop":1750084496622,"duration":2162},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"has title","uid":"f7bfbf67a45ab3ec","parentUid":"5276fbf332ec18e7fab5cc15b1bd3f0c","status":"passed","time":{"start":1750084494460,"stop":1750084496600,"duration":2140},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]}],"uid":"5276fbf332ec18e7fab5cc15b1bd3f0c"},{"name":"ui/login/login.link.spec.ts","children":[{"name":"Переходы по ссылкам в разделе авторизации","children":[{"name":"Переход по ссылке \"Забыли пароль?\"","uid":"a53cc3de606dc5ae","parentUid":"6b41846b5db37611a93290778ee5ecf4","status":"passed","time":{"start":1750084494465,"stop":1750084496561,"duration":2096},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Переход по ссылке \"Зарегистрируйтесь\"","uid":"34179ea7ef46fc56","parentUid":"6b41846b5db37611a93290778ee5ecf4","status":"passed","time":{"start":1750084494915,"stop":1750084497374,"duration":2459},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]}],"uid":"6b41846b5db37611a93290778ee5ecf4"}],"uid":"23d0bdab666d30e96be5612be73aa33a"},{"name":"ui/login/login.negative.spec.ts","children":[{"name":"Негативные сценарии авторизации","children":[{"name":"Неверный пароль","uid":"88a8af1bf7652c0e","parentUid":"1d65cf6437917f8f42c12613d738d659","status":"passed","time":{"start":1750084497996,"stop":1750084499294,"duration":1298},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Несуществующий email","uid":"f6b2716194c4ce74","parentUid":"1d65cf6437917f8f42c12613d738d659","status":"passed","time":{"start":1750084498297,"stop":1750084500105,"duration":1808},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Оба поля пустые","uid":"f0ec6d6d628046ac","parentUid":"1d65cf6437917f8f42c12613d738d659","status":"passed","time":{"start":1750084498792,"stop":1750084500139,"duration":1347},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Только email без пароля","uid":"589b172d059c0837","parentUid":"1d65cf6437917f8f42c12613d738d659","status":"passed","time":{"start":1750084499301,"stop":1750084500455,"duration":1154},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Некорректный формат email","uid":"749fb76346883a7d","parentUid":"1d65cf6437917f8f42c12613d738d659","status":"passed","time":{"start":1750084499796,"stop":1750084501311,"duration":1515},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Регистр в email (User@test.com ≠ user@test.com)","uid":"98e3f9bd5b0da70e","parentUid":"1d65cf6437917f8f42c12613d738d659","status":"passed","time":{"start":1750084500111,"stop":1750084501485,"duration":1374},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":["test.com","test.com)"]}],"uid":"1d65cf6437917f8f42c12613d738d659"}],"uid":"c65049f950ff3e7a489089d5830f9a02"},{"name":"ui/login/login.spec.ts","children":[{"name":"Авторизация пользователя","children":[{"name":"Пользователь должен успешно залогиниться с валидными данными","uid":"909368716fad6c28","parentUid":"ee5fb47dea78a60f2d3153569e84192e","status":"passed","time":{"start":1750084500146,"stop":1750084501725,"duration":1579},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]}],"uid":"ee5fb47dea78a60f2d3153569e84192e"}],"uid":"ec5dcaf7eb480f95886aea783c396fcb"},{"name":"ui/login/login.ui.spec.ts","children":[{"name":"UI сценарии авторизации","children":[{"name":"Переключатель видимости пароля показывает и скрывает ввод","uid":"3bba1028b851bbbc","parentUid":"2cf1973f5f5ca30aedbdb98f80511011","status":"passed","time":{"start":1750084500466,"stop":1750084501581,"duration":1115},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]}],"uid":"2cf1973f5f5ca30aedbdb98f80511011"}],"uid":"b7ac2a82dbbd60efd32fb3a8887b8427"},{"name":"ui/recovery/recover-negative.spec.ts","children":[{"name":"Негативные сценарии восстановления пароля","children":[{"name":"Некорректный email (формат)","uid":"c7a1902ba1108ba2","parentUid":"4f755b5f1fb47c5a39e51d6496236672","status":"passed","time":{"start":1750084501326,"stop":1750084502338,"duration":1012},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Несуществующий email","uid":"7b807a335cae4963","parentUid":"4f755b5f1fb47c5a39e51d6496236672","status":"passed","time":{"start":1750084501499,"stop":1750084502685,"duration":1186},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Неверный код подтверждения","uid":"1bf14a52b790d91","parentUid":"4f755b5f1fb47c5a39e51d6496236672","status":"passed","time":{"start":1750084501594,"stop":1750084503368,"duration":1774},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Некорректный новый пароль","uid":"8af42ae3367ca0d6","parentUid":"4f755b5f1fb47c5a39e51d6496236672","status":"passed","time":{"start":1750084501747,"stop":1750084503402,"duration":1655},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Пустое поле \"Повторите пароль\"","uid":"2e06dcefaf1e4c31","parentUid":"4f755b5f1fb47c5a39e51d6496236672","status":"passed","time":{"start":1750084502343,"stop":1750084503756,"duration":1413},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Пароли не совпадают","uid":"159330e44b573ebb","parentUid":"4f755b5f1fb47c5a39e51d6496236672","status":"passed","time":{"start":1750084502694,"stop":1750084504377,"duration":1683},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]}],"uid":"4f755b5f1fb47c5a39e51d6496236672"}],"uid":"b85d452eb98bad2f35974342c9992d72"},{"name":"ui/recovery/recover-password.spec.ts","children":[{"name":"Восстановление пароля — позитивные сценарии","children":[{"name":"Пользователь успешно восстанавливает пароль","uid":"922c07477f21c047","parentUid":"dab27c31135055229e235d26c7ae8bdd","status":"passed","time":{"start":1750084503378,"stop":1750084505830,"duration":2452},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]}],"uid":"dab27c31135055229e235d26c7ae8bdd"}],"uid":"6abd84725310def068431e441628d006"}],"uid":"ed39c131db56604842b18253a0c76267"},{"name":"webkit","children":[{"name":"example.spec.ts","children":[{"name":"has title","uid":"13a3c47523dc168e","parentUid":"ab363b6e49b2005a8673ab037f5bece0","status":"passed","time":{"start":1750084504438,"stop":1750084505941,"duration":1503},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"get started link","uid":"995bb2612eda65c","parentUid":"ab363b6e49b2005a8673ab037f5bece0","status":"passed","time":{"start":1750084504688,"stop":1750084506422,"duration":1734},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]}],"uid":"ab363b6e49b2005a8673ab037f5bece0"},{"name":"ui/login/login.link.spec.ts","children":[{"name":"Переходы по ссылкам в разделе авторизации","children":[{"name":"Переход по ссылке \"Забыли пароль?\"","uid":"31dc1d9640018cfc","parentUid":"a1958f90bd5e778e662ec052dad58327","status":"passed","time":{"start":1750084505493,"stop":1750084506516,"duration":1023},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Переход по ссылке \"Зарегистрируйтесь\"","uid":"c9901a9937a7b7a5","parentUid":"a1958f90bd5e778e662ec052dad58327","status":"passed","time":{"start":1750084506996,"stop":1750084507961,"duration":965},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]}],"uid":"a1958f90bd5e778e662ec052dad58327"}],"uid":"068d8b65dbde1e87e80d77361ac9c7f5"},{"name":"ui/login/login.negative.spec.ts","children":[{"name":"Негативные сценарии авторизации","children":[{"name":"Неверный пароль","uid":"d30e1a8a947541fc","parentUid":"29b3fa75782bcbe5ad6fbca11680011d","status":"passed","time":{"start":1750084506454,"stop":1750084507609,"duration":1155},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Несуществующий email","uid":"ce94b9aa72086b4e","parentUid":"29b3fa75782bcbe5ad6fbca11680011d","status":"passed","time":{"start":1750084506686,"stop":1750084507723,"duration":1037},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Оба поля пустые","uid":"a2b4235c46265be0","parentUid":"29b3fa75782bcbe5ad6fbca11680011d","status":"passed","time":{"start":1750084506701,"stop":1750084507952,"duration":1251},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Только email без пароля","uid":"9059b807844ecd29","parentUid":"29b3fa75782bcbe5ad6fbca11680011d","status":"passed","time":{"start":1750084507616,"stop":1750084508347,"duration":731},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Некорректный формат email","uid":"4da4945bee2a6177","parentUid":"29b3fa75782bcbe5ad6fbca11680011d","status":"passed","time":{"start":1750084507730,"stop":1750084508673,"duration":943},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Регистр в email (User@test.com ≠ user@test.com)","uid":"c0406bead53d77ca","parentUid":"29b3fa75782bcbe5ad6fbca11680011d","status":"passed","time":{"start":1750084507958,"stop":1750084508862,"duration":904},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":["test.com","test.com)"]}],"uid":"29b3fa75782bcbe5ad6fbca11680011d"}],"uid":"a991886564180cecc9c42b3d49845bca"},{"name":"ui/login/login.spec.ts","children":[{"name":"Авторизация пользователя","children":[{"name":"Пользователь должен успешно залогиниться с валидными данными","uid":"9e16f68655df37d3","parentUid":"3fd6aa2c22c33f02238b237425e91884","status":"passed","time":{"start":1750084508128,"stop":1750084509091,"duration":963},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]}],"uid":"3fd6aa2c22c33f02238b237425e91884"}],"uid":"7fa760642435f76f5fd8e79f62f517a3"},{"name":"ui/login/login.ui.spec.ts","children":[{"name":"UI сценарии авторизации","children":[{"name":"Переключатель видимости пароля показывает и скрывает ввод","uid":"2f8af4d67d869f1","parentUid":"5c9eb7486dab02fe1464ce0637991d94","status":"passed","time":{"start":1750084508352,"stop":1750084509225,"duration":873},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]}],"uid":"5c9eb7486dab02fe1464ce0637991d94"}],"uid":"d64b458757eb8cc3ec414dff31a527be"},{"name":"ui/recovery/recover-negative.spec.ts","children":[{"name":"Негативные сценарии восстановления пароля","children":[{"name":"Некорректный email (формат)","uid":"e8ebfdb5511bffc3","parentUid":"efea1564d4942797caca5a9e338b3ff2","status":"passed","time":{"start":1750084508679,"stop":1750084509441,"duration":762},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Несуществующий email","uid":"127e2567cd7d94f3","parentUid":"efea1564d4942797caca5a9e338b3ff2","status":"passed","time":{"start":1750084508872,"stop":1750084509760,"duration":888},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Неверный код подтверждения","uid":"703a2301ffdc2da7","parentUid":"efea1564d4942797caca5a9e338b3ff2","status":"passed","time":{"start":1750084509104,"stop":1750084510143,"duration":1039},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Некорректный новый пароль","uid":"a9ee13342854924d","parentUid":"efea1564d4942797caca5a9e338b3ff2","status":"passed","time":{"start":1750084509235,"stop":1750084510626,"duration":1391},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Пустое поле \"Повторите пароль\"","uid":"1f2ff10db5665418","parentUid":"efea1564d4942797caca5a9e338b3ff2","status":"passed","time":{"start":1750084509447,"stop":1750084510516,"duration":1069},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Пароли не совпадают","uid":"9ed8b38ec7c4a34b","parentUid":"efea1564d4942797caca5a9e338b3ff2","status":"passed","time":{"start":1750084509765,"stop":1750084510859,"duration":1094},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]}],"uid":"efea1564d4942797caca5a9e338b3ff2"}],"uid":"9be5280588382f6274d0b5a6c681c055"},{"name":"ui/recovery/recover-password.spec.ts","children":[{"name":"Восстановление пароля — позитивные сценарии","children":[{"name":"Пользователь успешно восстанавливает пароль","uid":"8d0ccd1c875a97cc","parentUid":"2334aea701f97294f2f11996675ecd6f","status":"passed","time":{"start":1750084510151,"stop":1750084511331,"duration":1180},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]}],"uid":"2334aea701f97294f2f11996675ecd6f"}],"uid":"6bb2c123cac8b6c0be282dc2639da417"}],"uid":"44063b3706d66b0d346705a4a77c6704"}]} \ No newline at end of file +{"uid":"98d3104e051c652961429bf95fa0b5d6","name":"suites","children":[{"name":"chromium","children":[{"name":"ui/login/login.link.spec.ts","children":[{"name":"Переходы по ссылкам в разделе авторизации","children":[{"name":"Переход по ссылке \"Зарегистрируйтесь\"","uid":"2b89ce8c9b1ff011","parentUid":"27d6724defa2d6869bd71e13340d5592","status":"passed","time":{"start":1750253539579,"stop":1750253541710,"duration":2131},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Переход по ссылке \"Забыли пароль?\"","uid":"de38ce213e0340ea","parentUid":"27d6724defa2d6869bd71e13340d5592","status":"passed","time":{"start":1750253539582,"stop":1750253541712,"duration":2130},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]}],"uid":"27d6724defa2d6869bd71e13340d5592"}],"uid":"23ca674dda06ae99c3ed88f29bf62c7f"},{"name":"example.spec.ts","children":[{"name":"get started link","uid":"6962b06e4eb06b10","parentUid":"e4b544034979f0ed71670fbfdd0e6370","status":"broken","time":{"start":1750253539580,"stop":1750253579575,"duration":39995},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":true,"parameters":["chromium"],"tags":[]},{"name":"has title","uid":"c7cd56bdce8656af","parentUid":"e4b544034979f0ed71670fbfdd0e6370","status":"passed","time":{"start":1750253539581,"stop":1750253541528,"duration":1947},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]}],"uid":"e4b544034979f0ed71670fbfdd0e6370"},{"name":"ui/login/login.negative.spec.ts","children":[{"name":"Негативные сценарии авторизации","children":[{"name":"Неверный пароль","uid":"b47108b604f86692","parentUid":"9d415c263d24f36e11ee8450ff7c90d2","status":"passed","time":{"start":1750253541844,"stop":1750253543782,"duration":1938},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Несуществующий email","uid":"85493f33f5b82a23","parentUid":"9d415c263d24f36e11ee8450ff7c90d2","status":"passed","time":{"start":1750253542024,"stop":1750253543977,"duration":1953},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Оба поля пустые","uid":"bdfb8cd05c21f618","parentUid":"9d415c263d24f36e11ee8450ff7c90d2","status":"passed","time":{"start":1750253542026,"stop":1750253543994,"duration":1968},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Только email без пароля","uid":"12daddbe908eeb70","parentUid":"9d415c263d24f36e11ee8450ff7c90d2","status":"passed","time":{"start":1750253543785,"stop":1750253554497,"duration":10712},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректный формат email","uid":"b8861ed3561357c1","parentUid":"9d415c263d24f36e11ee8450ff7c90d2","status":"passed","time":{"start":1750253543980,"stop":1750253554437,"duration":10457},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Регистр в email (User@test.com ≠ user@test.com)","uid":"d84d93cab9b2d9bf","parentUid":"9d415c263d24f36e11ee8450ff7c90d2","status":"passed","time":{"start":1750253543998,"stop":1750253554549,"duration":10551},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":["test.com","test.com)"]}],"uid":"9d415c263d24f36e11ee8450ff7c90d2"}],"uid":"e8519a694148d39c29b6a581b943ce36"},{"name":"ui/login/login.spec.ts","children":[{"name":"Авторизация пользователя","children":[{"name":"Пользователь должен успешно залогиниться с валидными данными","uid":"579b024130132991","parentUid":"80a8d5345aa4004c76030a8e7453246e","status":"passed","time":{"start":1750253554444,"stop":1750253556270,"duration":1826},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]}],"uid":"80a8d5345aa4004c76030a8e7453246e"}],"uid":"dd896a40db093b0b05c6f3d23b11f180"},{"name":"ui/login/login.ui.spec.ts","children":[{"name":"UI сценарии авторизации","children":[{"name":"Переключатель видимости пароля показывает и скрывает ввод","uid":"4fd8070ee07c07e1","parentUid":"6b02da7a62ab0060bbecefd1a4f9ff08","status":"passed","time":{"start":1750253554502,"stop":1750253556660,"duration":2158},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]}],"uid":"6b02da7a62ab0060bbecefd1a4f9ff08"}],"uid":"278146b462a330fbb026a2381af2fff6"},{"name":"ui/recovery/recover-negative.spec.ts","children":[{"name":"Негативные сценарии восстановления пароля","children":[{"name":"Некорректный email (формат)","uid":"e5b2a4ada3cdd147","parentUid":"d91b346cbf5155129e2b8ad1f02a978a","status":"passed","time":{"start":1750253554554,"stop":1750253556742,"duration":2188},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Несуществующий email","uid":"edf7ac0b504065f6","parentUid":"d91b346cbf5155129e2b8ad1f02a978a","status":"passed","time":{"start":1750253556276,"stop":1750253562859,"duration":6583},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Неверный код подтверждения","uid":"c1ab22b3f9166450","parentUid":"d91b346cbf5155129e2b8ad1f02a978a","status":"passed","time":{"start":1750253556666,"stop":1750253562794,"duration":6128},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":true,"parameters":["chromium"],"tags":[]},{"name":"Некорректный новый пароль","uid":"c989d1690bcfa46f","parentUid":"d91b346cbf5155129e2b8ad1f02a978a","status":"passed","time":{"start":1750253556746,"stop":1750253562562,"duration":5816},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Пустое поле \"Повторите пароль\"","uid":"1c2b927f6a4c2926","parentUid":"d91b346cbf5155129e2b8ad1f02a978a","status":"passed","time":{"start":1750253562565,"stop":1750253564290,"duration":1725},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Пароли не совпадают","uid":"4eebb1230811a3dd","parentUid":"d91b346cbf5155129e2b8ad1f02a978a","status":"passed","time":{"start":1750253562798,"stop":1750253569425,"duration":6627},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]}],"uid":"d91b346cbf5155129e2b8ad1f02a978a"}],"uid":"44e9d8938009322c1fce2b1007193503"},{"name":"ui/recovery/recover-password.spec.ts","children":[{"name":"Восстановление пароля — позитивные сценарии","children":[{"name":"Пользователь успешно восстанавливает пароль","uid":"348561a89d288bda","parentUid":"5c5d213ab99e5773482566f91167d464","status":"passed","time":{"start":1750253562864,"stop":1750253569405,"duration":6541},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]}],"uid":"5c5d213ab99e5773482566f91167d464"}],"uid":"01ddef53de4fe1affd39059162af3625"},{"name":"ui/registration/register.negative.spec.ts","children":[{"name":"Негативные сценарии регистрации","children":[{"name":"Отправка пустой формы","uid":"ffac43d36c488156","parentUid":"50f98b81f4036c5f5e647894e29a3d06","status":"passed","time":{"start":1750253564295,"stop":1750253570263,"duration":5968},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректное имя и фамилия (слишком длинные)","uid":"d449fe499514742d","parentUid":"50f98b81f4036c5f5e647894e29a3d06","status":"passed","time":{"start":1750253569409,"stop":1750253577616,"duration":8207},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректный email формат","uid":"43316c0a1abf58ba","parentUid":"50f98b81f4036c5f5e647894e29a3d06","status":"passed","time":{"start":1750253569430,"stop":1750253577638,"duration":8208},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Слишком длинная должность","uid":"1aa50af46a2c6c85","parentUid":"50f98b81f4036c5f5e647894e29a3d06","status":"passed","time":{"start":1750253570265,"stop":1750253577600,"duration":7335},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Слишком длинное название организации","uid":"a59360836ecd582e","parentUid":"50f98b81f4036c5f5e647894e29a3d06","status":"passed","time":{"start":1750253577607,"stop":1750253579829,"duration":2222},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":5,"retriesStatusChange":true,"parameters":["chromium"],"tags":[]}],"uid":"50f98b81f4036c5f5e647894e29a3d06"}],"uid":"53f311777d92b6700f975c3c2f5f9152"},{"name":"ui/registration/register.spec.ts","children":[{"name":"Позитивные сценарии регистрации","children":[{"name":"Успешная регистрация нового пользователя","uid":"1ffa1f32ab940059","parentUid":"6d419f94c5ced764894a7263fcb1637d","status":"passed","time":{"start":1750253577624,"stop":1750253579862,"duration":2238},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":10,"retriesStatusChange":true,"parameters":["chromium"],"tags":[]}],"uid":"6d419f94c5ced764894a7263fcb1637d"}],"uid":"ca5859070ed549a0057d1ca5562be9a0"}],"uid":"36c900977e1d8b81a2c6893cc82bfc01"},{"name":"firefox","children":[{"name":"example.spec.ts","children":[{"name":"has title","uid":"9e2f1dea9cfe0b65","parentUid":"5276fbf332ec18e7fab5cc15b1bd3f0c","status":"passed","time":{"start":1750253578127,"stop":1750253582408,"duration":4281},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"get started link","uid":"9dbd22211a852adb","parentUid":"5276fbf332ec18e7fab5cc15b1bd3f0c","status":"passed","time":{"start":1750253580470,"stop":1750253583690,"duration":3220},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]}],"uid":"5276fbf332ec18e7fab5cc15b1bd3f0c"},{"name":"ui/login/login.link.spec.ts","children":[{"name":"Переходы по ссылкам в разделе авторизации","children":[{"name":"Переход по ссылке \"Забыли пароль?\"","uid":"b804adb591f93bce","parentUid":"6b41846b5db37611a93290778ee5ecf4","status":"passed","time":{"start":1750253580476,"stop":1750253584678,"duration":4202},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Переход по ссылке \"Зарегистрируйтесь\"","uid":"f12e99c96967b550","parentUid":"6b41846b5db37611a93290778ee5ecf4","status":"passed","time":{"start":1750253580604,"stop":1750253590440,"duration":9836},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]}],"uid":"6b41846b5db37611a93290778ee5ecf4"}],"uid":"23d0bdab666d30e96be5612be73aa33a"},{"name":"ui/login/login.negative.spec.ts","children":[{"name":"Негативные сценарии авторизации","children":[{"name":"Неверный пароль","uid":"3f0e10c74637e3d3","parentUid":"1d65cf6437917f8f42c12613d738d659","status":"passed","time":{"start":1750253583944,"stop":1750253591152,"duration":7208},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Несуществующий email","uid":"1e1a6ccd54582ad8","parentUid":"1d65cf6437917f8f42c12613d738d659","status":"passed","time":{"start":1750253584291,"stop":1750253591595,"duration":7304},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Оба поля пустые","uid":"de659773fd4e5c6e","parentUid":"1d65cf6437917f8f42c12613d738d659","status":"passed","time":{"start":1750253585670,"stop":1750253592130,"duration":6460},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Только email без пароля","uid":"24d0761a6935af7f","parentUid":"1d65cf6437917f8f42c12613d738d659","status":"passed","time":{"start":1750253591157,"stop":1750253597964,"duration":6807},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Некорректный формат email","uid":"8554552a459385ed","parentUid":"1d65cf6437917f8f42c12613d738d659","status":"passed","time":{"start":1750253591599,"stop":1750253598769,"duration":7170},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Регистр в email (User@test.com ≠ user@test.com)","uid":"8364fab107a5383f","parentUid":"1d65cf6437917f8f42c12613d738d659","status":"passed","time":{"start":1750253591861,"stop":1750253598453,"duration":6592},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":["test.com","test.com)"]}],"uid":"1d65cf6437917f8f42c12613d738d659"}],"uid":"c65049f950ff3e7a489089d5830f9a02"},{"name":"ui/login/login.spec.ts","children":[{"name":"Авторизация пользователя","children":[{"name":"Пользователь должен успешно залогиниться с валидными данными","uid":"5d5913a5fa886b55","parentUid":"ee5fb47dea78a60f2d3153569e84192e","status":"passed","time":{"start":1750253592136,"stop":1750253599022,"duration":6886},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]}],"uid":"ee5fb47dea78a60f2d3153569e84192e"}],"uid":"ec5dcaf7eb480f95886aea783c396fcb"},{"name":"ui/login/login.ui.spec.ts","children":[{"name":"UI сценарии авторизации","children":[{"name":"Переключатель видимости пароля показывает и скрывает ввод","uid":"dd3b057d4871238c","parentUid":"2cf1973f5f5ca30aedbdb98f80511011","status":"passed","time":{"start":1750253597973,"stop":1750253599889,"duration":1916},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]}],"uid":"2cf1973f5f5ca30aedbdb98f80511011"}],"uid":"b7ac2a82dbbd60efd32fb3a8887b8427"},{"name":"ui/recovery/recover-negative.spec.ts","children":[{"name":"Негативные сценарии восстановления пароля","children":[{"name":"Некорректный email (формат)","uid":"2d6e81b71171ace1","parentUid":"4f755b5f1fb47c5a39e51d6496236672","status":"passed","time":{"start":1750253598459,"stop":1750253600776,"duration":2317},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Несуществующий email","uid":"47ca0e41ec1ea8fb","parentUid":"4f755b5f1fb47c5a39e51d6496236672","status":"passed","time":{"start":1750253598775,"stop":1750253604401,"duration":5626},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Неверный код подтверждения","uid":"d202e4c572649d08","parentUid":"4f755b5f1fb47c5a39e51d6496236672","status":"passed","time":{"start":1750253599029,"stop":1750253601554,"duration":2525},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Некорректный новый пароль","uid":"268082d8261ccc76","parentUid":"4f755b5f1fb47c5a39e51d6496236672","status":"passed","time":{"start":1750253599892,"stop":1750253602241,"duration":2349},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Пустое поле \"Повторите пароль\"","uid":"c5a5985d074991f8","parentUid":"4f755b5f1fb47c5a39e51d6496236672","status":"passed","time":{"start":1750253600779,"stop":1750253603897,"duration":3118},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Пароли не совпадают","uid":"94f1b1ff67f3d4b2","parentUid":"4f755b5f1fb47c5a39e51d6496236672","status":"passed","time":{"start":1750253601557,"stop":1750253604956,"duration":3399},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]}],"uid":"4f755b5f1fb47c5a39e51d6496236672"}],"uid":"b85d452eb98bad2f35974342c9992d72"},{"name":"ui/recovery/recover-password.spec.ts","children":[{"name":"Восстановление пароля — позитивные сценарии","children":[{"name":"Пользователь успешно восстанавливает пароль","uid":"bdebd619900bc3fe","parentUid":"dab27c31135055229e235d26c7ae8bdd","status":"passed","time":{"start":1750253602246,"stop":1750253610240,"duration":7994},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]}],"uid":"dab27c31135055229e235d26c7ae8bdd"}],"uid":"6abd84725310def068431e441628d006"},{"name":"ui/registration/register.negative.spec.ts","children":[{"name":"Негативные сценарии регистрации","children":[{"name":"Отправка пустой формы","uid":"ef734132e3fbac4f","parentUid":"421c7a7a6d6571123155caf47b41da01","status":"passed","time":{"start":1750253603906,"stop":1750253611740,"duration":7834},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Некорректное имя и фамилия (слишком длинные)","uid":"f32fd3da60726a1e","parentUid":"421c7a7a6d6571123155caf47b41da01","status":"passed","time":{"start":1750253604406,"stop":1750253611801,"duration":7395},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Некорректный email формат","uid":"25c5b161e06d93d9","parentUid":"421c7a7a6d6571123155caf47b41da01","status":"passed","time":{"start":1750253604966,"stop":1750253611362,"duration":6396},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":true,"parameters":["firefox"],"tags":[]},{"name":"Слишком длинная должность","uid":"b6cf932c7feaf975","parentUid":"421c7a7a6d6571123155caf47b41da01","status":"passed","time":{"start":1750253610248,"stop":1750253612680,"duration":2432},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Слишком длинное название организации","uid":"d6ec22530a71c4d6","parentUid":"421c7a7a6d6571123155caf47b41da01","status":"passed","time":{"start":1750253611365,"stop":1750253620996,"duration":9631},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]}],"uid":"421c7a7a6d6571123155caf47b41da01"}],"uid":"47838d9bfc231ba85c89ae755d1ee465"},{"name":"ui/registration/register.spec.ts","children":[{"name":"Позитивные сценарии регистрации","children":[{"name":"Успешная регистрация нового пользователя","uid":"7bd365bab41d410d","parentUid":"87442bca946b302e262a6cd563510922","status":"passed","time":{"start":1750253611748,"stop":1750253620699,"duration":8951},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]}],"uid":"87442bca946b302e262a6cd563510922"}],"uid":"fba274d7062c62f2c143f48e1f57ba1f"}],"uid":"ed39c131db56604842b18253a0c76267"},{"name":"webkit","children":[{"name":"example.spec.ts","children":[{"name":"has title","uid":"bde11e0db442031c","parentUid":"ab363b6e49b2005a8673ab037f5bece0","status":"passed","time":{"start":1750253612661,"stop":1750253615520,"duration":2859},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"get started link","uid":"7be5c1dfc4d42552","parentUid":"ab363b6e49b2005a8673ab037f5bece0","status":"passed","time":{"start":1750253613514,"stop":1750253616668,"duration":3154},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]}],"uid":"ab363b6e49b2005a8673ab037f5bece0"},{"name":"ui/login/login.link.spec.ts","children":[{"name":"Переходы по ссылкам в разделе авторизации","children":[{"name":"Переход по ссылке \"Забыли пароль?\"","uid":"969ce7fb67ee94cb","parentUid":"a1958f90bd5e778e662ec052dad58327","status":"passed","time":{"start":1750253615927,"stop":1750253618481,"duration":2554},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Переход по ссылке \"Зарегистрируйтесь\"","uid":"ddb409ab42c11aa9","parentUid":"a1958f90bd5e778e662ec052dad58327","status":"passed","time":{"start":1750253616847,"stop":1750253618431,"duration":1584},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]}],"uid":"a1958f90bd5e778e662ec052dad58327"}],"uid":"068d8b65dbde1e87e80d77361ac9c7f5"},{"name":"ui/login/login.negative.spec.ts","children":[{"name":"Негативные сценарии авторизации","children":[{"name":"Неверный пароль","uid":"d99021bc0bd45ce9","parentUid":"29b3fa75782bcbe5ad6fbca11680011d","status":"passed","time":{"start":1750253618438,"stop":1750253620369,"duration":1931},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Несуществующий email","uid":"716b6c73ce6c62ba","parentUid":"29b3fa75782bcbe5ad6fbca11680011d","status":"passed","time":{"start":1750253618487,"stop":1750253620044,"duration":1557},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Оба поля пустые","uid":"41ad93595349c29","parentUid":"29b3fa75782bcbe5ad6fbca11680011d","status":"passed","time":{"start":1750253620048,"stop":1750253625592,"duration":5544},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Только email без пароля","uid":"74ce0bc363de24e3","parentUid":"29b3fa75782bcbe5ad6fbca11680011d","status":"passed","time":{"start":1750253620373,"stop":1750253625769,"duration":5396},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Некорректный формат email","uid":"d8233d7d84131656","parentUid":"29b3fa75782bcbe5ad6fbca11680011d","status":"passed","time":{"start":1750253621559,"stop":1750253626826,"duration":5267},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Регистр в email (User@test.com ≠ user@test.com)","uid":"a64dad12f676d820","parentUid":"29b3fa75782bcbe5ad6fbca11680011d","status":"passed","time":{"start":1750253621861,"stop":1750253625596,"duration":3735},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":["test.com","test.com)"]}],"uid":"29b3fa75782bcbe5ad6fbca11680011d"}],"uid":"a991886564180cecc9c42b3d49845bca"},{"name":"ui/login/login.spec.ts","children":[{"name":"Авторизация пользователя","children":[{"name":"Пользователь должен успешно залогиниться с валидными данными","uid":"8ab573c35bfcbb5a","parentUid":"3fd6aa2c22c33f02238b237425e91884","status":"passed","time":{"start":1750253625598,"stop":1750253627407,"duration":1809},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]}],"uid":"3fd6aa2c22c33f02238b237425e91884"}],"uid":"7fa760642435f76f5fd8e79f62f517a3"},{"name":"ui/login/login.ui.spec.ts","children":[{"name":"UI сценарии авторизации","children":[{"name":"Переключатель видимости пароля показывает и скрывает ввод","uid":"3d110a427012de38","parentUid":"5c9eb7486dab02fe1464ce0637991d94","status":"passed","time":{"start":1750253625771,"stop":1750253627417,"duration":1646},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]}],"uid":"5c9eb7486dab02fe1464ce0637991d94"}],"uid":"d64b458757eb8cc3ec414dff31a527be"},{"name":"ui/recovery/recover-negative.spec.ts","children":[{"name":"Негативные сценарии восстановления пароля","children":[{"name":"Некорректный email (формат)","uid":"f858e1d3e4667ccb","parentUid":"efea1564d4942797caca5a9e338b3ff2","status":"passed","time":{"start":1750253625776,"stop":1750253628901,"duration":3125},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Несуществующий email","uid":"2981b57719f478ef","parentUid":"efea1564d4942797caca5a9e338b3ff2","status":"passed","time":{"start":1750253627038,"stop":1750253629360,"duration":2322},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Неверный код подтверждения","uid":"a90b7beaa711f52d","parentUid":"efea1564d4942797caca5a9e338b3ff2","status":"passed","time":{"start":1750253627415,"stop":1750253629829,"duration":2414},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Некорректный новый пароль","uid":"8ff2d3069826e842","parentUid":"efea1564d4942797caca5a9e338b3ff2","status":"passed","time":{"start":1750253627424,"stop":1750253629445,"duration":2021},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Пустое поле \"Повторите пароль\"","uid":"7c195f45eccd77f0","parentUid":"efea1564d4942797caca5a9e338b3ff2","status":"passed","time":{"start":1750253628906,"stop":1750253632674,"duration":3768},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Пароли не совпадают","uid":"5d12a7641d21519b","parentUid":"efea1564d4942797caca5a9e338b3ff2","status":"passed","time":{"start":1750253629369,"stop":1750253631627,"duration":2258},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]}],"uid":"efea1564d4942797caca5a9e338b3ff2"}],"uid":"9be5280588382f6274d0b5a6c681c055"},{"name":"ui/recovery/recover-password.spec.ts","children":[{"name":"Восстановление пароля — позитивные сценарии","children":[{"name":"Пользователь успешно восстанавливает пароль","uid":"3ffdae9c16b02a46","parentUid":"2334aea701f97294f2f11996675ecd6f","status":"passed","time":{"start":1750253629450,"stop":1750253631204,"duration":1754},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]}],"uid":"2334aea701f97294f2f11996675ecd6f"}],"uid":"6bb2c123cac8b6c0be282dc2639da417"},{"name":"ui/registration/register.negative.spec.ts","children":[{"name":"Негативные сценарии регистрации","children":[{"name":"Отправка пустой формы","uid":"311909f1f9bb172e","parentUid":"575ce0dadcf4beed772aa52670b7cd96","status":"passed","time":{"start":1750253629833,"stop":1750253631616,"duration":1783},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Некорректное имя и фамилия (слишком длинные)","uid":"8b6e30a20f47471a","parentUid":"575ce0dadcf4beed772aa52670b7cd96","status":"passed","time":{"start":1750253631208,"stop":1750253633092,"duration":1884},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Некорректный email формат","uid":"459b4b10daa488e2","parentUid":"575ce0dadcf4beed772aa52670b7cd96","status":"passed","time":{"start":1750253631623,"stop":1750253633317,"duration":1694},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Слишком длинная должность","uid":"bfaa389e6b880a54","parentUid":"575ce0dadcf4beed772aa52670b7cd96","status":"passed","time":{"start":1750253631638,"stop":1750253633505,"duration":1867},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Слишком длинное название организации","uid":"1a3b3ab485523c37","parentUid":"575ce0dadcf4beed772aa52670b7cd96","status":"passed","time":{"start":1750253632679,"stop":1750253634953,"duration":2274},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]}],"uid":"575ce0dadcf4beed772aa52670b7cd96"}],"uid":"5dfba6ae7aa4aae4fb8559bd6a4a970b"},{"name":"ui/registration/register.spec.ts","children":[{"name":"Позитивные сценарии регистрации","children":[{"name":"Успешная регистрация нового пользователя","uid":"161e58a3f3c0816d","parentUid":"e5b5acb2297d931b527a102de2dc0379","status":"passed","time":{"start":1750253633097,"stop":1750253636457,"duration":3360},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]}],"uid":"e5b5acb2297d931b527a102de2dc0379"}],"uid":"7421ef0e24d78c37e091ec56740e471d"}],"uid":"44063b3706d66b0d346705a4a77c6704"}]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f30f5da0d9b0eada.json b/allure-report/data/test-cases/1189050f6717ad27.json similarity index 96% rename from allure-report/data/test-cases/f30f5da0d9b0eada.json rename to allure-report/data/test-cases/1189050f6717ad27.json index fec4d9b..651a217 100644 --- a/allure-report/data/test-cases/f30f5da0d9b0eada.json +++ b/allure-report/data/test-cases/1189050f6717ad27.json @@ -1 +1 @@ -{"uid":"f30f5da0d9b0eada","name":"Только email без пароля","fullName":"ui/login/login.negative.spec.ts:37:7","historyId":"8c67bb2f4fb916157fb6191bbb5e4267:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750075564160,"stop":1750075565015,"duration":855},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075564160,"stop":1750075564275,"duration":115},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075564161,"stop":1750075564164,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075564161,"stop":1750075564163,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075564164,"stop":1750075564275,"duration":111},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075564164,"stop":1750075564275,"duration":111},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075564276,"stop":1750075564823,"duration":547},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075564825,"stop":1750075564915,"duration":90},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750075564916,"stop":1750075564925,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750075564926,"stop":1750075565009,"duration":83},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075565009,"stop":1750075565013,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075565013,"stop":1750075565016,"duration":3},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075565013,"stop":1750075565013,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075565013,"stop":1750075565013,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-1"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"f30f5da0d9b0eada.json","parameterValues":["webkit"]} \ No newline at end of file +{"uid":"1189050f6717ad27","name":"Только email без пароля","fullName":"ui/login/login.negative.spec.ts:37:7","historyId":"8c67bb2f4fb916157fb6191bbb5e4267:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750075564160,"stop":1750075565015,"duration":855},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075564160,"stop":1750075564275,"duration":115},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075564161,"stop":1750075564164,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075564161,"stop":1750075564163,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075564164,"stop":1750075564275,"duration":111},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075564164,"stop":1750075564275,"duration":111},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075564276,"stop":1750075564823,"duration":547},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075564825,"stop":1750075564915,"duration":90},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750075564916,"stop":1750075564925,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750075564926,"stop":1750075565009,"duration":83},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075565009,"stop":1750075565013,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075565013,"stop":1750075565016,"duration":3},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075565013,"stop":1750075565013,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075565013,"stop":1750075565013,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-1"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"1189050f6717ad27.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/12daddbe908eeb70.json b/allure-report/data/test-cases/12daddbe908eeb70.json new file mode 100644 index 0000000..8f60c23 --- /dev/null +++ b/allure-report/data/test-cases/12daddbe908eeb70.json @@ -0,0 +1 @@ +{"uid":"12daddbe908eeb70","name":"Только email без пароля","fullName":"ui/login/login.negative.spec.ts:37:7","historyId":"8c67bb2f4fb916157fb6191bbb5e4267:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253543785,"stop":1750253554497,"duration":10712},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253543785,"stop":1750253543833,"duration":48},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253543786,"stop":1750253543788,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253543786,"stop":1750253543787,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253543788,"stop":1750253543833,"duration":45},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253543788,"stop":1750253543833,"duration":45},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750253543834,"stop":1750253549212,"duration":5378},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750253549214,"stop":1750253549237,"duration":23},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750253549238,"stop":1750253549274,"duration":36},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750253549275,"stop":1750253549317,"duration":42},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253549317,"stop":1750253549321,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253549322,"stop":1750253554499,"duration":5177},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253549322,"stop":1750253549322,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253549322,"stop":1750253549322,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"284b1f02e0a74128","status":"passed","time":{"start":1750253478767,"stop":1750253480532,"duration":1765}},{"uid":"4f1aa5b9d024f030","status":"passed","time":{"start":1750252811926,"stop":1750252812980,"duration":1054}},{"uid":"dde43ba131ff753b","status":"passed","time":{"start":1750084490528,"stop":1750084491353,"duration":825}},{"uid":"70f4b065f74f6555","status":"passed","time":{"start":1750075547738,"stop":1750075548931,"duration":1193}}],"categories":[],"tags":[]},"source":"12daddbe908eeb70.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/132f4ab6d9074007.json b/allure-report/data/test-cases/132f4ab6d9074007.json new file mode 100644 index 0000000..20e5ce9 --- /dev/null +++ b/allure-report/data/test-cases/132f4ab6d9074007.json @@ -0,0 +1 @@ +{"uid":"132f4ab6d9074007","name":"has title","fullName":"example.spec.ts:3:5","historyId":"3a2a809b453af4fd564578d1a27f3e45:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253470947,"stop":1750253485298,"duration":14351},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253470940,"stop":1750253471645,"duration":705},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750253470947,"stop":1750253471354,"duration":407},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750253470949,"stop":1750253471353,"duration":404},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253471355,"stop":1750253471400,"duration":45},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253471359,"stop":1750253471377,"duration":18},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253471400,"stop":1750253471645,"duration":245},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253471401,"stop":1750253471645,"duration":244},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(https://playwright.dev/)","time":{"start":1750253471647,"stop":1750253485480,"duration":13833},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveTitle","time":{"start":1750253485482,"stop":1750253485516,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253485516,"stop":1750253485702,"duration":186},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253485517,"stop":1750253485517,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253485517,"stop":1750253485517,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > chromium > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"example.spec.ts"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"132f4ab6d9074007.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/13b252823d104e51.json b/allure-report/data/test-cases/13b252823d104e51.json new file mode 100644 index 0000000..42f56e5 --- /dev/null +++ b/allure-report/data/test-cases/13b252823d104e51.json @@ -0,0 +1 @@ +{"uid":"13b252823d104e51","name":"Несуществующий email","fullName":"ui/recovery/recover-negative.spec.ts:15:7","historyId":"c118be77fa2af6f0e0052ec7489ba66c:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750252813957,"stop":1750252814935,"duration":978},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252813957,"stop":1750252813997,"duration":40},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252813958,"stop":1750252813960,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252813958,"stop":1750252813960,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252813960,"stop":1750252813997,"duration":37},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252813960,"stop":1750252813997,"duration":37},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750252813998,"stop":1750252814760,"duration":762},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(nobody@example.com)","time":{"start":1750252814761,"stop":1750252814795,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750252814795,"stop":1750252814824,"duration":29},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252814825,"stop":1750252814931,"duration":106},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252814931,"stop":1750252814937,"duration":6},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252814931,"stop":1750252814931,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252814931,"stop":1750252814931,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"13b252823d104e51.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/141a9f8f69b1de16.json b/allure-report/data/test-cases/141a9f8f69b1de16.json new file mode 100644 index 0000000..90e9fa4 --- /dev/null +++ b/allure-report/data/test-cases/141a9f8f69b1de16.json @@ -0,0 +1 @@ +{"uid":"141a9f8f69b1de16","name":"Переключатель видимости пароля показывает и скрывает ввод","fullName":"ui/login/login.ui.spec.ts:7:7","historyId":"b1726395bd827a3a21fe3c829a098be4:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750252843667,"stop":1750252845672,"duration":2005},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252843667,"stop":1750252843865,"duration":198},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252843668,"stop":1750252843674,"duration":6},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252843668,"stop":1750252843673,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252843675,"stop":1750252843865,"duration":190},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252843676,"stop":1750252843865,"duration":189},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750252843865,"stop":1750252845522,"duration":1657},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750252845523,"stop":1750252845567,"duration":44},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750252845568,"stop":1750252845571,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750252845571,"stop":1750252845572,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByAltText('показать пароль').click","time":{"start":1750252845572,"stop":1750252845618,"duration":46},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750252845618,"stop":1750252845620,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750252845620,"stop":1750252845620,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByAltText('показать пароль').click","time":{"start":1750252845620,"stop":1750252845667,"duration":47},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750252845667,"stop":1750252845669,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750252845669,"stop":1750252845669,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252845669,"stop":1750252845675,"duration":6},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252845669,"stop":1750252845669,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252845669,"stop":1750252845670,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":18,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.ui.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.ui.spec.ts > UI сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.ui.spec.ts"},{"name":"subSuite","value":"UI сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"141a9f8f69b1de16.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/161e58a3f3c0816d.json b/allure-report/data/test-cases/161e58a3f3c0816d.json new file mode 100644 index 0000000..fd6d616 --- /dev/null +++ b/allure-report/data/test-cases/161e58a3f3c0816d.json @@ -0,0 +1 @@ +{"uid":"161e58a3f3c0816d","name":"Успешная регистрация нового пользователя","fullName":"ui/registration/register.spec.ts:6:7","historyId":"3562648cd3231e14b42a7151c17c62aa:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750253633097,"stop":1750253636457,"duration":3360},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253633096,"stop":1750253633218,"duration":122},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253633098,"stop":1750253633102,"duration":4},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253633098,"stop":1750253633100,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253633102,"stop":1750253633218,"duration":116},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253633103,"stop":1750253633218,"duration":115},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750253633219,"stop":1750253634657,"duration":1438},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Иван)","time":{"start":1750253634658,"stop":1750253634700,"duration":42},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Тестов)","time":{"start":1750253634700,"stop":1750253634711,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Александрович)","time":{"start":1750253634711,"stop":1750253634721,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёное звание*').click","time":{"start":1750253634722,"stop":1750253634993,"duration":271},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Доцент\"i)","time":{"start":1750253634994,"stop":1750253635392,"duration":398},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёная степень*').click","time":{"start":1750253635392,"stop":1750253635790,"duration":398},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Кандидат наук\"i)","time":{"start":1750253635791,"stop":1750253636178,"duration":387},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Преподаватель)","time":{"start":1750253636178,"stop":1750253636187,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(ЮФУ)","time":{"start":1750253636187,"stop":1750253636196,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest22822@example.com)","time":{"start":1750253636196,"stop":1750253636205,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(+79000022822)","time":{"start":1750253636206,"stop":1750253636228,"duration":22},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750253636229,"stop":1750253636238,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750253636238,"stop":1750253636246,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750253636247,"stop":1750253636294,"duration":47},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750253636295,"stop":1750253636401,"duration":106},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253636401,"stop":1750253636404,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253636404,"stop":1750253636457,"duration":53},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253636404,"stop":1750253636404,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253636404,"stop":1750253636404,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":25,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.spec.ts"},{"name":"titlePath","value":" > webkit > ui/registration/register.spec.ts > Позитивные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-2"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/registration/register.spec.ts"},{"name":"subSuite","value":"Позитивные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9c064064dd63e9c4","status":"passed","time":{"start":1750252863247,"stop":1750252865838,"duration":2591}},{"uid":"81cf68134abace1b","status":"passed","time":{"start":1750176709746,"stop":1750176716615,"duration":6869}}],"categories":[],"tags":[]},"source":"161e58a3f3c0816d.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/174c38dfb4172d0a.json b/allure-report/data/test-cases/174c38dfb4172d0a.json new file mode 100644 index 0000000..c9470d9 --- /dev/null +++ b/allure-report/data/test-cases/174c38dfb4172d0a.json @@ -0,0 +1 @@ +{"uid":"174c38dfb4172d0a","name":"Слишком длинная должность","fullName":"ui/registration/register.negative.spec.ts:38:7","historyId":"2214c0f917091cfcda832cd03e01bb76:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750252849868,"stop":1750252851419,"duration":1551},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252849869,"stop":1750252850025,"duration":156},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252849869,"stop":1750252849880,"duration":11},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252849869,"stop":1750252849880,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252849880,"stop":1750252850025,"duration":145},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252849881,"stop":1750252850025,"duration":144},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750252850029,"stop":1750252851294,"duration":1265},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX)","time":{"start":1750252851302,"stop":1750252851334,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750252851335,"stop":1750252851399,"duration":64},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252851400,"stop":1750252851415,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252851415,"stop":1750252851421,"duration":6},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252851415,"stop":1750252851415,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252851415,"stop":1750252851415,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-1"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"174c38dfb4172d0a.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7b807a335cae4963.json b/allure-report/data/test-cases/1809ab63c57693cf.json similarity index 91% rename from allure-report/data/test-cases/7b807a335cae4963.json rename to allure-report/data/test-cases/1809ab63c57693cf.json index d7ee755..d8030a2 100644 --- a/allure-report/data/test-cases/7b807a335cae4963.json +++ b/allure-report/data/test-cases/1809ab63c57693cf.json @@ -1 +1 @@ -{"uid":"7b807a335cae4963","name":"Несуществующий email","fullName":"ui/recovery/recover-negative.spec.ts:15:7","historyId":"c118be77fa2af6f0e0052ec7489ba66c:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750084501499,"stop":1750084502685,"duration":1186},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084501502,"stop":1750084501745,"duration":243},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084501504,"stop":1750084501509,"duration":5},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084501504,"stop":1750084501509,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084501510,"stop":1750084501745,"duration":235},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084501510,"stop":1750084501745,"duration":235},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750084501746,"stop":1750084502456,"duration":710},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(nobody@example.com)","time":{"start":1750084502458,"stop":1750084502494,"duration":36},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750084502495,"stop":1750084502569,"duration":74},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084502570,"stop":1750084502683,"duration":113},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084502683,"stop":1750084502690,"duration":7},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084502683,"stop":1750084502683,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084502683,"stop":1750084502683,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-3"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"dd7e1d233c7f50ae","status":"passed","time":{"start":1750075558210,"stop":1750075559483,"duration":1273}}],"categories":[],"tags":[]},"source":"7b807a335cae4963.json","parameterValues":["firefox"]} \ No newline at end of file +{"uid":"1809ab63c57693cf","name":"Несуществующий email","fullName":"ui/recovery/recover-negative.spec.ts:15:7","historyId":"c118be77fa2af6f0e0052ec7489ba66c:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750084501499,"stop":1750084502685,"duration":1186},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084501502,"stop":1750084501745,"duration":243},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084501504,"stop":1750084501509,"duration":5},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084501504,"stop":1750084501509,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084501510,"stop":1750084501745,"duration":235},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084501510,"stop":1750084501745,"duration":235},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750084501746,"stop":1750084502456,"duration":710},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(nobody@example.com)","time":{"start":1750084502458,"stop":1750084502494,"duration":36},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750084502495,"stop":1750084502569,"duration":74},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084502570,"stop":1750084502683,"duration":113},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084502683,"stop":1750084502690,"duration":7},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084502683,"stop":1750084502683,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084502683,"stop":1750084502683,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-3"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"1809ab63c57693cf.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8d0ccd1c875a97cc.json b/allure-report/data/test-cases/181f6a192d9c8bf8.json similarity index 94% rename from allure-report/data/test-cases/8d0ccd1c875a97cc.json rename to allure-report/data/test-cases/181f6a192d9c8bf8.json index 3ba474d..b1a483e 100644 --- a/allure-report/data/test-cases/8d0ccd1c875a97cc.json +++ b/allure-report/data/test-cases/181f6a192d9c8bf8.json @@ -1 +1 @@ -{"uid":"8d0ccd1c875a97cc","name":"Пользователь успешно восстанавливает пароль","fullName":"ui/recovery/recover-password.spec.ts:7:7","historyId":"1779c735aef9d62c071557455e74e57f:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750084510151,"stop":1750084511331,"duration":1180},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084510150,"stop":1750084510283,"duration":133},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084510151,"stop":1750084510157,"duration":6},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084510152,"stop":1750084510157,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084510157,"stop":1750084510283,"duration":126},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084510159,"stop":1750084510283,"duration":124},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750084510284,"stop":1750084510794,"duration":510},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084510795,"stop":1750084510849,"duration":54},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750084510851,"stop":1750084510898,"duration":47},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750084510899,"stop":1750084511009,"duration":110},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750084511009,"stop":1750084511010,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084511011,"stop":1750084511015,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084511015,"stop":1750084511021,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084511021,"stop":1750084511025,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084511026,"stop":1750084511030,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084511031,"stop":1750084511035,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084511035,"stop":1750084511040,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084511041,"stop":1750084511074,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084511074,"stop":1750084511178,"duration":104},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750084511178,"stop":1750084511183,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750084511183,"stop":1750084511188,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084511188,"stop":1750084511221,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750084511221,"stop":1750084511327,"duration":106},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084511327,"stop":1750084511330,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084511330,"stop":1750084511332,"duration":2},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084511330,"stop":1750084511330,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084511330,"stop":1750084511330,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":26,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-password.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-password.spec.ts > Восстановление пароля — позитивные сценарии"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-2"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-password.spec.ts"},{"name":"subSuite","value":"Восстановление пароля — позитивные сценарии"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f3eb6f5f41d3af6c","status":"passed","time":{"start":1750075567353,"stop":1750075568728,"duration":1375}}],"categories":[],"tags":[]},"source":"8d0ccd1c875a97cc.json","parameterValues":["webkit"]} \ No newline at end of file +{"uid":"181f6a192d9c8bf8","name":"Пользователь успешно восстанавливает пароль","fullName":"ui/recovery/recover-password.spec.ts:7:7","historyId":"1779c735aef9d62c071557455e74e57f:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750084510151,"stop":1750084511331,"duration":1180},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084510150,"stop":1750084510283,"duration":133},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084510151,"stop":1750084510157,"duration":6},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084510152,"stop":1750084510157,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084510157,"stop":1750084510283,"duration":126},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084510159,"stop":1750084510283,"duration":124},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750084510284,"stop":1750084510794,"duration":510},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084510795,"stop":1750084510849,"duration":54},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750084510851,"stop":1750084510898,"duration":47},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750084510899,"stop":1750084511009,"duration":110},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750084511009,"stop":1750084511010,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084511011,"stop":1750084511015,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084511015,"stop":1750084511021,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084511021,"stop":1750084511025,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084511026,"stop":1750084511030,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084511031,"stop":1750084511035,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084511035,"stop":1750084511040,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084511041,"stop":1750084511074,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084511074,"stop":1750084511178,"duration":104},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750084511178,"stop":1750084511183,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750084511183,"stop":1750084511188,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084511188,"stop":1750084511221,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750084511221,"stop":1750084511327,"duration":106},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084511327,"stop":1750084511330,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084511330,"stop":1750084511332,"duration":2},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084511330,"stop":1750084511330,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084511330,"stop":1750084511330,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":26,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-password.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-password.spec.ts > Восстановление пароля — позитивные сценарии"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-2"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-password.spec.ts"},{"name":"subSuite","value":"Восстановление пароля — позитивные сценарии"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"181f6a192d9c8bf8.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/18a269908d755a77.json b/allure-report/data/test-cases/18a269908d755a77.json new file mode 100644 index 0000000..fa82f87 --- /dev/null +++ b/allure-report/data/test-cases/18a269908d755a77.json @@ -0,0 +1 @@ +{"uid":"18a269908d755a77","name":"Переход по ссылке \"Забыли пароль?\"","fullName":"ui/login/login.link.spec.ts:6:5","historyId":"91fcabcb669557e4ddb559c077420e45:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750075562343,"stop":1750075563505,"duration":1162},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075562344,"stop":1750075562767,"duration":423},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750075562349,"stop":1750075562524,"duration":175},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750075562352,"stop":1750075562524,"duration":172},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075562525,"stop":1750075562567,"duration":42},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075562526,"stop":1750075562566,"duration":40},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075562567,"stop":1750075562767,"duration":200},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075562568,"stop":1750075562767,"duration":199},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075562771,"stop":1750075563385,"duration":614},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByText('Забыли пароль?').click","time":{"start":1750075563394,"stop":1750075563631,"duration":237},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750075563638,"stop":1750075563666,"duration":28},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075563667,"stop":1750075563672,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075563673,"stop":1750075563685,"duration":12},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075563673,"stop":1750075563673,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075563673,"stop":1750075563673,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-3"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"18a269908d755a77.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/18bfd216e0cfac69.json b/allure-report/data/test-cases/18bfd216e0cfac69.json new file mode 100644 index 0000000..25e6b20 --- /dev/null +++ b/allure-report/data/test-cases/18bfd216e0cfac69.json @@ -0,0 +1 @@ +{"uid":"18bfd216e0cfac69","name":"Некорректное имя и фамилия (слишком длинные)","fullName":"ui/registration/register.negative.spec.ts:16:7","historyId":"7134a02a04b606099de5c920fb62990a:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750252463071,"stop":1750252484871,"duration":21800},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252463070,"stop":1750252464160,"duration":1090},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252463071,"stop":1750252463909,"duration":838},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252463072,"stop":1750252463908,"duration":836},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252463909,"stop":1750252464160,"duration":251},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252463910,"stop":1750252464160,"duration":250},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750252464161,"stop":1750252474990,"duration":10829},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(ААААААААААААААААААААААААААААААААААААААААААААААААААА)","time":{"start":1750252474991,"stop":1750252476820,"duration":1829},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(БББББББББББББББББББББББББББББББББББББББББББББББББББ)","time":{"start":1750252476821,"stop":1750252478130,"duration":1309},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750252478132,"stop":1750252479516,"duration":1384},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252479516,"stop":1750252483395,"duration":3879},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252483396,"stop":1750252484861,"duration":1465},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252484861,"stop":1750252484892,"duration":31},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252484862,"stop":1750252484862,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252484862,"stop":1750252484862,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-57209-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"18bfd216e0cfac69.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/19a70ab8d1df0edd.json b/allure-report/data/test-cases/19a70ab8d1df0edd.json new file mode 100644 index 0000000..380eaa7 --- /dev/null +++ b/allure-report/data/test-cases/19a70ab8d1df0edd.json @@ -0,0 +1 @@ +{"uid":"19a70ab8d1df0edd","name":"Некорректный новый пароль","fullName":"ui/recovery/recover-negative.spec.ts:34:7","historyId":"18246cf63350a71f5b46012e257bafcf:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750252845679,"stop":1750252847817,"duration":2138},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252845678,"stop":1750252845848,"duration":170},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252845679,"stop":1750252845687,"duration":8},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252845679,"stop":1750252845686,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252845687,"stop":1750252845848,"duration":161},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252845687,"stop":1750252845848,"duration":161},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750252845849,"stop":1750252847173,"duration":1324},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750252847174,"stop":1750252847215,"duration":41},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750252847215,"stop":1750252847269,"duration":54},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750252847270,"stop":1750252847271,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252847272,"stop":1750252847381,"duration":109},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252847383,"stop":1750252847407,"duration":24},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252847408,"stop":1750252847475,"duration":67},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252847475,"stop":1750252847490,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252847491,"stop":1750252847502,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252847502,"stop":1750252847509,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750252847511,"stop":1750252847592,"duration":81},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(123)","time":{"start":1750252847593,"stop":1750252847700,"duration":107},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(123)","time":{"start":1750252847701,"stop":1750252847707,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750252847707,"stop":1750252847777,"duration":70},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252847781,"stop":1750252847793,"duration":12},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252847793,"stop":1750252847819,"duration":26},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252847794,"stop":1750252847794,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252847794,"stop":1750252847794,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"19a70ab8d1df0edd.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1a3b3ab485523c37.json b/allure-report/data/test-cases/1a3b3ab485523c37.json new file mode 100644 index 0000000..aee45f6 --- /dev/null +++ b/allure-report/data/test-cases/1a3b3ab485523c37.json @@ -0,0 +1 @@ +{"uid":"1a3b3ab485523c37","name":"Слишком длинное название организации","fullName":"ui/registration/register.negative.spec.ts:48:7","historyId":"26486147b8778ca2341563049d2a3728:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750253632679,"stop":1750253634953,"duration":2274},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253632679,"stop":1750253632796,"duration":117},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253632680,"stop":1750253632683,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253632680,"stop":1750253632682,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253632683,"stop":1750253632796,"duration":113},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253632683,"stop":1750253632796,"duration":113},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750253632797,"stop":1750253633589,"duration":792},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Иван)","time":{"start":1750253633590,"stop":1750253633651,"duration":61},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Иванов)","time":{"start":1750253633651,"stop":1750253633660,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёное звание*').click","time":{"start":1750253633661,"stop":1750253633714,"duration":53},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Доцент\"i)","time":{"start":1750253633714,"stop":1750253634126,"duration":412},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёная степень*').click","time":{"start":1750253634126,"stop":1750253634509,"duration":383},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Кандидат наук\"i)","time":{"start":1750253634509,"stop":1750253634560,"duration":51},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Преподаватель)","time":{"start":1750253634560,"stop":1750253634586,"duration":26},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(ООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООО)","time":{"start":1750253634587,"stop":1750253634595,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(test1750253633589@example.com)","time":{"start":1750253634596,"stop":1750253634605,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(+79990866063)","time":{"start":1750253634607,"stop":1750253634646,"duration":39},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123)","time":{"start":1750253634647,"stop":1750253634664,"duration":17},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123)","time":{"start":1750253634664,"stop":1750253634693,"duration":29},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750253634694,"stop":1750253634745,"duration":51},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253634745,"stop":1750253634852,"duration":107},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253634852,"stop":1750253634954,"duration":102},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253634852,"stop":1750253634852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253634852,"stop":1750253634852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-0"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"db03043b9622459e","status":"passed","time":{"start":1750252862686,"stop":1750252865131,"duration":2445}},{"uid":"5ddff479ee91e9a6","status":"passed","time":{"start":1750252690591,"stop":1750252693896,"duration":3305}}],"categories":[],"tags":[]},"source":"1a3b3ab485523c37.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/97cfbc33de42faa5.json b/allure-report/data/test-cases/1a4440aa0c72497a.json similarity index 97% rename from allure-report/data/test-cases/97cfbc33de42faa5.json rename to allure-report/data/test-cases/1a4440aa0c72497a.json index 5a21f07..7c10403 100644 --- a/allure-report/data/test-cases/97cfbc33de42faa5.json +++ b/allure-report/data/test-cases/1a4440aa0c72497a.json @@ -1 +1 @@ -{"uid":"97cfbc33de42faa5","name":"Переход по ссылке \"Забыли пароль?\"","fullName":"ui/login/login.link.spec.ts:6:5","historyId":"91fcabcb669557e4ddb559c077420e45:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750075551914,"stop":1750075554459,"duration":2545},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075551915,"stop":1750075553647,"duration":1732},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750075551921,"stop":1750075552729,"duration":808},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750075551922,"stop":1750075552728,"duration":806},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075552729,"stop":1750075552878,"duration":149},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075552730,"stop":1750075552877,"duration":147},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075552878,"stop":1750075553647,"duration":769},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075552879,"stop":1750075553647,"duration":768},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075553651,"stop":1750075555083,"duration":1432},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByText('Забыли пароль?').click","time":{"start":1750075555089,"stop":1750075555213,"duration":124},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750075555217,"stop":1750075555234,"duration":17},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075555234,"stop":1750075555252,"duration":18},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075555252,"stop":1750075555272,"duration":20},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075555252,"stop":1750075555253,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075555253,"stop":1750075555253,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"97cfbc33de42faa5.json","parameterValues":["firefox"]} \ No newline at end of file +{"uid":"1a4440aa0c72497a","name":"Переход по ссылке \"Забыли пароль?\"","fullName":"ui/login/login.link.spec.ts:6:5","historyId":"91fcabcb669557e4ddb559c077420e45:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750075551914,"stop":1750075554459,"duration":2545},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075551915,"stop":1750075553647,"duration":1732},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750075551921,"stop":1750075552729,"duration":808},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750075551922,"stop":1750075552728,"duration":806},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075552729,"stop":1750075552878,"duration":149},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075552730,"stop":1750075552877,"duration":147},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075552878,"stop":1750075553647,"duration":769},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075552879,"stop":1750075553647,"duration":768},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075553651,"stop":1750075555083,"duration":1432},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByText('Забыли пароль?').click","time":{"start":1750075555089,"stop":1750075555213,"duration":124},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750075555217,"stop":1750075555234,"duration":17},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075555234,"stop":1750075555252,"duration":18},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075555252,"stop":1750075555272,"duration":20},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075555252,"stop":1750075555253,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075555253,"stop":1750075555253,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"1a4440aa0c72497a.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1aa50af46a2c6c85.json b/allure-report/data/test-cases/1aa50af46a2c6c85.json new file mode 100644 index 0000000..8705dae --- /dev/null +++ b/allure-report/data/test-cases/1aa50af46a2c6c85.json @@ -0,0 +1 @@ +{"uid":"1aa50af46a2c6c85","name":"Слишком длинная должность","fullName":"ui/registration/register.negative.spec.ts:38:7","historyId":"2214c0f917091cfcda832cd03e01bb76:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253570265,"stop":1750253577600,"duration":7335},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253570265,"stop":1750253570302,"duration":37},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253570266,"stop":1750253570268,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253570266,"stop":1750253570267,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253570268,"stop":1750253570302,"duration":34},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253570269,"stop":1750253570302,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750253570302,"stop":1750253575315,"duration":5013},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX)","time":{"start":1750253575319,"stop":1750253575421,"duration":102},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750253575422,"stop":1750253575471,"duration":49},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253575472,"stop":1750253575516,"duration":44},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253575518,"stop":1750253577604,"duration":2086},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253575519,"stop":1750253575519,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253575519,"stop":1750253575519,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ba9633d5087da82b","status":"passed","time":{"start":1750253497296,"stop":1750253503798,"duration":6502}},{"uid":"d56dbab5fcead289","status":"passed","time":{"start":1750252825519,"stop":1750252826364,"duration":845}},{"uid":"cf49efa2bb547af4","status":"passed","time":{"start":1750252754595,"stop":1750252762232,"duration":7637}},{"uid":"fb845916a86b3746","status":"passed","time":{"start":1750252508247,"stop":1750252518166,"duration":9919}}],"categories":[],"tags":[]},"source":"1aa50af46a2c6c85.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1adf876d79ab931.json b/allure-report/data/test-cases/1adf876d79ab931.json new file mode 100644 index 0000000..27d7735 --- /dev/null +++ b/allure-report/data/test-cases/1adf876d79ab931.json @@ -0,0 +1 @@ +{"uid":"1adf876d79ab931","name":"Регистр в email (User@test.com ≠ user@test.com)","fullName":"ui/login/login.negative.spec.ts:58:7","historyId":"cc4ad4b40ef726af11b2bd4f5523dbe0:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750252843109,"stop":1750252844801,"duration":1692},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252843108,"stop":1750252843276,"duration":168},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252843109,"stop":1750252843121,"duration":12},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252843110,"stop":1750252843120,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252843121,"stop":1750252843276,"duration":155},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252843121,"stop":1750252843276,"duration":155},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750252843277,"stop":1750252844579,"duration":1302},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Autotest@Example.com)","time":{"start":1750252844581,"stop":1750252844609,"duration":28},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750252844611,"stop":1750252844628,"duration":17},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750252844629,"stop":1750252844685,"duration":56},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252844686,"stop":1750252844795,"duration":109},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252844795,"stop":1750252844802,"duration":7},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252844795,"stop":1750252844796,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252844796,"stop":1750252844796,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"tag","value":"test.com"},{"name":"tag","value":"test.com)"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-1"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["test.com","test.com)"]},"source":"1adf876d79ab931.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1bb7e55e3db2d758.json b/allure-report/data/test-cases/1bb7e55e3db2d758.json new file mode 100644 index 0000000..bb0e284 --- /dev/null +++ b/allure-report/data/test-cases/1bb7e55e3db2d758.json @@ -0,0 +1 @@ +{"uid":"1bb7e55e3db2d758","name":"has title","fullName":"example.spec.ts:3:5","historyId":"3a2a809b453af4fd564578d1a27f3e45:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750252852132,"stop":1750252854191,"duration":2059},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252852133,"stop":1750252853199,"duration":1066},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750252852137,"stop":1750252852582,"duration":445},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750252852138,"stop":1750252852582,"duration":444},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252852583,"stop":1750252852658,"duration":75},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252852584,"stop":1750252852657,"duration":73},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252852658,"stop":1750252853199,"duration":541},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252852658,"stop":1750252853199,"duration":541},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(https://playwright.dev/)","time":{"start":1750252853201,"stop":1750252854604,"duration":1403},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveTitle","time":{"start":1750252854606,"stop":1750252854634,"duration":28},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252854634,"stop":1750252854641,"duration":7},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252854635,"stop":1750252854635,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252854635,"stop":1750252854635,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > webkit > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-2"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"example.spec.ts"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"1bb7e55e3db2d758.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1bf14a52b790d91.json b/allure-report/data/test-cases/1bf14a52b790d91.json deleted file mode 100644 index bde84ef..0000000 --- a/allure-report/data/test-cases/1bf14a52b790d91.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"1bf14a52b790d91","name":"Неверный код подтверждения","fullName":"ui/recovery/recover-negative.spec.ts:23:7","historyId":"31f03826b2a8da254be42b2d49bc35f3:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750084501594,"stop":1750084503368,"duration":1774},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084501594,"stop":1750084501793,"duration":199},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084501595,"stop":1750084501604,"duration":9},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084501595,"stop":1750084501604,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084501604,"stop":1750084501793,"duration":189},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084501604,"stop":1750084501793,"duration":189},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750084501795,"stop":1750084502789,"duration":994},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084502789,"stop":1750084502884,"duration":95},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750084502885,"stop":1750084502970,"duration":85},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750084502972,"stop":1750084503085,"duration":113},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750084503086,"stop":1750084503087,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(6)","time":{"start":1750084503088,"stop":1750084503114,"duration":26},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(5)","time":{"start":1750084503115,"stop":1750084503142,"duration":27},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(4)","time":{"start":1750084503143,"stop":1750084503153,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(3)","time":{"start":1750084503154,"stop":1750084503158,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(2)","time":{"start":1750084503159,"stop":1750084503163,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(1)","time":{"start":1750084503163,"stop":1750084503177,"duration":14},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084503178,"stop":1750084503247,"duration":69},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084503247,"stop":1750084503362,"duration":115},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084503362,"stop":1750084503370,"duration":8},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084503362,"stop":1750084503362,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084503362,"stop":1750084503362,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":21,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5a5e4227a4d69e41","status":"passed","time":{"start":1750075558336,"stop":1750075560026,"duration":1690}}],"categories":[],"tags":[]},"source":"1bf14a52b790d91.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1c00b342119d156f.json b/allure-report/data/test-cases/1c00b342119d156f.json new file mode 100644 index 0000000..0ee234d --- /dev/null +++ b/allure-report/data/test-cases/1c00b342119d156f.json @@ -0,0 +1 @@ +{"uid":"1c00b342119d156f","name":"Пустое поле \"Повторите пароль\"","fullName":"ui/recovery/recover-negative.spec.ts:45:7","historyId":"e6d2fb91f0b85b95c3962ffc860dddd7:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750252845854,"stop":1750252847920,"duration":2066},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252845855,"stop":1750252846021,"duration":166},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252845856,"stop":1750252845861,"duration":5},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252845856,"stop":1750252845861,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252845861,"stop":1750252846021,"duration":160},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252845862,"stop":1750252846021,"duration":159},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750252846022,"stop":1750252847357,"duration":1335},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750252847358,"stop":1750252847422,"duration":64},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750252847423,"stop":1750252847527,"duration":104},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750252847528,"stop":1750252847531,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252847532,"stop":1750252847631,"duration":99},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252847631,"stop":1750252847636,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252847637,"stop":1750252847642,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252847643,"stop":1750252847652,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252847653,"stop":1750252847658,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252847659,"stop":1750252847673,"duration":14},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750252847673,"stop":1750252847734,"duration":61},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750252847735,"stop":1750252847837,"duration":102},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750252847838,"stop":1750252847852,"duration":14},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750252847853,"stop":1750252847902,"duration":49},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252847903,"stop":1750252847908,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252847908,"stop":1750252847922,"duration":14},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252847908,"stop":1750252847908,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252847908,"stop":1750252847909,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-3"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"1c00b342119d156f.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1c2b927f6a4c2926.json b/allure-report/data/test-cases/1c2b927f6a4c2926.json new file mode 100644 index 0000000..cd3dfb5 --- /dev/null +++ b/allure-report/data/test-cases/1c2b927f6a4c2926.json @@ -0,0 +1 @@ +{"uid":"1c2b927f6a4c2926","name":"Пустое поле \"Повторите пароль\"","fullName":"ui/recovery/recover-negative.spec.ts:45:7","historyId":"e6d2fb91f0b85b95c3962ffc860dddd7:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253562565,"stop":1750253564290,"duration":1725},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253562565,"stop":1750253562602,"duration":37},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253562565,"stop":1750253562568,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253562566,"stop":1750253562567,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253562568,"stop":1750253562602,"duration":34},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253562568,"stop":1750253562602,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750253562603,"stop":1750253563322,"duration":719},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750253563322,"stop":1750253563343,"duration":21},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750253563343,"stop":1750253563381,"duration":38},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750253563382,"stop":1750253563384,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253563385,"stop":1750253563486,"duration":101},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253563486,"stop":1750253563490,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253563490,"stop":1750253563496,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253563496,"stop":1750253563501,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253563501,"stop":1750253563505,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253563505,"stop":1750253563510,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750253563510,"stop":1750253563550,"duration":40},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750253563550,"stop":1750253563629,"duration":79},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750253563629,"stop":1750253563633,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750253563633,"stop":1750253563666,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253563666,"stop":1750253563671,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253563671,"stop":1750253564292,"duration":621},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253563671,"stop":1750253563671,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253563671,"stop":1750253563671,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"7d688343ed4965a8","status":"passed","time":{"start":1750253489856,"stop":1750253491644,"duration":1788}},{"uid":"83468007d66545d9","status":"passed","time":{"start":1750252814938,"stop":1750252824465,"duration":9527}},{"uid":"8076f7892ffa88f","status":"passed","time":{"start":1750084492375,"stop":1750084493870,"duration":1495}},{"uid":"68f153226489550d","status":"passed","time":{"start":1750075550062,"stop":1750075551012,"duration":950}}],"categories":[],"tags":[]},"source":"1c2b927f6a4c2926.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1c9f284fe6b843b.json b/allure-report/data/test-cases/1c9f284fe6b843b.json new file mode 100644 index 0000000..87ea1b3 --- /dev/null +++ b/allure-report/data/test-cases/1c9f284fe6b843b.json @@ -0,0 +1 @@ +{"uid":"1c9f284fe6b843b","name":"Переход по ссылке \"Зарегистрируйтесь\"","fullName":"ui/login/login.link.spec.ts:15:5","historyId":"62db9603623bba26b6305edb541ef4fa:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750084494915,"stop":1750084497374,"duration":2459},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084494916,"stop":1750084498530,"duration":3614},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750084494920,"stop":1750084497319,"duration":2399},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750084494921,"stop":1750084497319,"duration":2398},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084497320,"stop":1750084497515,"duration":195},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084497322,"stop":1750084497513,"duration":191},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084497515,"stop":1750084498530,"duration":1015},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084497516,"stop":1750084498530,"duration":1014},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084498535,"stop":1750084499620,"duration":1085},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByText('Зарегистрируйтесь').click","time":{"start":1750084499626,"stop":1750084499736,"duration":110},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750084499737,"stop":1750084499743,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084499744,"stop":1750084499762,"duration":18},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084499762,"stop":1750084499780,"duration":18},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084499763,"stop":1750084499763,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084499763,"stop":1750084499763,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"1c9f284fe6b843b.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1e1a6ccd54582ad8.json b/allure-report/data/test-cases/1e1a6ccd54582ad8.json new file mode 100644 index 0000000..307184c --- /dev/null +++ b/allure-report/data/test-cases/1e1a6ccd54582ad8.json @@ -0,0 +1 @@ +{"uid":"1e1a6ccd54582ad8","name":"Несуществующий email","fullName":"ui/login/login.negative.spec.ts:17:7","historyId":"69b9236bee03ff0034bfbd5addc25f93:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750253584291,"stop":1750253591595,"duration":7304},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253584291,"stop":1750253584378,"duration":87},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253584292,"stop":1750253584296,"duration":4},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253584292,"stop":1750253584294,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253584296,"stop":1750253584378,"duration":82},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253584297,"stop":1750253584377,"duration":80},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750253584379,"stop":1750253591317,"duration":6938},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(wrong@example.com)","time":{"start":1750253591318,"stop":1750253591364,"duration":46},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(anyPassword123)","time":{"start":1750253591364,"stop":1750253591375,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750253591376,"stop":1750253591444,"duration":68},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253591445,"stop":1750253591560,"duration":115},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253591560,"stop":1750253591596,"duration":36},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253591560,"stop":1750253591560,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253591560,"stop":1750253591560,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-3"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"fe3a63658be6990b","status":"passed","time":{"start":1750252836661,"stop":1750252843104,"duration":6443}},{"uid":"6694e86bba58036e","status":"passed","time":{"start":1750084498297,"stop":1750084500105,"duration":1808}},{"uid":"b713258d480550af","status":"passed","time":{"start":1750075555286,"stop":1750075556929,"duration":1643}}],"categories":[],"tags":[]},"source":"1e1a6ccd54582ad8.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1fdd505b1055dba0.json b/allure-report/data/test-cases/1fdd505b1055dba0.json new file mode 100644 index 0000000..1a22060 --- /dev/null +++ b/allure-report/data/test-cases/1fdd505b1055dba0.json @@ -0,0 +1 @@ +{"uid":"1fdd505b1055dba0","name":"Только email без пароля","fullName":"ui/login/login.negative.spec.ts:37:7","historyId":"8c67bb2f4fb916157fb6191bbb5e4267:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750252856451,"stop":1750252857941,"duration":1490},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252856451,"stop":1750252856558,"duration":107},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252856451,"stop":1750252856453,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252856451,"stop":1750252856453,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252856453,"stop":1750252856558,"duration":105},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252856453,"stop":1750252856558,"duration":105},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750252856559,"stop":1750252857777,"duration":1218},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750252857780,"stop":1750252857847,"duration":67},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750252857848,"stop":1750252857895,"duration":47},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750252857897,"stop":1750252857935,"duration":38},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252857935,"stop":1750252857939,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252857939,"stop":1750252857942,"duration":3},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252857939,"stop":1750252857939,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252857939,"stop":1750252857939,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-1"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"1fdd505b1055dba0.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f5b8eff89fd823f5.json b/allure-report/data/test-cases/1fddb2fa0fdd9389.json similarity index 97% rename from allure-report/data/test-cases/f5b8eff89fd823f5.json rename to allure-report/data/test-cases/1fddb2fa0fdd9389.json index 68f5bba..97fc590 100644 --- a/allure-report/data/test-cases/f5b8eff89fd823f5.json +++ b/allure-report/data/test-cases/1fddb2fa0fdd9389.json @@ -1 +1 @@ -{"uid":"f5b8eff89fd823f5","name":"Некорректный email (формат)","fullName":"ui/recovery/recover-negative.spec.ts:7:7","historyId":"d776d5fb9c918a79827aea417bdc449a:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750075557377,"stop":1750075558616,"duration":1239},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075557377,"stop":1750075557553,"duration":176},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075557378,"stop":1750075557386,"duration":8},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075557378,"stop":1750075557385,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075557386,"stop":1750075557553,"duration":167},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075557386,"stop":1750075557552,"duration":166},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750075557556,"stop":1750075558342,"duration":786},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(invalid-email)","time":{"start":1750075558343,"stop":1750075558462,"duration":119},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750075558463,"stop":1750075558563,"duration":100},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075558564,"stop":1750075558605,"duration":41},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075558605,"stop":1750075558618,"duration":13},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075558606,"stop":1750075558606,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075558606,"stop":1750075558606,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"f5b8eff89fd823f5.json","parameterValues":["firefox"]} \ No newline at end of file +{"uid":"1fddb2fa0fdd9389","name":"Некорректный email (формат)","fullName":"ui/recovery/recover-negative.spec.ts:7:7","historyId":"d776d5fb9c918a79827aea417bdc449a:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750075557377,"stop":1750075558616,"duration":1239},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075557377,"stop":1750075557553,"duration":176},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075557378,"stop":1750075557386,"duration":8},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075557378,"stop":1750075557385,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075557386,"stop":1750075557553,"duration":167},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075557386,"stop":1750075557552,"duration":166},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750075557556,"stop":1750075558342,"duration":786},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(invalid-email)","time":{"start":1750075558343,"stop":1750075558462,"duration":119},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750075558463,"stop":1750075558563,"duration":100},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075558564,"stop":1750075558605,"duration":41},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075558605,"stop":1750075558618,"duration":13},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075558606,"stop":1750075558606,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075558606,"stop":1750075558606,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"1fddb2fa0fdd9389.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1ffa1f32ab940059.json b/allure-report/data/test-cases/1ffa1f32ab940059.json new file mode 100644 index 0000000..914d086 --- /dev/null +++ b/allure-report/data/test-cases/1ffa1f32ab940059.json @@ -0,0 +1 @@ +{"uid":"1ffa1f32ab940059","name":"Успешная регистрация нового пользователя","fullName":"ui/registration/register.spec.ts:6:7","historyId":"3562648cd3231e14b42a7151c17c62aa:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253577624,"stop":1750253579862,"duration":2238},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":10,"retriesStatusChange":true,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253577626,"stop":1750253577672,"duration":46},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253577626,"stop":1750253577632,"duration":6},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253577627,"stop":1750253577630,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253577632,"stop":1750253577672,"duration":40},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253577633,"stop":1750253577672,"duration":39},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750253577673,"stop":1750253578479,"duration":806},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Иван)","time":{"start":1750253578480,"stop":1750253578500,"duration":20},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Тестов)","time":{"start":1750253578501,"stop":1750253578511,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Александрович)","time":{"start":1750253578512,"stop":1750253578522,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёное звание*').click","time":{"start":1750253578523,"stop":1750253578573,"duration":50},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Доцент\"i)","time":{"start":1750253578573,"stop":1750253578648,"duration":75},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёная степень*').click","time":{"start":1750253578649,"stop":1750253579549,"duration":900},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Кандидат наук\"i)","time":{"start":1750253579550,"stop":1750253579584,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Преподаватель)","time":{"start":1750253579585,"stop":1750253579591,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(ЮФУ)","time":{"start":1750253579593,"stop":1750253579606,"duration":13},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest1356@example.com)","time":{"start":1750253579606,"stop":1750253579615,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(+79000001356)","time":{"start":1750253579616,"stop":1750253579622,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750253579623,"stop":1750253579633,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750253579634,"stop":1750253579643,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750253579644,"stop":1750253579685,"duration":41},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750253579686,"stop":1750253579792,"duration":106},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253579793,"stop":1750253579797,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253579797,"stop":1750253579866,"duration":69},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253579798,"stop":1750253579798,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253579798,"stop":1750253579798,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":25,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.spec.ts > Позитивные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.spec.ts"},{"name":"subSuite","value":"Позитивные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"fdb2b176004a83fb","status":"passed","time":{"start":1750253502884,"stop":1750253505132,"duration":2248}},{"uid":"e69b3e4c0f6da480","status":"passed","time":{"start":1750252826035,"stop":1750252832119,"duration":6084}},{"uid":"62e5d112acd892be","status":"passed","time":{"start":1750176656779,"stop":1750176688826,"duration":32047}},{"uid":"22f8a179d5a337e8","status":"failed","statusDetails":"Error: expect(locator).toHaveURL(expected)\n\nLocator: locator(':root')\nExpected pattern: /\\/login\\/confirmLogin/\nReceived string: \"\"\nCall log:\n - expect.toHaveURL with timeout 5000ms\n - waiting for locator(':root')\n","time":{"start":1750176582212,"stop":1750176651424,"duration":69212}},{"uid":"913af2739bd12ded","status":"failed","statusDetails":"Error: locator.isVisible: Target page, context or browser has been closed\nCall log:\n - checking visibility of locator('p.ErrorModal_title__heTm5')\n","time":{"start":1750176464557,"stop":1750176538333,"duration":73776}},{"uid":"4e81c8878ef899b8","status":"failed","statusDetails":"Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected)\n\nLocator: locator(':root')\nExpected pattern: /\\/login\\/confirmLogin/\nReceived string: \"https://ssas.dev.rdcenter.ru/login/registration\"\nCall log:\n - expect.toHaveURL with timeout 5000ms\n - waiting for locator(':root')\n 9 × locator resolved to …\n - unexpected value \"https://ssas.dev.rdcenter.ru/login/registration\"\n","time":{"start":1750175955750,"stop":1750176008146,"duration":52396}},{"uid":"b8c734422c01553e","status":"failed","statusDetails":"Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected)\n\nLocator: locator(':root')\nExpected pattern: /\\/login\\/confirmLogin/\nReceived string: \"https://ssas.dev.rdcenter.ru/login/registration\"\nCall log:\n - expect.toHaveURL with timeout 5000ms\n - waiting for locator(':root')\n 9 × locator resolved to …\n - unexpected value \"https://ssas.dev.rdcenter.ru/login/registration\"\n","time":{"start":1750175892514,"stop":1750175942070,"duration":49556}},{"uid":"b2e822e88eccaefd","status":"failed","statusDetails":"Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected)\n\nLocator: locator(':root')\nExpected pattern: /\\/login\\/confirmLogin/\nReceived string: \"https://ssas.dev.rdcenter.ru/login/registration\"\nCall log:\n - expect.toHaveURL with timeout 5000ms\n - waiting for locator(':root')\n 9 × locator resolved to …\n - unexpected value \"https://ssas.dev.rdcenter.ru/login/registration\"\n","time":{"start":1750175803854,"stop":1750175838015,"duration":34161}},{"uid":"6a9cc0b24dc2b31f","status":"failed","statusDetails":"Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected)\n\nLocator: locator(':root')\nExpected pattern: /\\/login\\/authorization/\nReceived string: \"https://ssas.dev.rdcenter.ru/login/registration\"\nCall log:\n - expect.toHaveURL with timeout 5000ms\n - waiting for locator(':root')\n 9 × locator resolved to …\n - unexpected value \"https://ssas.dev.rdcenter.ru/login/registration\"\n","time":{"start":1750170283414,"stop":1750170315971,"duration":32557}},{"uid":"e30d72eec270a5f2","status":"failed","statusDetails":"Error: locator.fill: Target page, context or browser has been closed\nCall log:\n - waiting for getByPlaceholder('Учёное звание*')\n - locator resolved to \n - fill(\"Доцент\")\n - attempting fill action\n 2 × waiting for element to be visible, enabled and editable\n - element is not editable\n - retrying fill action\n - waiting 20ms\n 2 × waiting for element to be visible, enabled and editable\n - element is not editable\n - retrying fill action\n - waiting 100ms\n 128 × waiting for element to be visible, enabled and editable\n - element is not editable\n - retrying fill action\n - waiting 500ms\n","time":{"start":1750169801429,"stop":1750169895816,"duration":94387}}],"categories":[],"tags":[]},"source":"1ffa1f32ab940059.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/20cbd51974e2c4a.json b/allure-report/data/test-cases/20cbd51974e2c4a.json deleted file mode 100644 index f981e72..0000000 --- a/allure-report/data/test-cases/20cbd51974e2c4a.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"20cbd51974e2c4a","name":"Неверный пароль","fullName":"ui/login/login.negative.spec.ts:7:7","historyId":"500ad758ee2db2bb60aa832fb0abbb94:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750075563427,"stop":1750075564713,"duration":1286},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075563429,"stop":1750075563597,"duration":168},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075563431,"stop":1750075563440,"duration":9},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075563431,"stop":1750075563439,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075563440,"stop":1750075563597,"duration":157},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075563441,"stop":1750075563597,"duration":156},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075563599,"stop":1750075564360,"duration":761},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075564364,"stop":1750075564483,"duration":119},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(wrongpass)","time":{"start":1750075564490,"stop":1750075564522,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750075564524,"stop":1750075564586,"duration":62},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075564587,"stop":1750075564710,"duration":123},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075564710,"stop":1750075564719,"duration":9},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075564711,"stop":1750075564711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075564711,"stop":1750075564711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-2"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"20cbd51974e2c4a.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/217f9cb526214946.json b/allure-report/data/test-cases/217f9cb526214946.json new file mode 100644 index 0000000..54b7908 --- /dev/null +++ b/allure-report/data/test-cases/217f9cb526214946.json @@ -0,0 +1 @@ +{"uid":"217f9cb526214946","name":"Регистр в email (User@test.com ≠ user@test.com)","fullName":"ui/login/login.negative.spec.ts:58:7","historyId":"cc4ad4b40ef726af11b2bd4f5523dbe0:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253480153,"stop":1750253482552,"duration":2399},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253480153,"stop":1750253480190,"duration":37},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253480153,"stop":1750253480156,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253480153,"stop":1750253480155,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253480156,"stop":1750253480190,"duration":34},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253480157,"stop":1750253480190,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750253480190,"stop":1750253481503,"duration":1313},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Autotest@Example.com)","time":{"start":1750253481504,"stop":1750253481526,"duration":22},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750253481527,"stop":1750253481568,"duration":41},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750253481570,"stop":1750253481615,"duration":45},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253481616,"stop":1750253481726,"duration":110},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253481726,"stop":1750253482553,"duration":827},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253481726,"stop":1750253481726,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253481726,"stop":1750253481726,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"tag","value":"test.com"},{"name":"tag","value":"test.com)"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["test.com","test.com)"]},"source":"217f9cb526214946.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/21b702edbd984440.json b/allure-report/data/test-cases/21b702edbd984440.json new file mode 100644 index 0000000..3868c78 --- /dev/null +++ b/allure-report/data/test-cases/21b702edbd984440.json @@ -0,0 +1 @@ +{"uid":"21b702edbd984440","name":"Некорректное имя и фамилия (слишком длинные)","fullName":"ui/registration/register.negative.spec.ts:16:7","historyId":"7134a02a04b606099de5c920fb62990a:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750252861777,"stop":1750252863239,"duration":1462},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252861778,"stop":1750252861904,"duration":126},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252861778,"stop":1750252861781,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252861779,"stop":1750252861780,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252861781,"stop":1750252861904,"duration":123},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252861781,"stop":1750252861904,"duration":123},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750252861905,"stop":1750252862937,"duration":1032},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(ААААААААААААААААААААААААААААААААААААААААААААААААААА)","time":{"start":1750252862938,"stop":1750252862959,"duration":21},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(БББББББББББББББББББББББББББББББББББББББББББББББББББ)","time":{"start":1750252862960,"stop":1750252862968,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750252862969,"stop":1750252863227,"duration":258},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252863227,"stop":1750252863232,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252863233,"stop":1750252863237,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252863237,"stop":1750252863242,"duration":5},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252863237,"stop":1750252863237,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252863238,"stop":1750252863238,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-0"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"21b702edbd984440.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/22f8a179d5a337e8.json b/allure-report/data/test-cases/22f8a179d5a337e8.json new file mode 100644 index 0000000..3e9bad3 --- /dev/null +++ b/allure-report/data/test-cases/22f8a179d5a337e8.json @@ -0,0 +1 @@ +{"uid":"22f8a179d5a337e8","name":"Успешная регистрация нового пользователя","fullName":"ui/registration/register.spec.ts:6:7","historyId":"3562648cd3231e14b42a7151c17c62aa:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750176582212,"stop":1750176651424,"duration":69212},"status":"failed","statusMessage":"Error: expect(locator).toHaveURL(expected)\n\nLocator: locator(':root')\nExpected pattern: /\\/login\\/confirmLogin/\nReceived string: \"\"\nCall log:\n - expect.toHaveURL with timeout 5000ms\n - waiting for locator(':root')\n","statusTrace":"Error: expect(locator).toHaveURL(expected)\n\nLocator: locator(':root')\nExpected pattern: /\\/login\\/confirmLogin/\nReceived string: \"\"\nCall log:\n - expect.toHaveURL with timeout 5000ms\n - waiting for locator(':root')\n\n at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.spec.ts:30:24","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"failed","statusMessage":"Error: expect(locator).toHaveURL(expected)\n\nLocator: locator(':root')\nExpected pattern: /\\/login\\/confirmLogin/\nReceived string: \"\"\nCall log:\n - expect.toHaveURL with timeout 5000ms\n - waiting for locator(':root')\n","statusTrace":"Error: expect(locator).toHaveURL(expected)\n\nLocator: locator(':root')\nExpected pattern: /\\/login\\/confirmLogin/\nReceived string: \"\"\nCall log:\n - expect.toHaveURL with timeout 5000ms\n - waiting for locator(':root')\n\n at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.spec.ts:30:24","steps":[{"name":"Before Hooks","time":{"start":1750176582208,"stop":1750176584143,"duration":1935},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750176582211,"stop":1750176582981,"duration":770},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750176582212,"stop":1750176582980,"duration":768},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750176582981,"stop":1750176583743,"duration":762},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750176582982,"stop":1750176583741,"duration":759},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750176583743,"stop":1750176584143,"duration":400},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750176583744,"stop":1750176584143,"duration":399},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750176584148,"stop":1750176589307,"duration":5159},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Иван)","time":{"start":1750176589308,"stop":1750176591322,"duration":2014},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Тестов)","time":{"start":1750176591324,"stop":1750176592259,"duration":935},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Александрович)","time":{"start":1750176592260,"stop":1750176593178,"duration":918},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёное звание*').click","time":{"start":1750176593179,"stop":1750176593718,"duration":539},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Доцент\"i)","time":{"start":1750176593719,"stop":1750176595073,"duration":1354},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёная степень*').click","time":{"start":1750176595075,"stop":1750176595653,"duration":578},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Кандидат наук\"i)","time":{"start":1750176595654,"stop":1750176596570,"duration":916},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Преподаватель)","time":{"start":1750176596571,"stop":1750176597026,"duration":455},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(ЮФУ)","time":{"start":1750176597027,"stop":1750176599509,"duration":2482},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest15718@example.com)","time":{"start":1750176599510,"stop":1750176600191,"duration":681},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(+7987015718)","time":{"start":1750176600192,"stop":1750176604510,"duration":4318},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750176604511,"stop":1750176609411,"duration":4900},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750176609412,"stop":1750176610242,"duration":830},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750176610244,"stop":1750176614947,"duration":4703},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750176614951,"stop":1750176652183,"duration":37232},"status":"failed","statusMessage":"Error: expect(locator).toHaveURL(expected)\n\nLocator: locator(':root')\nExpected pattern: /\\/login\\/confirmLogin/\nReceived string: \"\"\nCall log:\n - expect.toHaveURL with timeout 5000ms\n - waiting for locator(':root')\n","statusTrace":"Error: expect(locator).toHaveURL(expected)\n\nLocator: locator(':root')\nExpected pattern: /\\/login\\/confirmLogin/\nReceived string: \"\"\nCall log:\n - expect.toHaveURL with timeout 5000ms\n - waiting for locator(':root')\n\n at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.spec.ts:30:24","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":true,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"_error-context-0","time":{"start":1750176652228,"stop":1750176652228,"duration":0},"status":"unknown","steps":[],"attachments":[{"uid":"20ac02439d479a74","name":"_error-context-0","source":"20ac02439d479a74.md","type":"text/markdown","size":2358}],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":1,"hasContent":true,"attachmentStep":true},{"name":"_error-context-1","time":{"start":1750176652228,"stop":1750176652228,"duration":0},"status":"unknown","steps":[],"attachments":[{"uid":"cebd349f86ba86b0","name":"_error-context-1","source":"cebd349f86ba86b0.md","type":"text/markdown","size":3911}],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":1,"hasContent":true,"attachmentStep":true},{"name":"After Hooks","time":{"start":1750176652166,"stop":1750176652221,"duration":55},"status":"failed","statusMessage":"Error: browserContext._wrapApiCall: Test ended.\nBrowser logs:\n\n /Users/vladsmykov/Library/Caches/ms-playwright/chromium-1169/chrome-mac/Chromium.app/Contents/MacOS/Chromium --disable-field-trial-config --disable-background-networking --disable-background-timer-throttling --disable-backgrounding-occluded-windows --disable-back-forward-cache --disable-breakpad --disable-client-side-phishing-detection --disable-component-extensions-with-background-pages --disable-component-update --no-default-browser-check --disable-default-apps --disable-dev-shm-usage --disable-extensions --disable-features=AcceptCHFrame,AutoExpandDetailsElement,AvoidUnnecessaryBeforeUnloadCheckSync,CertificateTransparencyComponentUpdater,DeferRendererTasksAfterInput,DestroyProfileOnBrowserClose,DialMediaRouteProvider,ExtensionManifestV2Disabled,GlobalMediaControls,HttpsUpgrades,ImprovedCookieControls,LazyFrameLoading,LensOverlay,MediaRouter,PaintHolding,ThirdPartyStoragePartitioning,Translate --allow-pre-commit-input --disable-hang-monitor --disable-ipc-flooding-protection --disable-popup-blocking --disable-prompt-on-repost --disable-renderer-backgrounding --force-color-profile=srgb --metrics-recording-only --no-first-run --enable-automation --password-store=basic --use-mock-keychain --no-service-autorun --export-tagged-pdf --disable-search-engine-choice-screen --unsafely-disable-devtools-self-xss-warnings --enable-use-zoom-for-dsf=false --no-sandbox --user-data-dir=/var/folders/lg/h2gsyjw52lg9sl4rjvlxq91w0000gn/T/playwright_chromiumdev_profile-ebxZKI --remote-debugging-pipe --no-startup-window\n pid=53578\n[pid=53578][err] 2025-06-17 19:09:43.952 Chromium[53578:11906463] +[IMKClient subclass]: chose IMKClient_Modern\n[pid=53578][err] 2025-06-17 19:09:43.953 Chromium[53578:11906463] +[IMKInputSession subclass]: chose IMKInputSession_Modern\n[pid=53578] ","statusTrace":"Error: browserContext._wrapApiCall: Test ended.\nBrowser logs:\n\n /Users/vladsmykov/Library/Caches/ms-playwright/chromium-1169/chrome-mac/Chromium.app/Contents/MacOS/Chromium --disable-field-trial-config --disable-background-networking --disable-background-timer-throttling --disable-backgrounding-occluded-windows --disable-back-forward-cache --disable-breakpad --disable-client-side-phishing-detection --disable-component-extensions-with-background-pages --disable-component-update --no-default-browser-check --disable-default-apps --disable-dev-shm-usage --disable-extensions --disable-features=AcceptCHFrame,AutoExpandDetailsElement,AvoidUnnecessaryBeforeUnloadCheckSync,CertificateTransparencyComponentUpdater,DeferRendererTasksAfterInput,DestroyProfileOnBrowserClose,DialMediaRouteProvider,ExtensionManifestV2Disabled,GlobalMediaControls,HttpsUpgrades,ImprovedCookieControls,LazyFrameLoading,LensOverlay,MediaRouter,PaintHolding,ThirdPartyStoragePartitioning,Translate --allow-pre-commit-input --disable-hang-monitor --disable-ipc-flooding-protection --disable-popup-blocking --disable-prompt-on-repost --disable-renderer-backgrounding --force-color-profile=srgb --metrics-recording-only --no-first-run --enable-automation --password-store=basic --use-mock-keychain --no-service-autorun --export-tagged-pdf --disable-search-engine-choice-screen --unsafely-disable-devtools-self-xss-warnings --enable-use-zoom-for-dsf=false --no-sandbox --user-data-dir=/var/folders/lg/h2gsyjw52lg9sl4rjvlxq91w0000gn/T/playwright_chromiumdev_profile-ebxZKI --remote-debugging-pipe --no-startup-window\n pid=53578\n[pid=53578][err] 2025-06-17 19:09:43.952 Chromium[53578:11906463] +[IMKClient subclass]: chose IMKClient_Modern\n[pid=53578][err] 2025-06-17 19:09:43.953 Chromium[53578:11906463] +[IMKInputSession subclass]: chose IMKInputSession_Modern\n[pid=53578] ","steps":[{"name":"fixture: page","time":{"start":1750176652169,"stop":1750176652169,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750176652170,"stop":1750176652170,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":true,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":28,"shouldDisplayMessage":false,"attachmentsCount":2,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.spec.ts > Позитивные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-53574-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.spec.ts"},{"name":"subSuite","value":"Позитивные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"22f8a179d5a337e8.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/731f29d77f45de06.json b/allure-report/data/test-cases/2318eb083d7e242a.json similarity index 91% rename from allure-report/data/test-cases/731f29d77f45de06.json rename to allure-report/data/test-cases/2318eb083d7e242a.json index 66a2ac7..b8a3976 100644 --- a/allure-report/data/test-cases/731f29d77f45de06.json +++ b/allure-report/data/test-cases/2318eb083d7e242a.json @@ -1 +1 @@ -{"uid":"731f29d77f45de06","name":"has title","fullName":"example.spec.ts:3:5","historyId":"3a2a809b453af4fd564578d1a27f3e45:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750084487580,"stop":1750084490628,"duration":3048},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084487579,"stop":1750084488228,"duration":649},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750084487585,"stop":1750084488053,"duration":468},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750084487589,"stop":1750084488053,"duration":464},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084488056,"stop":1750084488068,"duration":12},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084488057,"stop":1750084488067,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084488069,"stop":1750084488228,"duration":159},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084488071,"stop":1750084488227,"duration":156},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(https://playwright.dev/)","time":{"start":1750084488229,"stop":1750084491054,"duration":2825},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveTitle","time":{"start":1750084491058,"stop":1750084491085,"duration":27},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084491085,"stop":1750084491101,"duration":16},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084491086,"stop":1750084491086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084491086,"stop":1750084491086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > chromium > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"example.spec.ts"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4e6608570791e516","status":"passed","time":{"start":1750075545967,"stop":1750075547168,"duration":1201}}],"categories":[],"tags":[]},"source":"731f29d77f45de06.json","parameterValues":["chromium"]} \ No newline at end of file +{"uid":"2318eb083d7e242a","name":"has title","fullName":"example.spec.ts:3:5","historyId":"3a2a809b453af4fd564578d1a27f3e45:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750084487580,"stop":1750084490628,"duration":3048},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084487579,"stop":1750084488228,"duration":649},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750084487585,"stop":1750084488053,"duration":468},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750084487589,"stop":1750084488053,"duration":464},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084488056,"stop":1750084488068,"duration":12},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084488057,"stop":1750084488067,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084488069,"stop":1750084488228,"duration":159},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084488071,"stop":1750084488227,"duration":156},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(https://playwright.dev/)","time":{"start":1750084488229,"stop":1750084491054,"duration":2825},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveTitle","time":{"start":1750084491058,"stop":1750084491085,"duration":27},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084491085,"stop":1750084491101,"duration":16},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084491086,"stop":1750084491086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084491086,"stop":1750084491086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > chromium > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"example.spec.ts"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"2318eb083d7e242a.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2412675bc79a8b74.json b/allure-report/data/test-cases/2412675bc79a8b74.json new file mode 100644 index 0000000..e8a9805 --- /dev/null +++ b/allure-report/data/test-cases/2412675bc79a8b74.json @@ -0,0 +1 @@ +{"uid":"2412675bc79a8b74","name":"Слишком длинное название организации","fullName":"ui/registration/register.negative.spec.ts:48:7","historyId":"26486147b8778ca2341563049d2a3728:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750252690588,"stop":1750252695791,"duration":5203},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252690579,"stop":1750252694101,"duration":3522},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750252690585,"stop":1750252693223,"duration":2638},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750252690586,"stop":1750252693221,"duration":2635},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252693229,"stop":1750252693426,"duration":197},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252693232,"stop":1750252693425,"duration":193},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252693426,"stop":1750252694101,"duration":675},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252693427,"stop":1750252694100,"duration":673},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750252694103,"stop":1750252697904,"duration":3801},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Иван)","time":{"start":1750252697906,"stop":1750252697960,"duration":54},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Иванов)","time":{"start":1750252697960,"stop":1750252697968,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёное звание*').click","time":{"start":1750252697969,"stop":1750252698020,"duration":51},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Доцент\"i)","time":{"start":1750252698021,"stop":1750252698067,"duration":46},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёная степень*').click","time":{"start":1750252698068,"stop":1750252698150,"duration":82},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Кандидат наук\"i)","time":{"start":1750252698151,"stop":1750252698201,"duration":50},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Преподаватель)","time":{"start":1750252698202,"stop":1750252698209,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(ООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООО)","time":{"start":1750252698210,"stop":1750252698218,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(test1750252697904@example.com)","time":{"start":1750252698219,"stop":1750252698226,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(+79990682439)","time":{"start":1750252698226,"stop":1750252698233,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123)","time":{"start":1750252698234,"stop":1750252698240,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123)","time":{"start":1750252698240,"stop":1750252698247,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750252698247,"stop":1750252698299,"duration":52},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252698301,"stop":1750252698417,"duration":116},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252698417,"stop":1750252698430,"duration":13},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252698417,"stop":1750252698417,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252698417,"stop":1750252698417,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":25,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-57743-worker-1"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"2412675bc79a8b74.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/243bc97ccd4569b0.json b/allure-report/data/test-cases/243bc97ccd4569b0.json new file mode 100644 index 0000000..35b2e8f --- /dev/null +++ b/allure-report/data/test-cases/243bc97ccd4569b0.json @@ -0,0 +1 @@ +{"uid":"243bc97ccd4569b0","name":"Слишком длинное название организации","fullName":"ui/registration/register.negative.spec.ts:48:7","historyId":"26486147b8778ca2341563049d2a3728:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750252762242,"stop":1750252780416,"duration":18174},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252762242,"stop":1750252763169,"duration":927},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252762243,"stop":1750252762933,"duration":690},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252762243,"stop":1750252762932,"duration":689},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252762933,"stop":1750252763169,"duration":236},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252762934,"stop":1750252763169,"duration":235},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750252763170,"stop":1750252765532,"duration":2362},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Иван)","time":{"start":1750252765533,"stop":1750252766609,"duration":1076},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Иванов)","time":{"start":1750252766610,"stop":1750252767272,"duration":662},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёное звание*').click","time":{"start":1750252767273,"stop":1750252767831,"duration":558},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Доцент\"i)","time":{"start":1750252767832,"stop":1750252769444,"duration":1612},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёная степень*').click","time":{"start":1750252769446,"stop":1750252770595,"duration":1149},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Кандидат наук\"i)","time":{"start":1750252770598,"stop":1750252772576,"duration":1978},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Преподаватель)","time":{"start":1750252772577,"stop":1750252773338,"duration":761},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(ООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООО)","time":{"start":1750252773340,"stop":1750252774338,"duration":998},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(test1750252765532@example.com)","time":{"start":1750252774340,"stop":1750252775369,"duration":1029},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(+79990215242)","time":{"start":1750252775370,"stop":1750252776417,"duration":1047},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123)","time":{"start":1750252776419,"stop":1750252777556,"duration":1137},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123)","time":{"start":1750252777557,"stop":1750252778504,"duration":947},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750252778505,"stop":1750252779348,"duration":843},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252779349,"stop":1750252780388,"duration":1039},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252780388,"stop":1750252780418,"duration":30},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252780389,"stop":1750252780389,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252780389,"stop":1750252780389,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-57952-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"243bc97ccd4569b0.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/24c33abc8e58da3.json b/allure-report/data/test-cases/24c33abc8e58da3.json new file mode 100644 index 0000000..b6b3aee --- /dev/null +++ b/allure-report/data/test-cases/24c33abc8e58da3.json @@ -0,0 +1 @@ +{"uid":"24c33abc8e58da3","name":"Некорректный новый пароль","fullName":"ui/recovery/recover-negative.spec.ts:34:7","historyId":"18246cf63350a71f5b46012e257bafcf:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750084501747,"stop":1750084503402,"duration":1655},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084501746,"stop":1750084501925,"duration":179},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084501747,"stop":1750084501757,"duration":10},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084501749,"stop":1750084501756,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084501757,"stop":1750084501925,"duration":168},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084501757,"stop":1750084501925,"duration":168},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750084501927,"stop":1750084502885,"duration":958},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084502886,"stop":1750084502923,"duration":37},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750084502924,"stop":1750084503005,"duration":81},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750084503007,"stop":1750084503011,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084503012,"stop":1750084503070,"duration":58},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084503070,"stop":1750084503078,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084503079,"stop":1750084503088,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084503088,"stop":1750084503111,"duration":23},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084503111,"stop":1750084503131,"duration":20},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084503132,"stop":1750084503146,"duration":14},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084503147,"stop":1750084503211,"duration":64},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(123)","time":{"start":1750084503211,"stop":1750084503307,"duration":96},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(123)","time":{"start":1750084503307,"stop":1750084503319,"duration":12},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084503319,"stop":1750084503373,"duration":54},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084503375,"stop":1750084503384,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084503384,"stop":1750084503404,"duration":20},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084503385,"stop":1750084503385,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084503385,"stop":1750084503385,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-1"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"24c33abc8e58da3.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/24d0761a6935af7f.json b/allure-report/data/test-cases/24d0761a6935af7f.json new file mode 100644 index 0000000..f3ec474 --- /dev/null +++ b/allure-report/data/test-cases/24d0761a6935af7f.json @@ -0,0 +1 @@ +{"uid":"24d0761a6935af7f","name":"Только email без пароля","fullName":"ui/login/login.negative.spec.ts:37:7","historyId":"8c67bb2f4fb916157fb6191bbb5e4267:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750253591157,"stop":1750253597964,"duration":6807},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253591157,"stop":1750253591339,"duration":182},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253591157,"stop":1750253591165,"duration":8},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253591158,"stop":1750253591160,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253591165,"stop":1750253591339,"duration":174},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253591166,"stop":1750253591339,"duration":173},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750253591340,"stop":1750253597824,"duration":6484},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750253597826,"stop":1750253597856,"duration":30},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750253597857,"stop":1750253597870,"duration":13},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750253597871,"stop":1750253597926,"duration":55},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253597926,"stop":1750253597933,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253597933,"stop":1750253597965,"duration":32},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253597933,"stop":1750253597933,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253597933,"stop":1750253597933,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"353f54e5e0ae27dd","status":"passed","time":{"start":1750252841680,"stop":1750252843659,"duration":1979}},{"uid":"53e59e459b5cddf9","status":"passed","time":{"start":1750084499301,"stop":1750084500455,"duration":1154}},{"uid":"3af86631ead6d924","status":"passed","time":{"start":1750075555728,"stop":1750075557066,"duration":1338}}],"categories":[],"tags":[]},"source":"24d0761a6935af7f.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2508c669aa0d4591.json b/allure-report/data/test-cases/2508c669aa0d4591.json new file mode 100644 index 0000000..3e76d72 --- /dev/null +++ b/allure-report/data/test-cases/2508c669aa0d4591.json @@ -0,0 +1 @@ +{"uid":"2508c669aa0d4591","name":"get started link","fullName":"example.spec.ts:10:5","historyId":"37e4aa066a5f6eac2e4d3b98a2ed98a7:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750252852203,"stop":1750252854182,"duration":1979},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252852204,"stop":1750252853200,"duration":996},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750252852207,"stop":1750252852582,"duration":375},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750252852208,"stop":1750252852582,"duration":374},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252852583,"stop":1750252852658,"duration":75},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252852584,"stop":1750252852657,"duration":73},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252852658,"stop":1750252853199,"duration":541},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252852659,"stop":1750252853199,"duration":540},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(https://playwright.dev/)","time":{"start":1750252853201,"stop":1750252854338,"duration":1137},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('link', { name: 'Get started' }).click","time":{"start":1750252854341,"stop":1750252854396,"duration":55},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252854397,"stop":1750252854548,"duration":151},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252854549,"stop":1750252854562,"duration":13},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252854549,"stop":1750252854549,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252854549,"stop":1750252854549,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > webkit > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-1"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"example.spec.ts"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"2508c669aa0d4591.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/253a7abc2208994a.json b/allure-report/data/test-cases/253a7abc2208994a.json new file mode 100644 index 0000000..320c2db --- /dev/null +++ b/allure-report/data/test-cases/253a7abc2208994a.json @@ -0,0 +1 @@ +{"uid":"253a7abc2208994a","name":"Несуществующий email","fullName":"ui/login/login.negative.spec.ts:17:7","historyId":"69b9236bee03ff0034bfbd5addc25f93:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750252810864,"stop":1750252811923,"duration":1059},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252810864,"stop":1750252810905,"duration":41},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252810864,"stop":1750252810866,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252810865,"stop":1750252810866,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252810866,"stop":1750252810905,"duration":39},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252810867,"stop":1750252810905,"duration":38},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750252810906,"stop":1750252811635,"duration":729},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(wrong@example.com)","time":{"start":1750252811635,"stop":1750252811699,"duration":64},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(anyPassword123)","time":{"start":1750252811704,"stop":1750252811766,"duration":62},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750252811767,"stop":1750252811812,"duration":45},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252811812,"stop":1750252811919,"duration":107},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252811919,"stop":1750252811924,"duration":5},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252811919,"stop":1750252811919,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252811919,"stop":1750252811919,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"253a7abc2208994a.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/259eeae8292f9914.json b/allure-report/data/test-cases/259eeae8292f9914.json new file mode 100644 index 0000000..9988739 --- /dev/null +++ b/allure-report/data/test-cases/259eeae8292f9914.json @@ -0,0 +1 @@ +{"uid":"259eeae8292f9914","name":"Пользователь должен успешно залогиниться с валидными данными","fullName":"ui/login/login.spec.ts:7:7","historyId":"92a5ca35180a4cbe902714b987a6bf44:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750075564763,"stop":1750075565949,"duration":1186},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075564763,"stop":1750075564892,"duration":129},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075564764,"stop":1750075564766,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075564764,"stop":1750075564766,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075564767,"stop":1750075564892,"duration":125},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075564767,"stop":1750075564892,"duration":125},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075564892,"stop":1750075565682,"duration":790},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075565683,"stop":1750075565741,"duration":58},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750075565743,"stop":1750075565774,"duration":31},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750075565776,"stop":1750075565835,"duration":59},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750075565836,"stop":1750075565944,"duration":108},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075565944,"stop":1750075565947,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075565947,"stop":1750075565951,"duration":4},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075565947,"stop":1750075565947,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075565947,"stop":1750075565947,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.spec.ts > Авторизация пользователя"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-3"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.spec.ts"},{"name":"subSuite","value":"Авторизация пользователя"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"259eeae8292f9914.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e8ebfdb5511bffc3.json b/allure-report/data/test-cases/25bf62a9fdef3ea2.json similarity index 91% rename from allure-report/data/test-cases/e8ebfdb5511bffc3.json rename to allure-report/data/test-cases/25bf62a9fdef3ea2.json index c0cf31b..8d2fd0f 100644 --- a/allure-report/data/test-cases/e8ebfdb5511bffc3.json +++ b/allure-report/data/test-cases/25bf62a9fdef3ea2.json @@ -1 +1 @@ -{"uid":"e8ebfdb5511bffc3","name":"Некорректный email (формат)","fullName":"ui/recovery/recover-negative.spec.ts:7:7","historyId":"d776d5fb9c918a79827aea417bdc449a:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750084508679,"stop":1750084509441,"duration":762},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084508679,"stop":1750084508817,"duration":138},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084508681,"stop":1750084508683,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084508681,"stop":1750084508683,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084508684,"stop":1750084508817,"duration":133},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084508684,"stop":1750084508817,"duration":133},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750084508819,"stop":1750084509305,"duration":486},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(invalid-email)","time":{"start":1750084509307,"stop":1750084509377,"duration":70},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750084509377,"stop":1750084509436,"duration":59},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084509436,"stop":1750084509441,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084509441,"stop":1750084509444,"duration":3},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084509441,"stop":1750084509441,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084509442,"stop":1750084509442,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-0"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6c4df356a89dd9d3","status":"passed","time":{"start":1750075565746,"stop":1750075567592,"duration":1846}}],"categories":[],"tags":[]},"source":"e8ebfdb5511bffc3.json","parameterValues":["webkit"]} \ No newline at end of file +{"uid":"25bf62a9fdef3ea2","name":"Некорректный email (формат)","fullName":"ui/recovery/recover-negative.spec.ts:7:7","historyId":"d776d5fb9c918a79827aea417bdc449a:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750084508679,"stop":1750084509441,"duration":762},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084508679,"stop":1750084508817,"duration":138},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084508681,"stop":1750084508683,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084508681,"stop":1750084508683,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084508684,"stop":1750084508817,"duration":133},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084508684,"stop":1750084508817,"duration":133},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750084508819,"stop":1750084509305,"duration":486},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(invalid-email)","time":{"start":1750084509307,"stop":1750084509377,"duration":70},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750084509377,"stop":1750084509436,"duration":59},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084509436,"stop":1750084509441,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084509441,"stop":1750084509444,"duration":3},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084509441,"stop":1750084509441,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084509442,"stop":1750084509442,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-0"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"25bf62a9fdef3ea2.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/25c5b161e06d93d9.json b/allure-report/data/test-cases/25c5b161e06d93d9.json new file mode 100644 index 0000000..697946a --- /dev/null +++ b/allure-report/data/test-cases/25c5b161e06d93d9.json @@ -0,0 +1 @@ +{"uid":"25c5b161e06d93d9","name":"Некорректный email формат","fullName":"ui/registration/register.negative.spec.ts:28:7","historyId":"de8c598c53adc6e2133478f1b9141597:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750253604966,"stop":1750253611362,"duration":6396},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":true,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253604966,"stop":1750253605142,"duration":176},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253604967,"stop":1750253604972,"duration":5},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253604967,"stop":1750253604970,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253604972,"stop":1750253605142,"duration":170},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253604972,"stop":1750253605142,"duration":170},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750253605143,"stop":1750253611212,"duration":6069},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(invalid-email)","time":{"start":1750253611214,"stop":1750253611255,"duration":41},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750253611256,"stop":1750253611314,"duration":58},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253611315,"stop":1750253611327,"duration":12},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253611327,"stop":1750253611364,"duration":37},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253611327,"stop":1750253611327,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253611327,"stop":1750253611327,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c185014f0ec6ca57","status":"passed","time":{"start":1750252849516,"stop":1750252851246,"duration":1730}},{"uid":"94ebae2625e07d27","status":"failed","statusDetails":"Error: page.goto: Target page, context or browser has been closed\nCall log:\n - navigating to \"https://ssas.dev.rdcenter.ru/login/registration\", waiting until \"load\"\n","time":{"start":1750252791920,"stop":1750252795300,"duration":3380}}],"categories":[],"tags":[]},"source":"25c5b161e06d93d9.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/268082d8261ccc76.json b/allure-report/data/test-cases/268082d8261ccc76.json new file mode 100644 index 0000000..567044d --- /dev/null +++ b/allure-report/data/test-cases/268082d8261ccc76.json @@ -0,0 +1 @@ +{"uid":"268082d8261ccc76","name":"Некорректный новый пароль","fullName":"ui/recovery/recover-negative.spec.ts:34:7","historyId":"18246cf63350a71f5b46012e257bafcf:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750253599892,"stop":1750253602241,"duration":2349},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253599892,"stop":1750253600049,"duration":157},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253599893,"stop":1750253599897,"duration":4},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253599893,"stop":1750253599895,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253599897,"stop":1750253600049,"duration":152},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253599897,"stop":1750253600049,"duration":152},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750253600050,"stop":1750253601772,"duration":1722},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750253601773,"stop":1750253601801,"duration":28},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750253601802,"stop":1750253601872,"duration":70},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750253601873,"stop":1750253601877,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253601878,"stop":1750253601962,"duration":84},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253601962,"stop":1750253601972,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253601972,"stop":1750253601979,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253601980,"stop":1750253601991,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253601992,"stop":1750253601999,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253601999,"stop":1750253602007,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750253602008,"stop":1750253602059,"duration":51},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(123)","time":{"start":1750253602059,"stop":1750253602146,"duration":87},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(123)","time":{"start":1750253602147,"stop":1750253602156,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750253602157,"stop":1750253602207,"duration":50},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253602208,"stop":1750253602213,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253602213,"stop":1750253602243,"duration":30},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253602214,"stop":1750253602214,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253602214,"stop":1750253602214,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"19a70ab8d1df0edd","status":"passed","time":{"start":1750252845679,"stop":1750252847817,"duration":2138}},{"uid":"24c33abc8e58da3","status":"passed","time":{"start":1750084501747,"stop":1750084503402,"duration":1655}},{"uid":"381e47ee9a2f99a7","status":"passed","time":{"start":1750075558416,"stop":1750075560205,"duration":1789}}],"categories":[],"tags":[]},"source":"268082d8261ccc76.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/26ac51230d86a7d3.json b/allure-report/data/test-cases/26ac51230d86a7d3.json new file mode 100644 index 0000000..882ce1b --- /dev/null +++ b/allure-report/data/test-cases/26ac51230d86a7d3.json @@ -0,0 +1 @@ +{"uid":"26ac51230d86a7d3","name":"Переход по ссылке \"Забыли пароль?\"","fullName":"ui/login/login.link.spec.ts:6:5","historyId":"91fcabcb669557e4ddb559c077420e45:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750252827699,"stop":1750252840712,"duration":13013},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252827702,"stop":1750252829519,"duration":1817},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750252827708,"stop":1750252828444,"duration":736},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750252827712,"stop":1750252828444,"duration":732},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252828446,"stop":1750252828650,"duration":204},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252828447,"stop":1750252828646,"duration":199},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252828650,"stop":1750252829519,"duration":869},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252828656,"stop":1750252829518,"duration":862},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750252829523,"stop":1750252841345,"duration":11822},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByText('Забыли пароль?').click","time":{"start":1750252841348,"stop":1750252841422,"duration":74},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750252841424,"stop":1750252841437,"duration":13},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252841438,"stop":1750252841443,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252841443,"stop":1750252841456,"duration":13},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252841444,"stop":1750252841444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252841444,"stop":1750252841444,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"26ac51230d86a7d3.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/284b1f02e0a74128.json b/allure-report/data/test-cases/284b1f02e0a74128.json new file mode 100644 index 0000000..3a943e1 --- /dev/null +++ b/allure-report/data/test-cases/284b1f02e0a74128.json @@ -0,0 +1 @@ +{"uid":"284b1f02e0a74128","name":"Только email без пароля","fullName":"ui/login/login.negative.spec.ts:37:7","historyId":"8c67bb2f4fb916157fb6191bbb5e4267:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253478767,"stop":1750253480532,"duration":1765},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253478767,"stop":1750253478803,"duration":36},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253478767,"stop":1750253478770,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253478768,"stop":1750253478769,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253478770,"stop":1750253478803,"duration":33},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253478770,"stop":1750253478803,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750253478803,"stop":1750253479633,"duration":830},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750253479634,"stop":1750253479652,"duration":18},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750253479652,"stop":1750253479694,"duration":42},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750253479695,"stop":1750253479738,"duration":43},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253479738,"stop":1750253479743,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253479743,"stop":1750253480533,"duration":790},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253479743,"stop":1750253479743,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253479744,"stop":1750253479744,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-1"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"284b1f02e0a74128.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2981b57719f478ef.json b/allure-report/data/test-cases/2981b57719f478ef.json new file mode 100644 index 0000000..8c2ec61 --- /dev/null +++ b/allure-report/data/test-cases/2981b57719f478ef.json @@ -0,0 +1 @@ +{"uid":"2981b57719f478ef","name":"Несуществующий email","fullName":"ui/recovery/recover-negative.spec.ts:15:7","historyId":"c118be77fa2af6f0e0052ec7489ba66c:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750253627038,"stop":1750253629360,"duration":2322},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253627038,"stop":1750253627213,"duration":175},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253627041,"stop":1750253627066,"duration":25},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253627042,"stop":1750253627052,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253627067,"stop":1750253627213,"duration":146},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253627068,"stop":1750253627213,"duration":145},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750253627215,"stop":1750253628841,"duration":1626},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(nobody@example.com)","time":{"start":1750253628842,"stop":1750253628890,"duration":48},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750253628892,"stop":1750253629163,"duration":271},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253629164,"stop":1750253629288,"duration":124},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253629288,"stop":1750253629364,"duration":76},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253629289,"stop":1750253629289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253629289,"stop":1750253629289,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-1"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e9161570480d5e32","status":"passed","time":{"start":1750252858950,"stop":1750252860494,"duration":1544}},{"uid":"5731ca0d5b2c3cb0","status":"passed","time":{"start":1750084508872,"stop":1750084509760,"duration":888}},{"uid":"8e52e5503dbf32b3","status":"passed","time":{"start":1750075565958,"stop":1750075567080,"duration":1122}}],"categories":[],"tags":[]},"source":"2981b57719f478ef.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2b89ce8c9b1ff011.json b/allure-report/data/test-cases/2b89ce8c9b1ff011.json new file mode 100644 index 0000000..d151363 --- /dev/null +++ b/allure-report/data/test-cases/2b89ce8c9b1ff011.json @@ -0,0 +1 @@ +{"uid":"2b89ce8c9b1ff011","name":"Переход по ссылке \"Зарегистрируйтесь\"","fullName":"ui/login/login.link.spec.ts:15:5","historyId":"62db9603623bba26b6305edb541ef4fa:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253539579,"stop":1750253541710,"duration":2131},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253539575,"stop":1750253540163,"duration":588},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750253539578,"stop":1750253539891,"duration":313},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750253539580,"stop":1750253539891,"duration":311},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253539894,"stop":1750253539957,"duration":63},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253539896,"stop":1750253539931,"duration":35},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253539958,"stop":1750253540163,"duration":205},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253539958,"stop":1750253540163,"duration":205},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750253540168,"stop":1750253541193,"duration":1025},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByText('Зарегистрируйтесь').click","time":{"start":1750253541209,"stop":1750253541366,"duration":157},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750253541367,"stop":1750253541375,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253541376,"stop":1750253541380,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253541380,"stop":1750253542022,"duration":642},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253541381,"stop":1750253541381,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253541381,"stop":1750253541381,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5b89479a48d172ab","status":"passed","time":{"start":1750253470949,"stop":1750253477898,"duration":6949}},{"uid":"b91a2a6632c62b45","status":"passed","time":{"start":1750252808952,"stop":1750252810556,"duration":1604}},{"uid":"f2cbbc5b808899ed","status":"passed","time":{"start":1750084487577,"stop":1750084488773,"duration":1196}},{"uid":"9f4a0fc97efc2aa","status":"passed","time":{"start":1750075545992,"stop":1750075547267,"duration":1275}}],"categories":[],"tags":[]},"source":"2b89ce8c9b1ff011.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2d1faaf3f86c6c4b.json b/allure-report/data/test-cases/2d1faaf3f86c6c4b.json new file mode 100644 index 0000000..c7fe7c8 --- /dev/null +++ b/allure-report/data/test-cases/2d1faaf3f86c6c4b.json @@ -0,0 +1 @@ +{"uid":"2d1faaf3f86c6c4b","name":"Некорректное имя и фамилия (слишком длинные)","fullName":"ui/registration/register.negative.spec.ts:16:7","historyId":"7134a02a04b606099de5c920fb62990a:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750252847933,"stop":1750252851077,"duration":3144},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252847935,"stop":1750252848121,"duration":186},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252847937,"stop":1750252847955,"duration":18},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252847938,"stop":1750252847954,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252847955,"stop":1750252848121,"duration":166},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252847956,"stop":1750252848121,"duration":165},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750252848122,"stop":1750252850918,"duration":2796},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(ААААААААААААААААААААААААААААААААААААААААААААААААААА)","time":{"start":1750252850920,"stop":1750252850949,"duration":29},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(БББББББББББББББББББББББББББББББББББББББББББББББББББ)","time":{"start":1750252850950,"stop":1750252850957,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750252850957,"stop":1750252851035,"duration":78},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252851035,"stop":1750252851040,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252851040,"stop":1750252851070,"duration":30},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252851070,"stop":1750252851082,"duration":12},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252851070,"stop":1750252851070,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252851070,"stop":1750252851070,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-3"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"2d1faaf3f86c6c4b.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2d652d7b26ea781f.json b/allure-report/data/test-cases/2d652d7b26ea781f.json new file mode 100644 index 0000000..d9b6780 --- /dev/null +++ b/allure-report/data/test-cases/2d652d7b26ea781f.json @@ -0,0 +1 @@ +{"uid":"2d652d7b26ea781f","name":"Неверный код подтверждения","fullName":"ui/recovery/recover-negative.spec.ts:23:7","historyId":"31f03826b2a8da254be42b2d49bc35f3:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750252859258,"stop":1750252860871,"duration":1613},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252859258,"stop":1750252859386,"duration":128},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252859258,"stop":1750252859261,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252859259,"stop":1750252859261,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252859261,"stop":1750252859386,"duration":125},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252859262,"stop":1750252859386,"duration":124},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750252859389,"stop":1750252860215,"duration":826},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750252860216,"stop":1750252860262,"duration":46},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750252860263,"stop":1750252860538,"duration":275},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750252860539,"stop":1750252860645,"duration":106},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750252860646,"stop":1750252860649,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(6)","time":{"start":1750252860649,"stop":1750252860657,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(5)","time":{"start":1750252860658,"stop":1750252860667,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(4)","time":{"start":1750252860667,"stop":1750252860671,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(3)","time":{"start":1750252860671,"stop":1750252860674,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(2)","time":{"start":1750252860675,"stop":1750252860680,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(1)","time":{"start":1750252860680,"stop":1750252860684,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750252860684,"stop":1750252860756,"duration":72},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252860757,"stop":1750252860864,"duration":107},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252860864,"stop":1750252860873,"duration":9},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252860864,"stop":1750252860864,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252860865,"stop":1750252860865,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":21,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-2"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"2d652d7b26ea781f.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3bba1028b851bbbc.json b/allure-report/data/test-cases/2d67f9006c444cfa.json similarity index 93% rename from allure-report/data/test-cases/3bba1028b851bbbc.json rename to allure-report/data/test-cases/2d67f9006c444cfa.json index c5f6f99..bf77792 100644 --- a/allure-report/data/test-cases/3bba1028b851bbbc.json +++ b/allure-report/data/test-cases/2d67f9006c444cfa.json @@ -1 +1 @@ -{"uid":"3bba1028b851bbbc","name":"Переключатель видимости пароля показывает и скрывает ввод","fullName":"ui/login/login.ui.spec.ts:7:7","historyId":"b1726395bd827a3a21fe3c829a098be4:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750084500466,"stop":1750084501581,"duration":1115},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084500467,"stop":1750084500630,"duration":163},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084500468,"stop":1750084500476,"duration":8},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084500469,"stop":1750084500475,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084500476,"stop":1750084500630,"duration":154},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084500476,"stop":1750084500630,"duration":154},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084500630,"stop":1750084501359,"duration":729},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750084501360,"stop":1750084501394,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750084501395,"stop":1750084501406,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750084501407,"stop":1750084501407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByAltText('показать пароль').click","time":{"start":1750084501408,"stop":1750084501499,"duration":91},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750084501499,"stop":1750084501512,"duration":13},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750084501513,"stop":1750084501513,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByAltText('показать пароль').click","time":{"start":1750084501514,"stop":1750084501572,"duration":58},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750084501572,"stop":1750084501574,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750084501575,"stop":1750084501575,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084501575,"stop":1750084501584,"duration":9},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084501575,"stop":1750084501575,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084501575,"stop":1750084501575,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":18,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.ui.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.ui.spec.ts > UI сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.ui.spec.ts"},{"name":"subSuite","value":"UI сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f5fd1970016cd210","status":"passed","time":{"start":1750075557078,"stop":1750075558320,"duration":1242}}],"categories":[],"tags":[]},"source":"3bba1028b851bbbc.json","parameterValues":["firefox"]} \ No newline at end of file +{"uid":"2d67f9006c444cfa","name":"Переключатель видимости пароля показывает и скрывает ввод","fullName":"ui/login/login.ui.spec.ts:7:7","historyId":"b1726395bd827a3a21fe3c829a098be4:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750084500466,"stop":1750084501581,"duration":1115},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084500467,"stop":1750084500630,"duration":163},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084500468,"stop":1750084500476,"duration":8},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084500469,"stop":1750084500475,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084500476,"stop":1750084500630,"duration":154},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084500476,"stop":1750084500630,"duration":154},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084500630,"stop":1750084501359,"duration":729},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750084501360,"stop":1750084501394,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750084501395,"stop":1750084501406,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750084501407,"stop":1750084501407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByAltText('показать пароль').click","time":{"start":1750084501408,"stop":1750084501499,"duration":91},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750084501499,"stop":1750084501512,"duration":13},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750084501513,"stop":1750084501513,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByAltText('показать пароль').click","time":{"start":1750084501514,"stop":1750084501572,"duration":58},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750084501572,"stop":1750084501574,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750084501575,"stop":1750084501575,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084501575,"stop":1750084501584,"duration":9},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084501575,"stop":1750084501575,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084501575,"stop":1750084501575,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":18,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.ui.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.ui.spec.ts > UI сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.ui.spec.ts"},{"name":"subSuite","value":"UI сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"2d67f9006c444cfa.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2d6e81b71171ace1.json b/allure-report/data/test-cases/2d6e81b71171ace1.json new file mode 100644 index 0000000..205e22e --- /dev/null +++ b/allure-report/data/test-cases/2d6e81b71171ace1.json @@ -0,0 +1 @@ +{"uid":"2d6e81b71171ace1","name":"Некорректный email (формат)","fullName":"ui/recovery/recover-negative.spec.ts:7:7","historyId":"d776d5fb9c918a79827aea417bdc449a:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750253598459,"stop":1750253600776,"duration":2317},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253598459,"stop":1750253598659,"duration":200},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253598460,"stop":1750253598466,"duration":6},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253598460,"stop":1750253598463,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253598466,"stop":1750253598659,"duration":193},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253598467,"stop":1750253598659,"duration":192},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750253598660,"stop":1750253600660,"duration":2000},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(invalid-email)","time":{"start":1750253600661,"stop":1750253600689,"duration":28},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750253600690,"stop":1750253600743,"duration":53},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253600743,"stop":1750253600752,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253600752,"stop":1750253600778,"duration":26},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253600752,"stop":1750253600752,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253600752,"stop":1750253600752,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-1"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ec745f5324fbe651","status":"passed","time":{"start":1750252843942,"stop":1750252845848,"duration":1906}},{"uid":"d44d54d4fba10f7b","status":"passed","time":{"start":1750084501326,"stop":1750084502338,"duration":1012}},{"uid":"1fddb2fa0fdd9389","status":"passed","time":{"start":1750075557377,"stop":1750075558616,"duration":1239}}],"categories":[],"tags":[]},"source":"2d6e81b71171ace1.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2e4ecb28b0379e48.json b/allure-report/data/test-cases/2e4ecb28b0379e48.json new file mode 100644 index 0000000..10ee9d1 --- /dev/null +++ b/allure-report/data/test-cases/2e4ecb28b0379e48.json @@ -0,0 +1 @@ +{"uid":"2e4ecb28b0379e48","name":"Некорректный email формат","fullName":"ui/registration/register.negative.spec.ts:28:7","historyId":"de8c598c53adc6e2133478f1b9141597:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750252824693,"stop":1750252825713,"duration":1020},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252824693,"stop":1750252824742,"duration":49},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252824693,"stop":1750252824698,"duration":5},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252824694,"stop":1750252824697,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252824698,"stop":1750252824742,"duration":44},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252824698,"stop":1750252824742,"duration":44},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750252824743,"stop":1750252825615,"duration":872},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(invalid-email)","time":{"start":1750252825616,"stop":1750252825668,"duration":52},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750252825669,"stop":1750252825707,"duration":38},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252825708,"stop":1750252825710,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252825711,"stop":1750252825714,"duration":3},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252825711,"stop":1750252825711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252825711,"stop":1750252825711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"2e4ecb28b0379e48.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f5fd1970016cd210.json b/allure-report/data/test-cases/2e7cc0fca9db6e6d.json similarity index 97% rename from allure-report/data/test-cases/f5fd1970016cd210.json rename to allure-report/data/test-cases/2e7cc0fca9db6e6d.json index 3367dc1..39a3b11 100644 --- a/allure-report/data/test-cases/f5fd1970016cd210.json +++ b/allure-report/data/test-cases/2e7cc0fca9db6e6d.json @@ -1 +1 @@ -{"uid":"f5fd1970016cd210","name":"Переключатель видимости пароля показывает и скрывает ввод","fullName":"ui/login/login.ui.spec.ts:7:7","historyId":"b1726395bd827a3a21fe3c829a098be4:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750075557078,"stop":1750075558320,"duration":1242},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075557079,"stop":1750075557307,"duration":228},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075557087,"stop":1750075557106,"duration":19},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075557088,"stop":1750075557106,"duration":18},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075557106,"stop":1750075557306,"duration":200},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075557107,"stop":1750075557306,"duration":199},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075557308,"stop":1750075558109,"duration":801},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750075558113,"stop":1750075558170,"duration":57},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750075558170,"stop":1750075558173,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750075558175,"stop":1750075558178,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByAltText('показать пароль').click","time":{"start":1750075558179,"stop":1750075558245,"duration":66},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750075558245,"stop":1750075558248,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750075558249,"stop":1750075558250,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByAltText('показать пароль').click","time":{"start":1750075558250,"stop":1750075558305,"duration":55},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750075558306,"stop":1750075558307,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750075558308,"stop":1750075558308,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075558308,"stop":1750075558326,"duration":18},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075558308,"stop":1750075558308,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075558308,"stop":1750075558308,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":18,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.ui.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.ui.spec.ts > UI сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-1"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.ui.spec.ts"},{"name":"subSuite","value":"UI сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"f5fd1970016cd210.json","parameterValues":["firefox"]} \ No newline at end of file +{"uid":"2e7cc0fca9db6e6d","name":"Переключатель видимости пароля показывает и скрывает ввод","fullName":"ui/login/login.ui.spec.ts:7:7","historyId":"b1726395bd827a3a21fe3c829a098be4:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750075557078,"stop":1750075558320,"duration":1242},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075557079,"stop":1750075557307,"duration":228},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075557087,"stop":1750075557106,"duration":19},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075557088,"stop":1750075557106,"duration":18},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075557106,"stop":1750075557306,"duration":200},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075557107,"stop":1750075557306,"duration":199},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075557308,"stop":1750075558109,"duration":801},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750075558113,"stop":1750075558170,"duration":57},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750075558170,"stop":1750075558173,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750075558175,"stop":1750075558178,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByAltText('показать пароль').click","time":{"start":1750075558179,"stop":1750075558245,"duration":66},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750075558245,"stop":1750075558248,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750075558249,"stop":1750075558250,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByAltText('показать пароль').click","time":{"start":1750075558250,"stop":1750075558305,"duration":55},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750075558306,"stop":1750075558307,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750075558308,"stop":1750075558308,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075558308,"stop":1750075558326,"duration":18},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075558308,"stop":1750075558308,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075558308,"stop":1750075558308,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":18,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.ui.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.ui.spec.ts > UI сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-1"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.ui.spec.ts"},{"name":"subSuite","value":"UI сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"2e7cc0fca9db6e6d.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2f8af4d67d869f1.json b/allure-report/data/test-cases/2f8af4d67d869f1.json deleted file mode 100644 index c0ab834..0000000 --- a/allure-report/data/test-cases/2f8af4d67d869f1.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"2f8af4d67d869f1","name":"Переключатель видимости пароля показывает и скрывает ввод","fullName":"ui/login/login.ui.spec.ts:7:7","historyId":"b1726395bd827a3a21fe3c829a098be4:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750084508352,"stop":1750084509225,"duration":873},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084508352,"stop":1750084508464,"duration":112},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084508353,"stop":1750084508355,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084508353,"stop":1750084508355,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084508355,"stop":1750084508464,"duration":109},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084508355,"stop":1750084508464,"duration":109},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084508465,"stop":1750084509013,"duration":548},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750084509014,"stop":1750084509080,"duration":66},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750084509081,"stop":1750084509086,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750084509087,"stop":1750084509093,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByAltText('показать пароль').click","time":{"start":1750084509094,"stop":1750084509153,"duration":59},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750084509154,"stop":1750084509163,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750084509164,"stop":1750084509164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByAltText('показать пароль').click","time":{"start":1750084509164,"stop":1750084509217,"duration":53},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750084509218,"stop":1750084509219,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750084509220,"stop":1750084509221,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084509220,"stop":1750084509227,"duration":7},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084509220,"stop":1750084509220,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084509220,"stop":1750084509220,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":18,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.ui.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.ui.spec.ts > UI сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-1"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.ui.spec.ts"},{"name":"subSuite","value":"UI сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9056a644468a3e4d","status":"passed","time":{"start":1750075565020,"stop":1750075565962,"duration":942}}],"categories":[],"tags":[]},"source":"2f8af4d67d869f1.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2fa3e47e2c278a2f.json b/allure-report/data/test-cases/2fa3e47e2c278a2f.json new file mode 100644 index 0000000..a5e237f --- /dev/null +++ b/allure-report/data/test-cases/2fa3e47e2c278a2f.json @@ -0,0 +1 @@ +{"uid":"2fa3e47e2c278a2f","name":"Отправка пустой формы","fullName":"ui/registration/register.negative.spec.ts:6:7","historyId":"61b0fd9a6b9153c787b71ef3413cea92:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750252861196,"stop":1750252862666,"duration":1470},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252861196,"stop":1750252861307,"duration":111},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252861196,"stop":1750252861198,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252861197,"stop":1750252861198,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252861198,"stop":1750252861307,"duration":109},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252861199,"stop":1750252861307,"duration":108},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750252861310,"stop":1750252862220,"duration":910},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750252862220,"stop":1750252862607,"duration":387},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.allTextContents(div[name=\"error\"] >> internal:has-text=\"Поле обязательно для заполнения\"i)","time":{"start":1750252862613,"stop":1750252862642,"duration":29},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeGreaterThan","time":{"start":1750252862643,"stop":1750252862644,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252862644,"stop":1750252862654,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252862654,"stop":1750252862670,"duration":16},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252862656,"stop":1750252862656,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252862656,"stop":1750252862656,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-1"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"2fa3e47e2c278a2f.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2fe9fff62d8f0470.json b/allure-report/data/test-cases/2fe9fff62d8f0470.json new file mode 100644 index 0000000..fa51be5 --- /dev/null +++ b/allure-report/data/test-cases/2fe9fff62d8f0470.json @@ -0,0 +1 @@ +{"uid":"2fe9fff62d8f0470","name":"has title","fullName":"example.spec.ts:3:5","historyId":"3a2a809b453af4fd564578d1a27f3e45:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750252826934,"stop":1750252835638,"duration":8704},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252826935,"stop":1750252829091,"duration":2156},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750252826944,"stop":1750252827956,"duration":1012},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750252826946,"stop":1750252827955,"duration":1009},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252827957,"stop":1750252828096,"duration":139},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252827960,"stop":1750252828095,"duration":135},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252828096,"stop":1750252829091,"duration":995},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252828096,"stop":1750252829091,"duration":995},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(https://playwright.dev/)","time":{"start":1750252829095,"stop":1750252836225,"duration":7130},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveTitle","time":{"start":1750252836228,"stop":1750252836628,"duration":400},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252836628,"stop":1750252836656,"duration":28},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252836629,"stop":1750252836629,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252836629,"stop":1750252836629,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > firefox > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-1"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"example.spec.ts"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"2fe9fff62d8f0470.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/311909f1f9bb172e.json b/allure-report/data/test-cases/311909f1f9bb172e.json new file mode 100644 index 0000000..f8d395b --- /dev/null +++ b/allure-report/data/test-cases/311909f1f9bb172e.json @@ -0,0 +1 @@ +{"uid":"311909f1f9bb172e","name":"Отправка пустой формы","fullName":"ui/registration/register.negative.spec.ts:6:7","historyId":"61b0fd9a6b9153c787b71ef3413cea92:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750253629833,"stop":1750253631616,"duration":1783},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253629832,"stop":1750253629947,"duration":115},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253629833,"stop":1750253629840,"duration":7},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253629833,"stop":1750253629837,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253629840,"stop":1750253629947,"duration":107},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253629841,"stop":1750253629947,"duration":106},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750253629949,"stop":1750253631104,"duration":1155},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750253631105,"stop":1750253631514,"duration":409},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.allTextContents(div[name=\"error\"] >> internal:has-text=\"Поле обязательно для заполнения\"i)","time":{"start":1750253631515,"stop":1750253631526,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeGreaterThan","time":{"start":1750253631527,"stop":1750253631527,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253631527,"stop":1750253631546,"duration":19},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253631547,"stop":1750253631617,"duration":70},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253631547,"stop":1750253631547,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253631547,"stop":1750253631547,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-3"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"2fa3e47e2c278a2f","status":"passed","time":{"start":1750252861196,"stop":1750252862666,"duration":1470}}],"categories":[],"tags":[]},"source":"311909f1f9bb172e.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4078b556600b37b9.json b/allure-report/data/test-cases/3196675944a7d942.json similarity index 97% rename from allure-report/data/test-cases/4078b556600b37b9.json rename to allure-report/data/test-cases/3196675944a7d942.json index 9a6879f..d03dab2 100644 --- a/allure-report/data/test-cases/4078b556600b37b9.json +++ b/allure-report/data/test-cases/3196675944a7d942.json @@ -1 +1 @@ -{"uid":"4078b556600b37b9","name":"Некорректный формат email","fullName":"ui/login/login.negative.spec.ts:46:7","historyId":"e5764a911de0175f8f7118313ae14544:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750075556104,"stop":1750075557367,"duration":1263},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075556104,"stop":1750075556228,"duration":124},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075556110,"stop":1750075556131,"duration":21},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075556115,"stop":1750075556131,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075556131,"stop":1750075556228,"duration":97},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075556132,"stop":1750075556227,"duration":95},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075556229,"stop":1750075557225,"duration":996},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(invalid-email)","time":{"start":1750075557229,"stop":1750075557278,"duration":49},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(anyPassword123)","time":{"start":1750075557278,"stop":1750075557288,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750075557288,"stop":1750075557357,"duration":69},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075557358,"stop":1750075557362,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075557362,"stop":1750075557372,"duration":10},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075557363,"stop":1750075557363,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075557363,"stop":1750075557363,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"4078b556600b37b9.json","parameterValues":["firefox"]} \ No newline at end of file +{"uid":"3196675944a7d942","name":"Некорректный формат email","fullName":"ui/login/login.negative.spec.ts:46:7","historyId":"e5764a911de0175f8f7118313ae14544:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750075556104,"stop":1750075557367,"duration":1263},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075556104,"stop":1750075556228,"duration":124},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075556110,"stop":1750075556131,"duration":21},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075556115,"stop":1750075556131,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075556131,"stop":1750075556228,"duration":97},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075556132,"stop":1750075556227,"duration":95},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075556229,"stop":1750075557225,"duration":996},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(invalid-email)","time":{"start":1750075557229,"stop":1750075557278,"duration":49},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(anyPassword123)","time":{"start":1750075557278,"stop":1750075557288,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750075557288,"stop":1750075557357,"duration":69},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075557358,"stop":1750075557362,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075557362,"stop":1750075557372,"duration":10},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075557363,"stop":1750075557363,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075557363,"stop":1750075557363,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"3196675944a7d942.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/32b20479b53a0eda.json b/allure-report/data/test-cases/32b20479b53a0eda.json new file mode 100644 index 0000000..9375a0a --- /dev/null +++ b/allure-report/data/test-cases/32b20479b53a0eda.json @@ -0,0 +1 @@ +{"uid":"32b20479b53a0eda","name":"get started link","fullName":"example.spec.ts:10:5","historyId":"37e4aa066a5f6eac2e4d3b98a2ed98a7:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253470950,"stop":1750253473760,"duration":2810},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253470948,"stop":1750253471643,"duration":695},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750253470953,"stop":1750253471354,"duration":401},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750253470955,"stop":1750253471353,"duration":398},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253471355,"stop":1750253471406,"duration":51},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253471360,"stop":1750253471395,"duration":35},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253471406,"stop":1750253471643,"duration":237},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253471410,"stop":1750253471643,"duration":233},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(https://playwright.dev/)","time":{"start":1750253471645,"stop":1750253473633,"duration":1988},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('link', { name: 'Get started' }).click","time":{"start":1750253473636,"stop":1750253473718,"duration":82},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253473719,"stop":1750253474088,"duration":369},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253474088,"stop":1750253474164,"duration":76},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253474089,"stop":1750253474089,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253474089,"stop":1750253474089,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > chromium > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-1"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"example.spec.ts"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"32b20479b53a0eda.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/34179ea7ef46fc56.json b/allure-report/data/test-cases/34179ea7ef46fc56.json deleted file mode 100644 index 07a737d..0000000 --- a/allure-report/data/test-cases/34179ea7ef46fc56.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"34179ea7ef46fc56","name":"Переход по ссылке \"Зарегистрируйтесь\"","fullName":"ui/login/login.link.spec.ts:15:5","historyId":"62db9603623bba26b6305edb541ef4fa:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750084494915,"stop":1750084497374,"duration":2459},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084494916,"stop":1750084498530,"duration":3614},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750084494920,"stop":1750084497319,"duration":2399},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750084494921,"stop":1750084497319,"duration":2398},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084497320,"stop":1750084497515,"duration":195},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084497322,"stop":1750084497513,"duration":191},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084497515,"stop":1750084498530,"duration":1015},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084497516,"stop":1750084498530,"duration":1014},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084498535,"stop":1750084499620,"duration":1085},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByText('Зарегистрируйтесь').click","time":{"start":1750084499626,"stop":1750084499736,"duration":110},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750084499737,"stop":1750084499743,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084499744,"stop":1750084499762,"duration":18},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084499762,"stop":1750084499780,"duration":18},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084499763,"stop":1750084499763,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084499763,"stop":1750084499763,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d7fcf8f4f91e5813","status":"passed","time":{"start":1750075552248,"stop":1750075554739,"duration":2491}}],"categories":[],"tags":[]},"source":"34179ea7ef46fc56.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/348561a89d288bda.json b/allure-report/data/test-cases/348561a89d288bda.json new file mode 100644 index 0000000..f222967 --- /dev/null +++ b/allure-report/data/test-cases/348561a89d288bda.json @@ -0,0 +1 @@ +{"uid":"348561a89d288bda","name":"Пользователь успешно восстанавливает пароль","fullName":"ui/recovery/recover-password.spec.ts:7:7","historyId":"1779c735aef9d62c071557455e74e57f:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253562864,"stop":1750253569405,"duration":6541},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253562864,"stop":1750253562902,"duration":38},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253562864,"stop":1750253562868,"duration":4},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253562864,"stop":1750253562866,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253562868,"stop":1750253562902,"duration":34},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253562868,"stop":1750253562902,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750253562903,"stop":1750253563678,"duration":775},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750253563679,"stop":1750253563700,"duration":21},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750253563700,"stop":1750253563731,"duration":31},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750253563732,"stop":1750253563839,"duration":107},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750253563840,"stop":1750253563843,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253563843,"stop":1750253563855,"duration":12},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253563855,"stop":1750253563870,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253563871,"stop":1750253563877,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253563877,"stop":1750253563886,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253563887,"stop":1750253563894,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253563895,"stop":1750253563904,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750253563904,"stop":1750253563935,"duration":31},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253563935,"stop":1750253564041,"duration":106},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750253564041,"stop":1750253564049,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750253564049,"stop":1750253564058,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750253564060,"stop":1750253564098,"duration":38},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750253564098,"stop":1750253564204,"duration":106},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253564204,"stop":1750253564208,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253564208,"stop":1750253569406,"duration":5198},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253564209,"stop":1750253564209,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253564209,"stop":1750253564209,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":26,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-password.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-password.spec.ts > Восстановление пароля — позитивные сценарии"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-password.spec.ts"},{"name":"subSuite","value":"Восстановление пароля — позитивные сценарии"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d47772f91ef32fc","status":"passed","time":{"start":1750253490553,"stop":1750253497291,"duration":6738}},{"uid":"dcb78836f324219b","status":"passed","time":{"start":1750252822512,"stop":1750252826279,"duration":3767}},{"uid":"cf37024cd921d433","status":"passed","time":{"start":1750084493416,"stop":1750084494507,"duration":1091}},{"uid":"a0344127a19e8e6d","status":"passed","time":{"start":1750075550648,"stop":1750075551753,"duration":1105}}],"categories":[],"tags":[]},"source":"348561a89d288bda.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/353f54e5e0ae27dd.json b/allure-report/data/test-cases/353f54e5e0ae27dd.json new file mode 100644 index 0000000..86f67a3 --- /dev/null +++ b/allure-report/data/test-cases/353f54e5e0ae27dd.json @@ -0,0 +1 @@ +{"uid":"353f54e5e0ae27dd","name":"Только email без пароля","fullName":"ui/login/login.negative.spec.ts:37:7","historyId":"8c67bb2f4fb916157fb6191bbb5e4267:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750252841680,"stop":1750252843659,"duration":1979},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252841680,"stop":1750252841885,"duration":205},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252841681,"stop":1750252841698,"duration":17},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252841682,"stop":1750252841697,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252841698,"stop":1750252841885,"duration":187},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252841699,"stop":1750252841885,"duration":186},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750252841888,"stop":1750252843523,"duration":1635},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750252843524,"stop":1750252843579,"duration":55},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750252843580,"stop":1750252843591,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750252843592,"stop":1750252843652,"duration":60},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252843652,"stop":1750252843655,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252843655,"stop":1750252843661,"duration":6},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252843655,"stop":1750252843655,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252843656,"stop":1750252843656,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"353f54e5e0ae27dd.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c0406bead53d77ca.json b/allure-report/data/test-cases/3775ae1136246cc1.json similarity index 91% rename from allure-report/data/test-cases/c0406bead53d77ca.json rename to allure-report/data/test-cases/3775ae1136246cc1.json index 9c5509c..f2a7cb4 100644 --- a/allure-report/data/test-cases/c0406bead53d77ca.json +++ b/allure-report/data/test-cases/3775ae1136246cc1.json @@ -1 +1 @@ -{"uid":"c0406bead53d77ca","name":"Регистр в email (User@test.com ≠ user@test.com)","fullName":"ui/login/login.negative.spec.ts:58:7","historyId":"cc4ad4b40ef726af11b2bd4f5523dbe0:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750084507958,"stop":1750084508862,"duration":904},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084507958,"stop":1750084508080,"duration":122},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084507959,"stop":1750084507962,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084507959,"stop":1750084507961,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084507962,"stop":1750084508080,"duration":118},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084507962,"stop":1750084508080,"duration":118},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084508081,"stop":1750084508563,"duration":482},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Autotest@Example.com)","time":{"start":1750084508563,"stop":1750084508654,"duration":91},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750084508658,"stop":1750084508673,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750084508675,"stop":1750084508740,"duration":65},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084508740,"stop":1750084508861,"duration":121},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084508861,"stop":1750084508864,"duration":3},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084508861,"stop":1750084508861,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084508861,"stop":1750084508861,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"tag","value":"test.com"},{"name":"tag","value":"test.com)"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-3"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"28b1fab7a467f8a0","status":"passed","time":{"start":1750075564720,"stop":1750075566114,"duration":1394}}],"categories":[],"tags":["test.com","test.com)"]},"source":"c0406bead53d77ca.json","parameterValues":["webkit"]} \ No newline at end of file +{"uid":"3775ae1136246cc1","name":"Регистр в email (User@test.com ≠ user@test.com)","fullName":"ui/login/login.negative.spec.ts:58:7","historyId":"cc4ad4b40ef726af11b2bd4f5523dbe0:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750084507958,"stop":1750084508862,"duration":904},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084507958,"stop":1750084508080,"duration":122},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084507959,"stop":1750084507962,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084507959,"stop":1750084507961,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084507962,"stop":1750084508080,"duration":118},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084507962,"stop":1750084508080,"duration":118},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084508081,"stop":1750084508563,"duration":482},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Autotest@Example.com)","time":{"start":1750084508563,"stop":1750084508654,"duration":91},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750084508658,"stop":1750084508673,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750084508675,"stop":1750084508740,"duration":65},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084508740,"stop":1750084508861,"duration":121},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084508861,"stop":1750084508864,"duration":3},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084508861,"stop":1750084508861,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084508861,"stop":1750084508861,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"tag","value":"test.com"},{"name":"tag","value":"test.com)"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-3"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["test.com","test.com)"]},"source":"3775ae1136246cc1.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a819326431f0ed05.json b/allure-report/data/test-cases/37a1f106cd5e1697.json similarity index 97% rename from allure-report/data/test-cases/a819326431f0ed05.json rename to allure-report/data/test-cases/37a1f106cd5e1697.json index 93cb0fd..c6fdd5a 100644 --- a/allure-report/data/test-cases/a819326431f0ed05.json +++ b/allure-report/data/test-cases/37a1f106cd5e1697.json @@ -1 +1 @@ -{"uid":"a819326431f0ed05","name":"Несуществующий email","fullName":"ui/recovery/recover-negative.spec.ts:15:7","historyId":"c118be77fa2af6f0e0052ec7489ba66c:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750075549597,"stop":1750075550468,"duration":871},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075549596,"stop":1750075549647,"duration":51},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075549597,"stop":1750075549602,"duration":5},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075549597,"stop":1750075549601,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075549602,"stop":1750075549647,"duration":45},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075549603,"stop":1750075549647,"duration":44},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750075549649,"stop":1750075550280,"duration":631},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(nobody@example.com)","time":{"start":1750075550281,"stop":1750075550315,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750075550316,"stop":1750075550353,"duration":37},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075550354,"stop":1750075550459,"duration":105},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075550460,"stop":1750075550471,"duration":11},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075550461,"stop":1750075550461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075550462,"stop":1750075550462,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"a819326431f0ed05.json","parameterValues":["chromium"]} \ No newline at end of file +{"uid":"37a1f106cd5e1697","name":"Несуществующий email","fullName":"ui/recovery/recover-negative.spec.ts:15:7","historyId":"c118be77fa2af6f0e0052ec7489ba66c:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750075549597,"stop":1750075550468,"duration":871},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075549596,"stop":1750075549647,"duration":51},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075549597,"stop":1750075549602,"duration":5},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075549597,"stop":1750075549601,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075549602,"stop":1750075549647,"duration":45},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075549603,"stop":1750075549647,"duration":44},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750075549649,"stop":1750075550280,"duration":631},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(nobody@example.com)","time":{"start":1750075550281,"stop":1750075550315,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750075550316,"stop":1750075550353,"duration":37},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075550354,"stop":1750075550459,"duration":105},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075550460,"stop":1750075550471,"duration":11},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075550461,"stop":1750075550461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075550462,"stop":1750075550462,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"37a1f106cd5e1697.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/380d6f4e96430ef8.json b/allure-report/data/test-cases/380d6f4e96430ef8.json new file mode 100644 index 0000000..541d2da --- /dev/null +++ b/allure-report/data/test-cases/380d6f4e96430ef8.json @@ -0,0 +1 @@ +{"uid":"380d6f4e96430ef8","name":"Некорректный новый пароль","fullName":"ui/recovery/recover-negative.spec.ts:34:7","historyId":"18246cf63350a71f5b46012e257bafcf:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750252814582,"stop":1750252824686,"duration":10104},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252814582,"stop":1750252814619,"duration":37},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252814583,"stop":1750252814584,"duration":1},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252814583,"stop":1750252814584,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252814585,"stop":1750252814619,"duration":34},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252814585,"stop":1750252814619,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750252814620,"stop":1750252815366,"duration":746},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750252815367,"stop":1750252815399,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750252815399,"stop":1750252815423,"duration":24},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750252815423,"stop":1750252815424,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252815425,"stop":1750252822761,"duration":7336},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252822762,"stop":1750252822765,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252822766,"stop":1750252822770,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252822771,"stop":1750252822775,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252822776,"stop":1750252822781,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252822782,"stop":1750252822787,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750252822788,"stop":1750252822826,"duration":38},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(123)","time":{"start":1750252822827,"stop":1750252824624,"duration":1797},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(123)","time":{"start":1750252824626,"stop":1750252824634,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750252824637,"stop":1750252824676,"duration":39},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252824676,"stop":1750252824679,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252824679,"stop":1750252824689,"duration":10},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252824680,"stop":1750252824680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252824680,"stop":1750252824680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"380d6f4e96430ef8.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2c0febe4d6291da9.json b/allure-report/data/test-cases/381e47ee9a2f99a7.json similarity index 97% rename from allure-report/data/test-cases/2c0febe4d6291da9.json rename to allure-report/data/test-cases/381e47ee9a2f99a7.json index adf5438..4ea71e9 100644 --- a/allure-report/data/test-cases/2c0febe4d6291da9.json +++ b/allure-report/data/test-cases/381e47ee9a2f99a7.json @@ -1 +1 @@ -{"uid":"2c0febe4d6291da9","name":"Некорректный новый пароль","fullName":"ui/recovery/recover-negative.spec.ts:34:7","historyId":"18246cf63350a71f5b46012e257bafcf:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750075558416,"stop":1750075560205,"duration":1789},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075558416,"stop":1750075558709,"duration":293},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075558419,"stop":1750075558444,"duration":25},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075558420,"stop":1750075558442,"duration":22},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075558444,"stop":1750075558709,"duration":265},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075558445,"stop":1750075558709,"duration":264},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750075558711,"stop":1750075559622,"duration":911},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075559645,"stop":1750075559705,"duration":60},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750075559706,"stop":1750075559756,"duration":50},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750075559756,"stop":1750075559758,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075559758,"stop":1750075559842,"duration":84},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075559843,"stop":1750075559849,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075559851,"stop":1750075559887,"duration":36},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075559889,"stop":1750075559906,"duration":17},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075559906,"stop":1750075559912,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075559913,"stop":1750075559919,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075559920,"stop":1750075559972,"duration":52},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(123)","time":{"start":1750075559973,"stop":1750075560074,"duration":101},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(123)","time":{"start":1750075560075,"stop":1750075560093,"duration":18},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075560094,"stop":1750075560177,"duration":83},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075560177,"stop":1750075560188,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075560188,"stop":1750075560208,"duration":20},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075560188,"stop":1750075560188,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075560188,"stop":1750075560188,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"2c0febe4d6291da9.json","parameterValues":["firefox"]} \ No newline at end of file +{"uid":"381e47ee9a2f99a7","name":"Некорректный новый пароль","fullName":"ui/recovery/recover-negative.spec.ts:34:7","historyId":"18246cf63350a71f5b46012e257bafcf:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750075558416,"stop":1750075560205,"duration":1789},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075558416,"stop":1750075558709,"duration":293},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075558419,"stop":1750075558444,"duration":25},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075558420,"stop":1750075558442,"duration":22},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075558444,"stop":1750075558709,"duration":265},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075558445,"stop":1750075558709,"duration":264},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750075558711,"stop":1750075559622,"duration":911},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075559645,"stop":1750075559705,"duration":60},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750075559706,"stop":1750075559756,"duration":50},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750075559756,"stop":1750075559758,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075559758,"stop":1750075559842,"duration":84},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075559843,"stop":1750075559849,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075559851,"stop":1750075559887,"duration":36},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075559889,"stop":1750075559906,"duration":17},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075559906,"stop":1750075559912,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075559913,"stop":1750075559919,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075559920,"stop":1750075559972,"duration":52},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(123)","time":{"start":1750075559973,"stop":1750075560074,"duration":101},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(123)","time":{"start":1750075560075,"stop":1750075560093,"duration":18},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075560094,"stop":1750075560177,"duration":83},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075560177,"stop":1750075560188,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075560188,"stop":1750075560208,"duration":20},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075560188,"stop":1750075560188,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075560188,"stop":1750075560188,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"381e47ee9a2f99a7.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2e73b968ec7d6136.json b/allure-report/data/test-cases/3af86631ead6d924.json similarity index 97% rename from allure-report/data/test-cases/2e73b968ec7d6136.json rename to allure-report/data/test-cases/3af86631ead6d924.json index c2a3ca6..b5b2f70 100644 --- a/allure-report/data/test-cases/2e73b968ec7d6136.json +++ b/allure-report/data/test-cases/3af86631ead6d924.json @@ -1 +1 @@ -{"uid":"2e73b968ec7d6136","name":"Только email без пароля","fullName":"ui/login/login.negative.spec.ts:37:7","historyId":"8c67bb2f4fb916157fb6191bbb5e4267:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750075555728,"stop":1750075557066,"duration":1338},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075555728,"stop":1750075556095,"duration":367},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075555730,"stop":1750075555751,"duration":21},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075555730,"stop":1750075555750,"duration":20},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075555751,"stop":1750075556095,"duration":344},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075555751,"stop":1750075556095,"duration":344},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075556096,"stop":1750075556853,"duration":757},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075556854,"stop":1750075556911,"duration":57},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750075556912,"stop":1750075556946,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750075556947,"stop":1750075557045,"duration":98},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075557045,"stop":1750075557053,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075557054,"stop":1750075557068,"duration":14},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075557054,"stop":1750075557054,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075557054,"stop":1750075557054,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-1"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"2e73b968ec7d6136.json","parameterValues":["firefox"]} \ No newline at end of file +{"uid":"3af86631ead6d924","name":"Только email без пароля","fullName":"ui/login/login.negative.spec.ts:37:7","historyId":"8c67bb2f4fb916157fb6191bbb5e4267:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750075555728,"stop":1750075557066,"duration":1338},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075555728,"stop":1750075556095,"duration":367},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075555730,"stop":1750075555751,"duration":21},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075555730,"stop":1750075555750,"duration":20},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075555751,"stop":1750075556095,"duration":344},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075555751,"stop":1750075556095,"duration":344},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075556096,"stop":1750075556853,"duration":757},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075556854,"stop":1750075556911,"duration":57},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750075556912,"stop":1750075556946,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750075556947,"stop":1750075557045,"duration":98},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075557045,"stop":1750075557053,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075557054,"stop":1750075557068,"duration":14},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075557054,"stop":1750075557054,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075557054,"stop":1750075557054,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-1"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"3af86631ead6d924.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3b08aa482242592.json b/allure-report/data/test-cases/3b08aa482242592.json new file mode 100644 index 0000000..1dc1ce7 --- /dev/null +++ b/allure-report/data/test-cases/3b08aa482242592.json @@ -0,0 +1 @@ +{"uid":"3b08aa482242592","name":"Пользователь успешно восстанавливает пароль","fullName":"ui/recovery/recover-password.spec.ts:7:7","historyId":"1779c735aef9d62c071557455e74e57f:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750075567353,"stop":1750075568728,"duration":1375},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075567352,"stop":1750075567470,"duration":118},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075567354,"stop":1750075567357,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075567354,"stop":1750075567357,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075567357,"stop":1750075567470,"duration":113},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075567357,"stop":1750075567470,"duration":113},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750075567471,"stop":1750075568207,"duration":736},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075568208,"stop":1750075568257,"duration":49},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750075568257,"stop":1750075568293,"duration":36},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750075568294,"stop":1750075568402,"duration":108},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750075568403,"stop":1750075568404,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075568405,"stop":1750075568409,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075568409,"stop":1750075568413,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075568414,"stop":1750075568419,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075568419,"stop":1750075568425,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075568425,"stop":1750075568429,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075568429,"stop":1750075568434,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075568434,"stop":1750075568473,"duration":39},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075568474,"stop":1750075568577,"duration":103},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750075568577,"stop":1750075568582,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750075568583,"stop":1750075568591,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075568591,"stop":1750075568620,"duration":29},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750075568620,"stop":1750075568724,"duration":104},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075568724,"stop":1750075568727,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075568727,"stop":1750075568729,"duration":2},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075568727,"stop":1750075568727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075568727,"stop":1750075568727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":26,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-password.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-password.spec.ts > Восстановление пароля — позитивные сценарии"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-2"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-password.spec.ts"},{"name":"subSuite","value":"Восстановление пароля — позитивные сценарии"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"3b08aa482242592.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3b4a3c3226c1827d.json b/allure-report/data/test-cases/3b4a3c3226c1827d.json new file mode 100644 index 0000000..512ee66 --- /dev/null +++ b/allure-report/data/test-cases/3b4a3c3226c1827d.json @@ -0,0 +1 @@ +{"uid":"3b4a3c3226c1827d","name":"Успешная регистрация нового пользователя","fullName":"ui/registration/register.spec.ts:6:7","historyId":"3562648cd3231e14b42a7151c17c62aa:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750176689923,"stop":1750176707314,"duration":17391},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750176689923,"stop":1750176692381,"duration":2458},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750176689926,"stop":1750176690943,"duration":1017},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750176689927,"stop":1750176690943,"duration":1016},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750176690944,"stop":1750176691841,"duration":897},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750176690945,"stop":1750176691838,"duration":893},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750176691842,"stop":1750176692381,"duration":539},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750176691842,"stop":1750176692381,"duration":539},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750176692385,"stop":1750176702278,"duration":9893},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Иван)","time":{"start":1750176702282,"stop":1750176704744,"duration":2462},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Тестов)","time":{"start":1750176704747,"stop":1750176704793,"duration":46},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Александрович)","time":{"start":1750176704794,"stop":1750176704815,"duration":21},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёное звание*').click","time":{"start":1750176704816,"stop":1750176704989,"duration":173},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Доцент\"i)","time":{"start":1750176704990,"stop":1750176705481,"duration":491},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёная степень*').click","time":{"start":1750176705482,"stop":1750176706437,"duration":955},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Кандидат наук\"i)","time":{"start":1750176706440,"stop":1750176706544,"duration":104},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Преподаватель)","time":{"start":1750176706545,"stop":1750176706561,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(ЮФУ)","time":{"start":1750176706562,"stop":1750176706588,"duration":26},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest74077@example.com)","time":{"start":1750176706589,"stop":1750176706606,"duration":17},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(+79000074077)","time":{"start":1750176706606,"stop":1750176706626,"duration":20},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750176706626,"stop":1750176706644,"duration":18},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750176706645,"stop":1750176706676,"duration":31},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750176706677,"stop":1750176708159,"duration":1482},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750176708162,"stop":1750176708291,"duration":129},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750176708293,"stop":1750176708300,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750176708301,"stop":1750176708336,"duration":35},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750176708302,"stop":1750176708303,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750176708303,"stop":1750176708303,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":27,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.spec.ts"},{"name":"titlePath","value":" > firefox > ui/registration/register.spec.ts > Позитивные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-53790-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/registration/register.spec.ts"},{"name":"subSuite","value":"Позитивные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"3b4a3c3226c1827d.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3bf369ec5af3ff61.json b/allure-report/data/test-cases/3bf369ec5af3ff61.json new file mode 100644 index 0000000..a8211c9 --- /dev/null +++ b/allure-report/data/test-cases/3bf369ec5af3ff61.json @@ -0,0 +1 @@ +{"uid":"3bf369ec5af3ff61","name":"get started link","fullName":"example.spec.ts:10:5","historyId":"37e4aa066a5f6eac2e4d3b98a2ed98a7:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750252808949,"stop":1750252822202,"duration":13253},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252808944,"stop":1750252809508,"duration":564},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750252808949,"stop":1750252809252,"duration":303},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750252808951,"stop":1750252809252,"duration":301},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252809252,"stop":1750252809279,"duration":27},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252809255,"stop":1750252809273,"duration":18},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252809279,"stop":1750252809507,"duration":228},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252809282,"stop":1750252809507,"duration":225},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(https://playwright.dev/)","time":{"start":1750252809511,"stop":1750252821513,"duration":12002},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('link', { name: 'Get started' }).click","time":{"start":1750252821517,"stop":1750252821617,"duration":100},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252821618,"stop":1750252822485,"duration":867},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252822486,"stop":1750252822507,"duration":21},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252822487,"stop":1750252822488,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252822488,"stop":1750252822488,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > chromium > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-1"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"example.spec.ts"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"3bf369ec5af3ff61.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3d110a427012de38.json b/allure-report/data/test-cases/3d110a427012de38.json new file mode 100644 index 0000000..ec9fa16 --- /dev/null +++ b/allure-report/data/test-cases/3d110a427012de38.json @@ -0,0 +1 @@ +{"uid":"3d110a427012de38","name":"Переключатель видимости пароля показывает и скрывает ввод","fullName":"ui/login/login.ui.spec.ts:7:7","historyId":"b1726395bd827a3a21fe3c829a098be4:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750253625771,"stop":1750253627417,"duration":1646},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253625771,"stop":1750253625918,"duration":147},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253625772,"stop":1750253625778,"duration":6},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253625772,"stop":1750253625775,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253625778,"stop":1750253625918,"duration":140},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253625779,"stop":1750253625918,"duration":139},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750253625919,"stop":1750253627083,"duration":1164},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750253627084,"stop":1750253627138,"duration":54},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750253627139,"stop":1750253627166,"duration":27},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750253627166,"stop":1750253627167,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByAltText('показать пароль').click","time":{"start":1750253627167,"stop":1750253627289,"duration":122},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750253627291,"stop":1750253627306,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750253627307,"stop":1750253627307,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByAltText('показать пароль').click","time":{"start":1750253627308,"stop":1750253627343,"duration":35},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750253627344,"stop":1750253627347,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750253627347,"stop":1750253627347,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253627347,"stop":1750253627419,"duration":72},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253627347,"stop":1750253627347,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253627347,"stop":1750253627347,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":18,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.ui.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.ui.spec.ts > UI сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-2"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.ui.spec.ts"},{"name":"subSuite","value":"UI сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f401dd4efd30ea3b","status":"passed","time":{"start":1750252857947,"stop":1750252859370,"duration":1423}},{"uid":"60e453bd4d61dc10","status":"passed","time":{"start":1750084508352,"stop":1750084509225,"duration":873}},{"uid":"6249b78a768614e1","status":"passed","time":{"start":1750075565020,"stop":1750075565962,"duration":942}}],"categories":[],"tags":[]},"source":"3d110a427012de38.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3e17e2a7e63bcb14.json b/allure-report/data/test-cases/3e17e2a7e63bcb14.json new file mode 100644 index 0000000..ab2a4ea --- /dev/null +++ b/allure-report/data/test-cases/3e17e2a7e63bcb14.json @@ -0,0 +1 @@ +{"uid":"3e17e2a7e63bcb14","name":"Пароли не совпадают","fullName":"ui/recovery/recover-negative.spec.ts:56:7","historyId":"a7eaebb1e41fbbf13bf61195120b3ce9:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750252820406,"stop":1750252824534,"duration":4128},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252820407,"stop":1750252820618,"duration":211},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750252820410,"stop":1750252820524,"duration":114},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750252820412,"stop":1750252820524,"duration":112},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252820525,"stop":1750252820533,"duration":8},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252820526,"stop":1750252820532,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252820533,"stop":1750252820618,"duration":85},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252820534,"stop":1750252820618,"duration":84},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750252820620,"stop":1750252821458,"duration":838},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750252821459,"stop":1750252821535,"duration":76},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750252821538,"stop":1750252821602,"duration":64},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750252821603,"stop":1750252821610,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252821611,"stop":1750252824415,"duration":2804},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252824416,"stop":1750252824426,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252824428,"stop":1750252824438,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252824439,"stop":1750252824443,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252824443,"stop":1750252824447,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252824447,"stop":1750252824451,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750252824453,"stop":1750252824493,"duration":40},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750252824493,"stop":1750252824574,"duration":81},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!OtherPass123)","time":{"start":1750252824575,"stop":1750252824585,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750252824587,"stop":1750252824627,"duration":40},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252824633,"stop":1750252824643,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252824644,"stop":1750252824653,"duration":9},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252824646,"stop":1750252824646,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252824646,"stop":1750252824646,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":25,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"3e17e2a7e63bcb14.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/31dc1d9640018cfc.json b/allure-report/data/test-cases/3e21dacf1ae2fb3a.json similarity index 92% rename from allure-report/data/test-cases/31dc1d9640018cfc.json rename to allure-report/data/test-cases/3e21dacf1ae2fb3a.json index 51e81f7..76878ff 100644 --- a/allure-report/data/test-cases/31dc1d9640018cfc.json +++ b/allure-report/data/test-cases/3e21dacf1ae2fb3a.json @@ -1 +1 @@ -{"uid":"31dc1d9640018cfc","name":"Переход по ссылке \"Забыли пароль?\"","fullName":"ui/login/login.link.spec.ts:6:5","historyId":"91fcabcb669557e4ddb559c077420e45:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750084505493,"stop":1750084506516,"duration":1023},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084505494,"stop":1750084505912,"duration":418},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750084505497,"stop":1750084505671,"duration":174},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750084505498,"stop":1750084505671,"duration":173},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084505671,"stop":1750084505710,"duration":39},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084505672,"stop":1750084505709,"duration":37},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084505710,"stop":1750084505912,"duration":202},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084505711,"stop":1750084505912,"duration":201},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084505915,"stop":1750084506460,"duration":545},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByText('Забыли пароль?').click","time":{"start":1750084506464,"stop":1750084506612,"duration":148},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750084506615,"stop":1750084506665,"duration":50},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084506666,"stop":1750084506683,"duration":17},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084506684,"stop":1750084506696,"duration":12},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084506685,"stop":1750084506685,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084506685,"stop":1750084506685,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-3"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"48151a4a0833cfb","status":"passed","time":{"start":1750075562343,"stop":1750075563505,"duration":1162}}],"categories":[],"tags":[]},"source":"31dc1d9640018cfc.json","parameterValues":["webkit"]} \ No newline at end of file +{"uid":"3e21dacf1ae2fb3a","name":"Переход по ссылке \"Забыли пароль?\"","fullName":"ui/login/login.link.spec.ts:6:5","historyId":"91fcabcb669557e4ddb559c077420e45:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750084505493,"stop":1750084506516,"duration":1023},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084505494,"stop":1750084505912,"duration":418},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750084505497,"stop":1750084505671,"duration":174},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750084505498,"stop":1750084505671,"duration":173},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084505671,"stop":1750084505710,"duration":39},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084505672,"stop":1750084505709,"duration":37},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084505710,"stop":1750084505912,"duration":202},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084505711,"stop":1750084505912,"duration":201},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084505915,"stop":1750084506460,"duration":545},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByText('Забыли пароль?').click","time":{"start":1750084506464,"stop":1750084506612,"duration":148},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750084506615,"stop":1750084506665,"duration":50},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084506666,"stop":1750084506683,"duration":17},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084506684,"stop":1750084506696,"duration":12},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084506685,"stop":1750084506685,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084506685,"stop":1750084506685,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-3"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"3e21dacf1ae2fb3a.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d5f1f8610d1aa8a1.json b/allure-report/data/test-cases/3e7912ae6732b293.json similarity index 97% rename from allure-report/data/test-cases/d5f1f8610d1aa8a1.json rename to allure-report/data/test-cases/3e7912ae6732b293.json index 850b8ab..354d4c9 100644 --- a/allure-report/data/test-cases/d5f1f8610d1aa8a1.json +++ b/allure-report/data/test-cases/3e7912ae6732b293.json @@ -1 +1 @@ -{"uid":"d5f1f8610d1aa8a1","name":"Пользователь должен успешно залогиниться с валидными данными","fullName":"ui/login/login.spec.ts:7:7","historyId":"92a5ca35180a4cbe902714b987a6bf44:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750075556942,"stop":1750075558396,"duration":1454},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075556943,"stop":1750075557206,"duration":263},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075556944,"stop":1750075556956,"duration":12},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075556944,"stop":1750075556956,"duration":12},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075556956,"stop":1750075557206,"duration":250},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075556957,"stop":1750075557206,"duration":249},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075557210,"stop":1750075558084,"duration":874},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075558088,"stop":1750075558153,"duration":65},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750075558153,"stop":1750075558168,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750075558168,"stop":1750075558235,"duration":67},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750075558237,"stop":1750075558358,"duration":121},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075558360,"stop":1750075558374,"duration":14},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075558375,"stop":1750075558403,"duration":28},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075558376,"stop":1750075558376,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075558379,"stop":1750075558379,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.spec.ts > Авторизация пользователя"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.spec.ts"},{"name":"subSuite","value":"Авторизация пользователя"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"d5f1f8610d1aa8a1.json","parameterValues":["firefox"]} \ No newline at end of file +{"uid":"3e7912ae6732b293","name":"Пользователь должен успешно залогиниться с валидными данными","fullName":"ui/login/login.spec.ts:7:7","historyId":"92a5ca35180a4cbe902714b987a6bf44:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750075556942,"stop":1750075558396,"duration":1454},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075556943,"stop":1750075557206,"duration":263},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075556944,"stop":1750075556956,"duration":12},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075556944,"stop":1750075556956,"duration":12},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075556956,"stop":1750075557206,"duration":250},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075556957,"stop":1750075557206,"duration":249},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075557210,"stop":1750075558084,"duration":874},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075558088,"stop":1750075558153,"duration":65},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750075558153,"stop":1750075558168,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750075558168,"stop":1750075558235,"duration":67},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750075558237,"stop":1750075558358,"duration":121},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075558360,"stop":1750075558374,"duration":14},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075558375,"stop":1750075558403,"duration":28},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075558376,"stop":1750075558376,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075558379,"stop":1750075558379,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.spec.ts > Авторизация пользователя"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.spec.ts"},{"name":"subSuite","value":"Авторизация пользователя"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"3e7912ae6732b293.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3ea164013749327.json b/allure-report/data/test-cases/3ea164013749327.json new file mode 100644 index 0000000..1d6f61b --- /dev/null +++ b/allure-report/data/test-cases/3ea164013749327.json @@ -0,0 +1 @@ +{"uid":"3ea164013749327","name":"Слишком длинное название организации","fullName":"ui/registration/register.negative.spec.ts:48:7","historyId":"26486147b8778ca2341563049d2a3728:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750252825715,"stop":1750252827130,"duration":1415},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252825715,"stop":1750252825757,"duration":42},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252825716,"stop":1750252825720,"duration":4},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252825717,"stop":1750252825720,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252825720,"stop":1750252825757,"duration":37},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252825721,"stop":1750252825757,"duration":36},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750252825758,"stop":1750252826538,"duration":780},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Иван)","time":{"start":1750252826538,"stop":1750252826593,"duration":55},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Иванов)","time":{"start":1750252826594,"stop":1750252826599,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёное звание*').click","time":{"start":1750252826600,"stop":1750252826645,"duration":45},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Доцент\"i)","time":{"start":1750252826646,"stop":1750252826705,"duration":59},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёная степень*').click","time":{"start":1750252826706,"stop":1750252826828,"duration":122},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Кандидат наук\"i)","time":{"start":1750252826828,"stop":1750252826860,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Преподаватель)","time":{"start":1750252826860,"stop":1750252826866,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(ООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООО)","time":{"start":1750252826867,"stop":1750252826877,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(test1750252826538@example.com)","time":{"start":1750252826877,"stop":1750252826884,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(+79990953344)","time":{"start":1750252826884,"stop":1750252826894,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123)","time":{"start":1750252826895,"stop":1750252826903,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123)","time":{"start":1750252826905,"stop":1750252826917,"duration":12},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750252826917,"stop":1750252826962,"duration":45},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252826963,"stop":1750252827074,"duration":111},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252827075,"stop":1750252827133,"duration":58},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252827075,"stop":1750252827075,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252827075,"stop":1750252827075,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"3ea164013749327.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3eb5a3d8be79245.json b/allure-report/data/test-cases/3eb5a3d8be79245.json new file mode 100644 index 0000000..4ee4974 --- /dev/null +++ b/allure-report/data/test-cases/3eb5a3d8be79245.json @@ -0,0 +1 @@ +{"uid":"3eb5a3d8be79245","name":"Неверный код подтверждения","fullName":"ui/recovery/recover-negative.spec.ts:23:7","historyId":"31f03826b2a8da254be42b2d49bc35f3:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750252814013,"stop":1750252819880,"duration":5867},"status":"failed","statusMessage":"Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected)\n\nLocator: locator(':root')\nExpected pattern: /\\/recoverpassword\\/checkemail/\nReceived string: \"https://ssas.dev.rdcenter.ru/recoverpassword\"\nCall log:\n - expect.toHaveURL with timeout 5000ms\n - waiting for locator(':root')\n 9 × locator resolved to …\n - unexpected value \"https://ssas.dev.rdcenter.ru/recoverpassword\"\n","statusTrace":"Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected)\n\nLocator: locator(':root')\nExpected pattern: /\\/recoverpassword\\/checkemail/\nReceived string: \"https://ssas.dev.rdcenter.ru/recoverpassword\"\nCall log:\n - expect.toHaveURL with timeout 5000ms\n - waiting for locator(':root')\n 9 × locator resolved to …\n - unexpected value \"https://ssas.dev.rdcenter.ru/recoverpassword\"\n\n at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/recovery/recover-negative.spec.ts:28:24","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"failed","statusMessage":"Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected)\n\nLocator: locator(':root')\nExpected pattern: /\\/recoverpassword\\/checkemail/\nReceived string: \"https://ssas.dev.rdcenter.ru/recoverpassword\"\nCall log:\n - expect.toHaveURL with timeout 5000ms\n - waiting for locator(':root')\n 9 × locator resolved to …\n - unexpected value \"https://ssas.dev.rdcenter.ru/recoverpassword\"\n","statusTrace":"Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected)\n\nLocator: locator(':root')\nExpected pattern: /\\/recoverpassword\\/checkemail/\nReceived string: \"https://ssas.dev.rdcenter.ru/recoverpassword\"\nCall log:\n - expect.toHaveURL with timeout 5000ms\n - waiting for locator(':root')\n 9 × locator resolved to …\n - unexpected value \"https://ssas.dev.rdcenter.ru/recoverpassword\"\n\n at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/recovery/recover-negative.spec.ts:28:24","steps":[{"name":"Before Hooks","time":{"start":1750252814013,"stop":1750252814049,"duration":36},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252814014,"stop":1750252814016,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252814014,"stop":1750252814016,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252814016,"stop":1750252814049,"duration":33},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252814016,"stop":1750252814049,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750252814050,"stop":1750252814797,"duration":747},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750252814797,"stop":1750252814830,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750252814831,"stop":1750252814857,"duration":26},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750252814858,"stop":1750252819863,"duration":5005},"status":"failed","statusMessage":"Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected)\n\nLocator: locator(':root')\nExpected pattern: /\\/recoverpassword\\/checkemail/\nReceived string: \"https://ssas.dev.rdcenter.ru/recoverpassword\"\nCall log:\n - expect.toHaveURL with timeout 5000ms\n - waiting for locator(':root')\n 9 × locator resolved to …\n - unexpected value \"https://ssas.dev.rdcenter.ru/recoverpassword\"\n","statusTrace":"Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected)\n\nLocator: locator(':root')\nExpected pattern: /\\/recoverpassword\\/checkemail/\nReceived string: \"https://ssas.dev.rdcenter.ru/recoverpassword\"\nCall log:\n - expect.toHaveURL with timeout 5000ms\n - waiting for locator(':root')\n 9 × locator resolved to …\n - unexpected value \"https://ssas.dev.rdcenter.ru/recoverpassword\"\n\n at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/recovery/recover-negative.spec.ts:28:24","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":true,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"_error-context-0","time":{"start":1750252819913,"stop":1750252819913,"duration":0},"status":"unknown","steps":[],"attachments":[{"uid":"e725d47715349e6","name":"_error-context-0","source":"e725d47715349e6.md","type":"text/markdown","size":5547}],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":1,"hasContent":true,"attachmentStep":true},{"name":"After Hooks","time":{"start":1750252819864,"stop":1750252819885,"duration":21},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252819864,"stop":1750252819865,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252819865,"stop":1750252819865,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":1,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"3eb5a3d8be79245.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3f0e10c74637e3d3.json b/allure-report/data/test-cases/3f0e10c74637e3d3.json new file mode 100644 index 0000000..b75cb11 --- /dev/null +++ b/allure-report/data/test-cases/3f0e10c74637e3d3.json @@ -0,0 +1 @@ +{"uid":"3f0e10c74637e3d3","name":"Неверный пароль","fullName":"ui/login/login.negative.spec.ts:7:7","historyId":"500ad758ee2db2bb60aa832fb0abbb94:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750253583944,"stop":1750253591152,"duration":7208},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253583943,"stop":1750253584190,"duration":247},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253583944,"stop":1750253583953,"duration":9},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253583945,"stop":1750253583947,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253583953,"stop":1750253584190,"duration":237},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253583953,"stop":1750253584190,"duration":237},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750253584192,"stop":1750253590874,"duration":6682},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750253590875,"stop":1750253590935,"duration":60},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(wrongpass)","time":{"start":1750253590935,"stop":1750253590947,"duration":12},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750253590948,"stop":1750253591010,"duration":62},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253591011,"stop":1750253591121,"duration":110},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253591121,"stop":1750253591153,"duration":32},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253591121,"stop":1750253591121,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253591121,"stop":1750253591121,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c837cbd8e20dc069","status":"passed","time":{"start":1750252835856,"stop":1750252841676,"duration":5820}},{"uid":"95c73e558adaf781","status":"passed","time":{"start":1750084497996,"stop":1750084499294,"duration":1298}},{"uid":"5b14cf2a3c96a4b2","status":"passed","time":{"start":1750075554154,"stop":1750075555529,"duration":1375}}],"categories":[],"tags":[]},"source":"3f0e10c74637e3d3.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3ffdae9c16b02a46.json b/allure-report/data/test-cases/3ffdae9c16b02a46.json new file mode 100644 index 0000000..36d3b7e --- /dev/null +++ b/allure-report/data/test-cases/3ffdae9c16b02a46.json @@ -0,0 +1 @@ +{"uid":"3ffdae9c16b02a46","name":"Пользователь успешно восстанавливает пароль","fullName":"ui/recovery/recover-password.spec.ts:7:7","historyId":"1779c735aef9d62c071557455e74e57f:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750253629450,"stop":1750253631204,"duration":1754},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253629450,"stop":1750253629583,"duration":133},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253629451,"stop":1750253629454,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253629451,"stop":1750253629452,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253629454,"stop":1750253629583,"duration":129},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253629454,"stop":1750253629582,"duration":128},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750253629583,"stop":1750253630458,"duration":875},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750253630459,"stop":1750253630511,"duration":52},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750253630512,"stop":1750253630590,"duration":78},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750253630590,"stop":1750253630697,"duration":107},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750253630697,"stop":1750253630701,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253630702,"stop":1750253630713,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253630714,"stop":1750253630735,"duration":21},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253630736,"stop":1750253630744,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253630745,"stop":1750253630751,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253630752,"stop":1750253630760,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253630761,"stop":1750253630768,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750253630770,"stop":1750253630843,"duration":73},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253630844,"stop":1750253630948,"duration":104},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750253630949,"stop":1750253630958,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750253630958,"stop":1750253630965,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750253630966,"stop":1750253631013,"duration":47},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750253631014,"stop":1750253631127,"duration":113},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253631128,"stop":1750253631132,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253631132,"stop":1750253631205,"duration":73},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253631132,"stop":1750253631132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253631132,"stop":1750253631132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":26,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-password.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-password.spec.ts > Восстановление пароля — позитивные сценарии"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-2"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-password.spec.ts"},{"name":"subSuite","value":"Восстановление пароля — позитивные сценарии"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"82f13eaca42a7424","status":"passed","time":{"start":1750252860877,"stop":1750252862631,"duration":1754}},{"uid":"181f6a192d9c8bf8","status":"passed","time":{"start":1750084510151,"stop":1750084511331,"duration":1180}},{"uid":"3b08aa482242592","status":"passed","time":{"start":1750075567353,"stop":1750075568728,"duration":1375}}],"categories":[],"tags":[]},"source":"3ffdae9c16b02a46.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4da4945bee2a6177.json b/allure-report/data/test-cases/40015fc1b0be3163.json similarity index 92% rename from allure-report/data/test-cases/4da4945bee2a6177.json rename to allure-report/data/test-cases/40015fc1b0be3163.json index f970e94..98cca83 100644 --- a/allure-report/data/test-cases/4da4945bee2a6177.json +++ b/allure-report/data/test-cases/40015fc1b0be3163.json @@ -1 +1 @@ -{"uid":"4da4945bee2a6177","name":"Некорректный формат email","fullName":"ui/login/login.negative.spec.ts:46:7","historyId":"e5764a911de0175f8f7118313ae14544:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750084507730,"stop":1750084508673,"duration":943},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084507730,"stop":1750084507853,"duration":123},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084507731,"stop":1750084507735,"duration":4},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084507732,"stop":1750084507734,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084507735,"stop":1750084507853,"duration":118},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084507735,"stop":1750084507850,"duration":115},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084507856,"stop":1750084508479,"duration":623},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(invalid-email)","time":{"start":1750084508480,"stop":1750084508559,"duration":79},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(anyPassword123)","time":{"start":1750084508560,"stop":1750084508588,"duration":28},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750084508590,"stop":1750084508662,"duration":72},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084508663,"stop":1750084508669,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084508669,"stop":1750084508674,"duration":5},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084508669,"stop":1750084508669,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084508669,"stop":1750084508669,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-0"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"bf45d49e3153cac1","status":"passed","time":{"start":1750075564621,"stop":1750075565733,"duration":1112}}],"categories":[],"tags":[]},"source":"4da4945bee2a6177.json","parameterValues":["webkit"]} \ No newline at end of file +{"uid":"40015fc1b0be3163","name":"Некорректный формат email","fullName":"ui/login/login.negative.spec.ts:46:7","historyId":"e5764a911de0175f8f7118313ae14544:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750084507730,"stop":1750084508673,"duration":943},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084507730,"stop":1750084507853,"duration":123},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084507731,"stop":1750084507735,"duration":4},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084507732,"stop":1750084507734,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084507735,"stop":1750084507853,"duration":118},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084507735,"stop":1750084507850,"duration":115},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084507856,"stop":1750084508479,"duration":623},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(invalid-email)","time":{"start":1750084508480,"stop":1750084508559,"duration":79},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(anyPassword123)","time":{"start":1750084508560,"stop":1750084508588,"duration":28},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750084508590,"stop":1750084508662,"duration":72},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084508663,"stop":1750084508669,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084508669,"stop":1750084508674,"duration":5},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084508669,"stop":1750084508669,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084508669,"stop":1750084508669,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-0"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"40015fc1b0be3163.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/403c230730f38ab.json b/allure-report/data/test-cases/403c230730f38ab.json new file mode 100644 index 0000000..a339287 --- /dev/null +++ b/allure-report/data/test-cases/403c230730f38ab.json @@ -0,0 +1 @@ +{"uid":"403c230730f38ab","name":"Переход по ссылке \"Зарегистрируйтесь\"","fullName":"ui/login/login.link.spec.ts:15:5","historyId":"62db9603623bba26b6305edb541ef4fa:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750252832579,"stop":1750252841686,"duration":9107},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252832579,"stop":1750252833667,"duration":1088},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750252832583,"stop":1750252833114,"duration":531},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750252832584,"stop":1750252833113,"duration":529},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252833115,"stop":1750252833231,"duration":116},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252833116,"stop":1750252833230,"duration":114},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252833231,"stop":1750252833667,"duration":436},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252833232,"stop":1750252833667,"duration":435},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750252833671,"stop":1750252841803,"duration":8132},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByText('Зарегистрируйтесь').click","time":{"start":1750252841805,"stop":1750252842173,"duration":368},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750252842174,"stop":1750252842200,"duration":26},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252842200,"stop":1750252842204,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252842204,"stop":1750252842222,"duration":18},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252842205,"stop":1750252842205,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252842205,"stop":1750252842205,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-3"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"403c230730f38ab.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/406d0a5ba56ef55e.json b/allure-report/data/test-cases/406d0a5ba56ef55e.json new file mode 100644 index 0000000..741f5d3 --- /dev/null +++ b/allure-report/data/test-cases/406d0a5ba56ef55e.json @@ -0,0 +1 @@ +{"uid":"406d0a5ba56ef55e","name":"get started link","fullName":"example.spec.ts:10:5","historyId":"37e4aa066a5f6eac2e4d3b98a2ed98a7:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750252826950,"stop":1750252833537,"duration":6587},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252826953,"stop":1750252830071,"duration":3118},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750252826965,"stop":1750252829264,"duration":2299},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750252826967,"stop":1750252829263,"duration":2296},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252829265,"stop":1750252829445,"duration":180},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252829267,"stop":1750252829444,"duration":177},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252829446,"stop":1750252830071,"duration":625},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252829448,"stop":1750252830071,"duration":623},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(https://playwright.dev/)","time":{"start":1750252830073,"stop":1750252835324,"duration":5251},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('link', { name: 'Get started' }).click","time":{"start":1750252835329,"stop":1750252835436,"duration":107},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252835437,"stop":1750252835832,"duration":395},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252835832,"stop":1750252835847,"duration":15},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252835833,"stop":1750252835833,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252835833,"stop":1750252835833,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > firefox > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"example.spec.ts"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"406d0a5ba56ef55e.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/749fb76346883a7d.json b/allure-report/data/test-cases/407f716b23d4e3cd.json similarity index 91% rename from allure-report/data/test-cases/749fb76346883a7d.json rename to allure-report/data/test-cases/407f716b23d4e3cd.json index e3d4523..f2d963e 100644 --- a/allure-report/data/test-cases/749fb76346883a7d.json +++ b/allure-report/data/test-cases/407f716b23d4e3cd.json @@ -1 +1 @@ -{"uid":"749fb76346883a7d","name":"Некорректный формат email","fullName":"ui/login/login.negative.spec.ts:46:7","historyId":"e5764a911de0175f8f7118313ae14544:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750084499796,"stop":1750084501311,"duration":1515},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084499794,"stop":1750084500074,"duration":280},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084499796,"stop":1750084499825,"duration":29},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084499797,"stop":1750084499825,"duration":28},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084499825,"stop":1750084500074,"duration":249},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084499826,"stop":1750084500074,"duration":248},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084500075,"stop":1750084501149,"duration":1074},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(invalid-email)","time":{"start":1750084501150,"stop":1750084501195,"duration":45},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(anyPassword123)","time":{"start":1750084501196,"stop":1750084501214,"duration":18},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750084501215,"stop":1750084501294,"duration":79},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084501295,"stop":1750084501301,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084501301,"stop":1750084501312,"duration":11},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084501302,"stop":1750084501302,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084501302,"stop":1750084501302,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4078b556600b37b9","status":"passed","time":{"start":1750075556104,"stop":1750075557367,"duration":1263}}],"categories":[],"tags":[]},"source":"749fb76346883a7d.json","parameterValues":["firefox"]} \ No newline at end of file +{"uid":"407f716b23d4e3cd","name":"Некорректный формат email","fullName":"ui/login/login.negative.spec.ts:46:7","historyId":"e5764a911de0175f8f7118313ae14544:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750084499796,"stop":1750084501311,"duration":1515},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084499794,"stop":1750084500074,"duration":280},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084499796,"stop":1750084499825,"duration":29},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084499797,"stop":1750084499825,"duration":28},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084499825,"stop":1750084500074,"duration":249},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084499826,"stop":1750084500074,"duration":248},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084500075,"stop":1750084501149,"duration":1074},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(invalid-email)","time":{"start":1750084501150,"stop":1750084501195,"duration":45},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(anyPassword123)","time":{"start":1750084501196,"stop":1750084501214,"duration":18},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750084501215,"stop":1750084501294,"duration":79},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084501295,"stop":1750084501301,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084501301,"stop":1750084501312,"duration":11},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084501302,"stop":1750084501302,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084501302,"stop":1750084501302,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"407f716b23d4e3cd.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/41ad93595349c29.json b/allure-report/data/test-cases/41ad93595349c29.json new file mode 100644 index 0000000..fe2a2ae --- /dev/null +++ b/allure-report/data/test-cases/41ad93595349c29.json @@ -0,0 +1 @@ +{"uid":"41ad93595349c29","name":"Оба поля пустые","fullName":"ui/login/login.negative.spec.ts:27:7","historyId":"58990385f74407307e4ace7ad02abf05:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750253620048,"stop":1750253625592,"duration":5544},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253620049,"stop":1750253620235,"duration":186},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253620050,"stop":1750253620059,"duration":9},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253620050,"stop":1750253620054,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253620059,"stop":1750253620235,"duration":176},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253620061,"stop":1750253620235,"duration":174},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750253620236,"stop":1750253625345,"duration":5109},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750253625345,"stop":1750253625396,"duration":51},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750253625397,"stop":1750253625426,"duration":29},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750253625427,"stop":1750253625506,"duration":79},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253625506,"stop":1750253625523,"duration":17},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253625523,"stop":1750253625531,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253625531,"stop":1750253625594,"duration":63},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253625532,"stop":1750253625532,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253625532,"stop":1750253625532,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-3"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"83fbcf20a008eff","status":"passed","time":{"start":1750252856141,"stop":1750252857865,"duration":1724}},{"uid":"9d2d949772c4aa8c","status":"passed","time":{"start":1750084506701,"stop":1750084507952,"duration":1251}},{"uid":"48fd693c7a7ddc9e","status":"passed","time":{"start":1750075563694,"stop":1750075564613,"duration":919}}],"categories":[],"tags":[]},"source":"41ad93595349c29.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4217d835e952768e.json b/allure-report/data/test-cases/4217d835e952768e.json new file mode 100644 index 0000000..79a6d72 --- /dev/null +++ b/allure-report/data/test-cases/4217d835e952768e.json @@ -0,0 +1 @@ +{"uid":"4217d835e952768e","name":"Неверный пароль","fullName":"ui/login/login.negative.spec.ts:7:7","historyId":"500ad758ee2db2bb60aa832fb0abbb94:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750252810863,"stop":1750252811922,"duration":1059},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252810863,"stop":1750252810904,"duration":41},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252810864,"stop":1750252810866,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252810864,"stop":1750252810865,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252810866,"stop":1750252810904,"duration":38},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252810866,"stop":1750252810904,"duration":38},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750252810905,"stop":1750252811650,"duration":745},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750252811652,"stop":1750252811717,"duration":65},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(wrongpass)","time":{"start":1750252811717,"stop":1750252811766,"duration":49},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750252811767,"stop":1750252811811,"duration":44},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252811812,"stop":1750252811919,"duration":107},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252811919,"stop":1750252811924,"duration":5},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252811919,"stop":1750252811919,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252811919,"stop":1750252811919,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"4217d835e952768e.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d6802166c179c1c.json b/allure-report/data/test-cases/4317368ffc63a88.json similarity index 55% rename from allure-report/data/test-cases/d6802166c179c1c.json rename to allure-report/data/test-cases/4317368ffc63a88.json index 7d05ae7..50355af 100644 --- a/allure-report/data/test-cases/d6802166c179c1c.json +++ b/allure-report/data/test-cases/4317368ffc63a88.json @@ -1 +1 @@ -{"uid":"d6802166c179c1c","name":"Пользователь должен успешно залогиниться с валидными данными","fullName":"ui/login/login.spec.ts:7:7","historyId":"92a5ca35180a4cbe902714b987a6bf44:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750075564763,"stop":1750075565949,"duration":1186},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075564763,"stop":1750075564892,"duration":129},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075564764,"stop":1750075564766,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075564764,"stop":1750075564766,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075564767,"stop":1750075564892,"duration":125},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075564767,"stop":1750075564892,"duration":125},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075564892,"stop":1750075565682,"duration":790},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075565683,"stop":1750075565741,"duration":58},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750075565743,"stop":1750075565774,"duration":31},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750075565776,"stop":1750075565835,"duration":59},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750075565836,"stop":1750075565944,"duration":108},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075565944,"stop":1750075565947,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075565947,"stop":1750075565951,"duration":4},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075565947,"stop":1750075565947,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075565947,"stop":1750075565947,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.spec.ts > Авторизация пользователя"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-3"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.spec.ts"},{"name":"subSuite","value":"Авторизация пользователя"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"d6802166c179c1c.json","parameterValues":["webkit"]} \ No newline at end of file +{"uid":"4317368ffc63a88","name":"Пользователь должен успешно залогиниться с валидными данными","fullName":"ui/login/login.spec.ts:7:7","historyId":"92a5ca35180a4cbe902714b987a6bf44:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750252857870,"stop":1750252859251,"duration":1381},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252857870,"stop":1750252857994,"duration":124},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252857871,"stop":1750252857873,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252857871,"stop":1750252857873,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252857873,"stop":1750252857994,"duration":121},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252857874,"stop":1750252857994,"duration":120},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750252857995,"stop":1750252859070,"duration":1075},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750252859071,"stop":1750252859091,"duration":20},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750252859092,"stop":1750252859098,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750252859098,"stop":1750252859135,"duration":37},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750252859136,"stop":1750252859243,"duration":107},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252859244,"stop":1750252859248,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252859248,"stop":1750252859253,"duration":5},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252859249,"stop":1750252859249,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252859249,"stop":1750252859249,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.spec.ts > Авторизация пользователя"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-2"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.spec.ts"},{"name":"subSuite","value":"Авторизация пользователя"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"4317368ffc63a88.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/432ee7458c9fefd9.json b/allure-report/data/test-cases/432ee7458c9fefd9.json new file mode 100644 index 0000000..9fc1c9f --- /dev/null +++ b/allure-report/data/test-cases/432ee7458c9fefd9.json @@ -0,0 +1 @@ +{"uid":"432ee7458c9fefd9","name":"Отправка пустой формы","fullName":"ui/registration/register.negative.spec.ts:6:7","historyId":"61b0fd9a6b9153c787b71ef3413cea92:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750252435945,"stop":1750252461297,"duration":25352},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252435941,"stop":1750252439064,"duration":3123},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750252435944,"stop":1750252437703,"duration":1759},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750252435945,"stop":1750252437703,"duration":1758},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252437705,"stop":1750252438640,"duration":935},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252437708,"stop":1750252438639,"duration":931},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252438640,"stop":1750252439064,"duration":424},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252438641,"stop":1750252439064,"duration":423},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750252439069,"stop":1750252443896,"duration":4827},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750252443901,"stop":1750252446112,"duration":2211},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.allTextContents(div[name=\"error\"] >> internal:has-text=\"Поле обязательно для заполнения\"i)","time":{"start":1750252446113,"stop":1750252451128,"duration":5015},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeGreaterThan","time":{"start":1750252451132,"stop":1750252451133,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252451134,"stop":1750252463015,"duration":11881},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252463016,"stop":1750252463057,"duration":41},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252463017,"stop":1750252463017,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252463017,"stop":1750252463017,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":15,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-57209-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"432ee7458c9fefd9.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/43316c0a1abf58ba.json b/allure-report/data/test-cases/43316c0a1abf58ba.json new file mode 100644 index 0000000..7961263 --- /dev/null +++ b/allure-report/data/test-cases/43316c0a1abf58ba.json @@ -0,0 +1 @@ +{"uid":"43316c0a1abf58ba","name":"Некорректный email формат","fullName":"ui/registration/register.negative.spec.ts:28:7","historyId":"de8c598c53adc6e2133478f1b9141597:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253569430,"stop":1750253577638,"duration":8208},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253569430,"stop":1750253569477,"duration":47},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253569430,"stop":1750253569433,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253569431,"stop":1750253569432,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253569433,"stop":1750253569477,"duration":44},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253569433,"stop":1750253569477,"duration":44},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750253569479,"stop":1750253575335,"duration":5856},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(invalid-email)","time":{"start":1750253575336,"stop":1750253575397,"duration":61},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750253575398,"stop":1750253575802,"duration":404},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253575802,"stop":1750253575807,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253575807,"stop":1750253577639,"duration":1832},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253575807,"stop":1750253575807,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253575807,"stop":1750253575807,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b60dd5ee0a1f44c8","status":"passed","time":{"start":1750253491941,"stop":1750253497999,"duration":6058}},{"uid":"2e4ecb28b0379e48","status":"passed","time":{"start":1750252824693,"stop":1750252825713,"duration":1020}},{"uid":"51bfbf0c4b256386","status":"passed","time":{"start":1750252750885,"stop":1750252754589,"duration":3704}},{"uid":"c49a8b85caadc9a6","status":"passed","time":{"start":1750252484903,"stop":1750252508228,"duration":23325}}],"categories":[],"tags":[]},"source":"43316c0a1abf58ba.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/459b4b10daa488e2.json b/allure-report/data/test-cases/459b4b10daa488e2.json new file mode 100644 index 0000000..4958d55 --- /dev/null +++ b/allure-report/data/test-cases/459b4b10daa488e2.json @@ -0,0 +1 @@ +{"uid":"459b4b10daa488e2","name":"Некорректный email формат","fullName":"ui/registration/register.negative.spec.ts:28:7","historyId":"de8c598c53adc6e2133478f1b9141597:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750253631623,"stop":1750253633317,"duration":1694},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253631623,"stop":1750253631740,"duration":117},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253631624,"stop":1750253631627,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253631624,"stop":1750253631626,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253631627,"stop":1750253631740,"duration":113},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253631628,"stop":1750253631740,"duration":112},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750253631740,"stop":1750253632827,"duration":1087},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(invalid-email)","time":{"start":1750253632827,"stop":1750253632893,"duration":66},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750253632893,"stop":1750253633165,"duration":272},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253633165,"stop":1750253633174,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253633175,"stop":1750253633318,"duration":143},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253633175,"stop":1750253633175,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253633175,"stop":1750253633175,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-3"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"abb74cf0ca506236","status":"passed","time":{"start":1750252861921,"stop":1750252863443,"duration":1522}}],"categories":[],"tags":[]},"source":"459b4b10daa488e2.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b869ef3785459ec6.json b/allure-report/data/test-cases/46bf7e5dbbd44a73.json similarity index 97% rename from allure-report/data/test-cases/b869ef3785459ec6.json rename to allure-report/data/test-cases/46bf7e5dbbd44a73.json index d3b51a1..fc3b14c 100644 --- a/allure-report/data/test-cases/b869ef3785459ec6.json +++ b/allure-report/data/test-cases/46bf7e5dbbd44a73.json @@ -1 +1 @@ -{"uid":"b869ef3785459ec6","name":"Переход по ссылке \"Зарегистрируйтесь\"","fullName":"ui/login/login.link.spec.ts:15:5","historyId":"62db9603623bba26b6305edb541ef4fa:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750075562963,"stop":1750075563995,"duration":1032},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075562965,"stop":1750075563505,"duration":540},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750075562972,"stop":1750075563127,"duration":155},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750075562973,"stop":1750075563127,"duration":154},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075563127,"stop":1750075563173,"duration":46},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075563128,"stop":1750075563171,"duration":43},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075563174,"stop":1750075563505,"duration":331},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075563176,"stop":1750075563504,"duration":328},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075563510,"stop":1750075564034,"duration":524},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByText('Зарегистрируйтесь').click","time":{"start":1750075564036,"stop":1750075564128,"duration":92},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750075564129,"stop":1750075564143,"duration":14},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075564144,"stop":1750075564147,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075564148,"stop":1750075564156,"duration":8},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075564148,"stop":1750075564148,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075564148,"stop":1750075564148,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-1"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"b869ef3785459ec6.json","parameterValues":["webkit"]} \ No newline at end of file +{"uid":"46bf7e5dbbd44a73","name":"Переход по ссылке \"Зарегистрируйтесь\"","fullName":"ui/login/login.link.spec.ts:15:5","historyId":"62db9603623bba26b6305edb541ef4fa:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750075562963,"stop":1750075563995,"duration":1032},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075562965,"stop":1750075563505,"duration":540},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750075562972,"stop":1750075563127,"duration":155},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750075562973,"stop":1750075563127,"duration":154},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075563127,"stop":1750075563173,"duration":46},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075563128,"stop":1750075563171,"duration":43},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075563174,"stop":1750075563505,"duration":331},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075563176,"stop":1750075563504,"duration":328},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075563510,"stop":1750075564034,"duration":524},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByText('Зарегистрируйтесь').click","time":{"start":1750075564036,"stop":1750075564128,"duration":92},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750075564129,"stop":1750075564143,"duration":14},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075564144,"stop":1750075564147,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075564148,"stop":1750075564156,"duration":8},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075564148,"stop":1750075564148,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075564148,"stop":1750075564148,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-1"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"46bf7e5dbbd44a73.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/47ca0e41ec1ea8fb.json b/allure-report/data/test-cases/47ca0e41ec1ea8fb.json new file mode 100644 index 0000000..b6265a0 --- /dev/null +++ b/allure-report/data/test-cases/47ca0e41ec1ea8fb.json @@ -0,0 +1 @@ +{"uid":"47ca0e41ec1ea8fb","name":"Несуществующий email","fullName":"ui/recovery/recover-negative.spec.ts:15:7","historyId":"c118be77fa2af6f0e0052ec7489ba66c:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750253598775,"stop":1750253604401,"duration":5626},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253598775,"stop":1750253598995,"duration":220},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253598775,"stop":1750253598781,"duration":6},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253598776,"stop":1750253598779,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253598781,"stop":1750253598995,"duration":214},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253598782,"stop":1750253598995,"duration":213},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750253598997,"stop":1750253604157,"duration":5160},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(nobody@example.com)","time":{"start":1750253604158,"stop":1750253604191,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750253604193,"stop":1750253604361,"duration":168},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253604361,"stop":1750253604370,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253604370,"stop":1750253604402,"duration":32},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253604371,"stop":1750253604371,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253604371,"stop":1750253604371,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-3"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"7cb6860d4bfa30f8","status":"passed","time":{"start":1750252844811,"stop":1750252847292,"duration":2481}},{"uid":"1809ab63c57693cf","status":"passed","time":{"start":1750084501499,"stop":1750084502685,"duration":1186}},{"uid":"e9d8c766e66a14f1","status":"passed","time":{"start":1750075558210,"stop":1750075559483,"duration":1273}}],"categories":[],"tags":[]},"source":"47ca0e41ec1ea8fb.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/48151a4a0833cfb.json b/allure-report/data/test-cases/48151a4a0833cfb.json deleted file mode 100644 index aaa8685..0000000 --- a/allure-report/data/test-cases/48151a4a0833cfb.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"48151a4a0833cfb","name":"Переход по ссылке \"Забыли пароль?\"","fullName":"ui/login/login.link.spec.ts:6:5","historyId":"91fcabcb669557e4ddb559c077420e45:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750075562343,"stop":1750075563505,"duration":1162},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075562344,"stop":1750075562767,"duration":423},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750075562349,"stop":1750075562524,"duration":175},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750075562352,"stop":1750075562524,"duration":172},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075562525,"stop":1750075562567,"duration":42},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075562526,"stop":1750075562566,"duration":40},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075562567,"stop":1750075562767,"duration":200},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075562568,"stop":1750075562767,"duration":199},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075562771,"stop":1750075563385,"duration":614},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByText('Забыли пароль?').click","time":{"start":1750075563394,"stop":1750075563631,"duration":237},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750075563638,"stop":1750075563666,"duration":28},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075563667,"stop":1750075563672,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075563673,"stop":1750075563685,"duration":12},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075563673,"stop":1750075563673,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075563673,"stop":1750075563673,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-3"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"48151a4a0833cfb.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/48fb323eb8a5b80c.json b/allure-report/data/test-cases/48fb323eb8a5b80c.json new file mode 100644 index 0000000..0a24a8c --- /dev/null +++ b/allure-report/data/test-cases/48fb323eb8a5b80c.json @@ -0,0 +1 @@ +{"uid":"48fb323eb8a5b80c","name":"Слишком длинное название организации","fullName":"ui/registration/register.negative.spec.ts:48:7","historyId":"26486147b8778ca2341563049d2a3728:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750252518180,"stop":1750252545048,"duration":26868},"status":"failed","statusMessage":"Error: Timed out 5000ms waiting for expect(locator).toBeVisible()\n\nLocator: getByText('Некорректное название организации!')\nExpected: visible\nReceived: \nCall log:\n - expect.toBeVisible with timeout 5000ms\n - waiting for getByText('Некорректное название организации!')\n","statusTrace":"Error: Timed out 5000ms waiting for expect(locator).toBeVisible()\n\nLocator: getByText('Некорректное название организации!')\nExpected: visible\nReceived: \nCall log:\n - expect.toBeVisible with timeout 5000ms\n - waiting for getByText('Некорректное название организации!')\n\n at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.negative.spec.ts:67:72","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"failed","statusMessage":"Error: Timed out 5000ms waiting for expect(locator).toBeVisible()\n\nLocator: getByText('Некорректное название организации!')\nExpected: visible\nReceived: \nCall log:\n - expect.toBeVisible with timeout 5000ms\n - waiting for getByText('Некорректное название организации!')\n","statusTrace":"Error: Timed out 5000ms waiting for expect(locator).toBeVisible()\n\nLocator: getByText('Некорректное название организации!')\nExpected: visible\nReceived: \nCall log:\n - expect.toBeVisible with timeout 5000ms\n - waiting for getByText('Некорректное название организации!')\n\n at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.negative.spec.ts:67:72","steps":[{"name":"Before Hooks","time":{"start":1750252518176,"stop":1750252519119,"duration":943},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252518180,"stop":1750252518865,"duration":685},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252518180,"stop":1750252518865,"duration":685},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252518865,"stop":1750252519119,"duration":254},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252518865,"stop":1750252519119,"duration":254},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750252519120,"stop":1750252524320,"duration":5200},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Иван)","time":{"start":1750252524323,"stop":1750252525356,"duration":1033},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Иванов)","time":{"start":1750252525357,"stop":1750252526304,"duration":947},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёное звание*').click","time":{"start":1750252526306,"stop":1750252526897,"duration":591},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Доцент\"i)","time":{"start":1750252526899,"stop":1750252528397,"duration":1498},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёная степень*').click","time":{"start":1750252528399,"stop":1750252529198,"duration":799},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Кандидат наук\"i)","time":{"start":1750252529199,"stop":1750252531630,"duration":2431},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Преподаватель)","time":{"start":1750252531631,"stop":1750252532405,"duration":774},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(ООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООО)","time":{"start":1750252532406,"stop":1750252533304,"duration":898},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(test1750252524321@example.com)","time":{"start":1750252533306,"stop":1750252534172,"duration":866},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(+7999197796)","time":{"start":1750252534173,"stop":1750252535553,"duration":1380},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123)","time":{"start":1750252535554,"stop":1750252536838,"duration":1284},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123)","time":{"start":1750252536839,"stop":1750252537869,"duration":1030},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750252537871,"stop":1750252538744,"duration":873},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252538747,"stop":1750252544995,"duration":6248},"status":"failed","statusMessage":"Error: Timed out 5000ms waiting for expect(locator).toBeVisible()\n\nLocator: getByText('Некорректное название организации!')\nExpected: visible\nReceived: \nCall log:\n - expect.toBeVisible with timeout 5000ms\n - waiting for getByText('Некорректное название организации!')\n","statusTrace":"Error: Timed out 5000ms waiting for expect(locator).toBeVisible()\n\nLocator: getByText('Некорректное название организации!')\nExpected: visible\nReceived: \nCall log:\n - expect.toBeVisible with timeout 5000ms\n - waiting for getByText('Некорректное название организации!')\n\n at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.negative.spec.ts:67:72","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":true,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"_error-context-0","time":{"start":1750252545266,"stop":1750252545266,"duration":0},"status":"unknown","steps":[],"attachments":[{"uid":"9d85bea98f85af45","name":"_error-context-0","source":"9d85bea98f85af45.md","type":"text/markdown","size":7420}],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":1,"hasContent":true,"attachmentStep":true},{"name":"After Hooks","time":{"start":1750252544996,"stop":1750252545056,"duration":60},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252544997,"stop":1750252544997,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252544997,"stop":1750252544997,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":24,"shouldDisplayMessage":false,"attachmentsCount":1,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-57209-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"48fb323eb8a5b80c.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5798cba72c59fd23.json b/allure-report/data/test-cases/48fd693c7a7ddc9e.json similarity index 97% rename from allure-report/data/test-cases/5798cba72c59fd23.json rename to allure-report/data/test-cases/48fd693c7a7ddc9e.json index aae34ab..e6eaf30 100644 --- a/allure-report/data/test-cases/5798cba72c59fd23.json +++ b/allure-report/data/test-cases/48fd693c7a7ddc9e.json @@ -1 +1 @@ -{"uid":"5798cba72c59fd23","name":"Оба поля пустые","fullName":"ui/login/login.negative.spec.ts:27:7","historyId":"58990385f74407307e4ace7ad02abf05:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750075563694,"stop":1750075564613,"duration":919},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075563694,"stop":1750075563825,"duration":131},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075563696,"stop":1750075563701,"duration":5},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075563697,"stop":1750075563700,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075563701,"stop":1750075563825,"duration":124},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075563702,"stop":1750075563825,"duration":123},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075563826,"stop":1750075564321,"duration":495},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750075564322,"stop":1750075564479,"duration":157},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750075564481,"stop":1750075564535,"duration":54},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750075564539,"stop":1750075564598,"duration":59},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075564599,"stop":1750075564610,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075564610,"stop":1750075564612,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075564612,"stop":1750075564616,"duration":4},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075564612,"stop":1750075564613,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075564613,"stop":1750075564613,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-0"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5798cba72c59fd23.json","parameterValues":["webkit"]} \ No newline at end of file +{"uid":"48fd693c7a7ddc9e","name":"Оба поля пустые","fullName":"ui/login/login.negative.spec.ts:27:7","historyId":"58990385f74407307e4ace7ad02abf05:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750075563694,"stop":1750075564613,"duration":919},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075563694,"stop":1750075563825,"duration":131},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075563696,"stop":1750075563701,"duration":5},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075563697,"stop":1750075563700,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075563701,"stop":1750075563825,"duration":124},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075563702,"stop":1750075563825,"duration":123},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075563826,"stop":1750075564321,"duration":495},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750075564322,"stop":1750075564479,"duration":157},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750075564481,"stop":1750075564535,"duration":54},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750075564539,"stop":1750075564598,"duration":59},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075564599,"stop":1750075564610,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075564610,"stop":1750075564612,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075564612,"stop":1750075564616,"duration":4},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075564612,"stop":1750075564613,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075564613,"stop":1750075564613,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-0"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"48fd693c7a7ddc9e.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/49ebdbe06de4baa5.json b/allure-report/data/test-cases/49ebdbe06de4baa5.json new file mode 100644 index 0000000..6df873a --- /dev/null +++ b/allure-report/data/test-cases/49ebdbe06de4baa5.json @@ -0,0 +1 @@ +{"uid":"49ebdbe06de4baa5","name":"Неверный пароль","fullName":"ui/login/login.negative.spec.ts:7:7","historyId":"500ad758ee2db2bb60aa832fb0abbb94:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750252854648,"stop":1750252856137,"duration":1489},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252854648,"stop":1750252854804,"duration":156},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252854649,"stop":1750252854658,"duration":9},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252854649,"stop":1750252854657,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252854658,"stop":1750252854804,"duration":146},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252854659,"stop":1750252854804,"duration":145},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750252854807,"stop":1750252855835,"duration":1028},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750252855837,"stop":1750252855911,"duration":74},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(wrongpass)","time":{"start":1750252855912,"stop":1750252855938,"duration":26},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750252855940,"stop":1750252856017,"duration":77},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252856019,"stop":1750252856133,"duration":114},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252856133,"stop":1750252856139,"duration":6},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252856133,"stop":1750252856133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252856134,"stop":1750252856134,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-2"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"49ebdbe06de4baa5.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4c13cbb6f8f85fc3.json b/allure-report/data/test-cases/4c13cbb6f8f85fc3.json new file mode 100644 index 0000000..347f457 --- /dev/null +++ b/allure-report/data/test-cases/4c13cbb6f8f85fc3.json @@ -0,0 +1 @@ +{"uid":"4c13cbb6f8f85fc3","name":"Переключатель видимости пароля показывает и скрывает ввод","fullName":"ui/login/login.ui.spec.ts:7:7","historyId":"b1726395bd827a3a21fe3c829a098be4:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253482557,"stop":1750253490549,"duration":7992},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253482556,"stop":1750253482599,"duration":43},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253482557,"stop":1750253482561,"duration":4},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253482558,"stop":1750253482560,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253482561,"stop":1750253482599,"duration":38},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253482561,"stop":1750253482599,"duration":38},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750253482600,"stop":1750253489712,"duration":7112},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750253489713,"stop":1750253489765,"duration":52},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750253489767,"stop":1750253489770,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750253489770,"stop":1750253489771,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByAltText('показать пароль').click","time":{"start":1750253489771,"stop":1750253489810,"duration":39},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750253489811,"stop":1750253489813,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750253489814,"stop":1750253489814,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByAltText('показать пароль').click","time":{"start":1750253489816,"stop":1750253489857,"duration":41},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750253489858,"stop":1750253489860,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750253489860,"stop":1750253489860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253489861,"stop":1750253490549,"duration":688},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253489861,"stop":1750253489861,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253489861,"stop":1750253489861,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":18,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.ui.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.ui.spec.ts > UI сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.ui.spec.ts"},{"name":"subSuite","value":"UI сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"4c13cbb6f8f85fc3.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b20bbc8741046798.json b/allure-report/data/test-cases/4cc1e10a9621a104.json similarity index 94% rename from allure-report/data/test-cases/b20bbc8741046798.json rename to allure-report/data/test-cases/4cc1e10a9621a104.json index 3526b83..a3c4c25 100644 --- a/allure-report/data/test-cases/b20bbc8741046798.json +++ b/allure-report/data/test-cases/4cc1e10a9621a104.json @@ -1 +1 @@ -{"uid":"b20bbc8741046798","name":"Пароли не совпадают","fullName":"ui/recovery/recover-negative.spec.ts:56:7","historyId":"a7eaebb1e41fbbf13bf61195120b3ce9:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750084492974,"stop":1750084493874,"duration":900},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084492974,"stop":1750084493022,"duration":48},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084492975,"stop":1750084492976,"duration":1},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084492975,"stop":1750084492976,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084492976,"stop":1750084493022,"duration":46},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084492977,"stop":1750084493022,"duration":45},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750084493023,"stop":1750084493515,"duration":492},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084493518,"stop":1750084493564,"duration":46},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750084493566,"stop":1750084493605,"duration":39},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750084493606,"stop":1750084493607,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084493608,"stop":1750084493676,"duration":68},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084493678,"stop":1750084493683,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084493683,"stop":1750084493686,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084493687,"stop":1750084493691,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084493691,"stop":1750084493697,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084493698,"stop":1750084493708,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084493712,"stop":1750084493755,"duration":43},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750084493755,"stop":1750084493833,"duration":78},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!OtherPass123)","time":{"start":1750084493833,"stop":1750084493837,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084493837,"stop":1750084493866,"duration":29},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084493866,"stop":1750084493869,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084493870,"stop":1750084493876,"duration":6},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084493870,"stop":1750084493870,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084493870,"stop":1750084493870,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a41465dcbdf5bc12","status":"passed","time":{"start":1750075550475,"stop":1750075551375,"duration":900}}],"categories":[],"tags":[]},"source":"b20bbc8741046798.json","parameterValues":["chromium"]} \ No newline at end of file +{"uid":"4cc1e10a9621a104","name":"Пароли не совпадают","fullName":"ui/recovery/recover-negative.spec.ts:56:7","historyId":"a7eaebb1e41fbbf13bf61195120b3ce9:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750084492974,"stop":1750084493874,"duration":900},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084492974,"stop":1750084493022,"duration":48},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084492975,"stop":1750084492976,"duration":1},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084492975,"stop":1750084492976,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084492976,"stop":1750084493022,"duration":46},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084492977,"stop":1750084493022,"duration":45},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750084493023,"stop":1750084493515,"duration":492},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084493518,"stop":1750084493564,"duration":46},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750084493566,"stop":1750084493605,"duration":39},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750084493606,"stop":1750084493607,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084493608,"stop":1750084493676,"duration":68},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084493678,"stop":1750084493683,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084493683,"stop":1750084493686,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084493687,"stop":1750084493691,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084493691,"stop":1750084493697,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084493698,"stop":1750084493708,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084493712,"stop":1750084493755,"duration":43},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750084493755,"stop":1750084493833,"duration":78},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!OtherPass123)","time":{"start":1750084493833,"stop":1750084493837,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084493837,"stop":1750084493866,"duration":29},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084493866,"stop":1750084493869,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084493870,"stop":1750084493876,"duration":6},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084493870,"stop":1750084493870,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084493870,"stop":1750084493870,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"4cc1e10a9621a104.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3c11c1516f549102.json b/allure-report/data/test-cases/4dace988f27a41e3.json similarity index 98% rename from allure-report/data/test-cases/3c11c1516f549102.json rename to allure-report/data/test-cases/4dace988f27a41e3.json index 9a27b7c..3023682 100644 --- a/allure-report/data/test-cases/3c11c1516f549102.json +++ b/allure-report/data/test-cases/4dace988f27a41e3.json @@ -1 +1 @@ -{"uid":"3c11c1516f549102","name":"Неверный код подтверждения","fullName":"ui/recovery/recover-negative.spec.ts:23:7","historyId":"31f03826b2a8da254be42b2d49bc35f3:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750075549609,"stop":1750075550703,"duration":1094},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075549609,"stop":1750075549647,"duration":38},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075549610,"stop":1750075549613,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075549610,"stop":1750075549613,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075549613,"stop":1750075549647,"duration":34},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075549613,"stop":1750075549647,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750075549650,"stop":1750075550339,"duration":689},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075550340,"stop":1750075550380,"duration":40},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750075550381,"stop":1750075550421,"duration":40},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750075550421,"stop":1750075550525,"duration":104},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750075550525,"stop":1750075550526,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(6)","time":{"start":1750075550527,"stop":1750075550533,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(5)","time":{"start":1750075550533,"stop":1750075550537,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(4)","time":{"start":1750075550537,"stop":1750075550540,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(3)","time":{"start":1750075550540,"stop":1750075550543,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(2)","time":{"start":1750075550544,"stop":1750075550546,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(1)","time":{"start":1750075550547,"stop":1750075550550,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075550551,"stop":1750075550589,"duration":38},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075550590,"stop":1750075550700,"duration":110},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075550700,"stop":1750075550705,"duration":5},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075550701,"stop":1750075550701,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075550701,"stop":1750075550701,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":21,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"3c11c1516f549102.json","parameterValues":["chromium"]} \ No newline at end of file +{"uid":"4dace988f27a41e3","name":"Неверный код подтверждения","fullName":"ui/recovery/recover-negative.spec.ts:23:7","historyId":"31f03826b2a8da254be42b2d49bc35f3:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750075549609,"stop":1750075550703,"duration":1094},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075549609,"stop":1750075549647,"duration":38},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075549610,"stop":1750075549613,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075549610,"stop":1750075549613,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075549613,"stop":1750075549647,"duration":34},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075549613,"stop":1750075549647,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750075549650,"stop":1750075550339,"duration":689},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075550340,"stop":1750075550380,"duration":40},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750075550381,"stop":1750075550421,"duration":40},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750075550421,"stop":1750075550525,"duration":104},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750075550525,"stop":1750075550526,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(6)","time":{"start":1750075550527,"stop":1750075550533,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(5)","time":{"start":1750075550533,"stop":1750075550537,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(4)","time":{"start":1750075550537,"stop":1750075550540,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(3)","time":{"start":1750075550540,"stop":1750075550543,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(2)","time":{"start":1750075550544,"stop":1750075550546,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(1)","time":{"start":1750075550547,"stop":1750075550550,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075550551,"stop":1750075550589,"duration":38},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075550590,"stop":1750075550700,"duration":110},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075550700,"stop":1750075550705,"duration":5},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075550701,"stop":1750075550701,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075550701,"stop":1750075550701,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":21,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"4dace988f27a41e3.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4e81c8878ef899b8.json b/allure-report/data/test-cases/4e81c8878ef899b8.json new file mode 100644 index 0000000..f23b005 --- /dev/null +++ b/allure-report/data/test-cases/4e81c8878ef899b8.json @@ -0,0 +1 @@ +{"uid":"4e81c8878ef899b8","name":"Успешная регистрация нового пользователя","fullName":"ui/registration/register.spec.ts:6:7","historyId":"3562648cd3231e14b42a7151c17c62aa:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750175955750,"stop":1750176008146,"duration":52396},"status":"failed","statusMessage":"Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected)\n\nLocator: locator(':root')\nExpected pattern: /\\/login\\/confirmLogin/\nReceived string: \"https://ssas.dev.rdcenter.ru/login/registration\"\nCall log:\n - expect.toHaveURL with timeout 5000ms\n - waiting for locator(':root')\n 9 × locator resolved to …\n - unexpected value \"https://ssas.dev.rdcenter.ru/login/registration\"\n","statusTrace":"Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected)\n\nLocator: locator(':root')\nExpected pattern: /\\/login\\/confirmLogin/\nReceived string: \"https://ssas.dev.rdcenter.ru/login/registration\"\nCall log:\n - expect.toHaveURL with timeout 5000ms\n - waiting for locator(':root')\n 9 × locator resolved to …\n - unexpected value \"https://ssas.dev.rdcenter.ru/login/registration\"\n\n at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.spec.ts:30:24","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"failed","statusMessage":"Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected)\n\nLocator: locator(':root')\nExpected pattern: /\\/login\\/confirmLogin/\nReceived string: \"https://ssas.dev.rdcenter.ru/login/registration\"\nCall log:\n - expect.toHaveURL with timeout 5000ms\n - waiting for locator(':root')\n 9 × locator resolved to …\n - unexpected value \"https://ssas.dev.rdcenter.ru/login/registration\"\n","statusTrace":"Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected)\n\nLocator: locator(':root')\nExpected pattern: /\\/login\\/confirmLogin/\nReceived string: \"https://ssas.dev.rdcenter.ru/login/registration\"\nCall log:\n - expect.toHaveURL with timeout 5000ms\n - waiting for locator(':root')\n 9 × locator resolved to …\n - unexpected value \"https://ssas.dev.rdcenter.ru/login/registration\"\n\n at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.spec.ts:30:24","steps":[{"name":"Before Hooks","time":{"start":1750175955746,"stop":1750175957748,"duration":2002},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750175955749,"stop":1750175956554,"duration":805},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750175955750,"stop":1750175956554,"duration":804},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750175956555,"stop":1750175957370,"duration":815},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750175956556,"stop":1750175957369,"duration":813},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750175957370,"stop":1750175957748,"duration":378},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750175957371,"stop":1750175957748,"duration":377},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750175957752,"stop":1750175961232,"duration":3480},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Иван)","time":{"start":1750175961236,"stop":1750175961885,"duration":649},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Тестов)","time":{"start":1750175961886,"stop":1750175962677,"duration":791},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Александрович)","time":{"start":1750175962679,"stop":1750175963223,"duration":544},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёное звание*').click","time":{"start":1750175963225,"stop":1750175963726,"duration":501},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Доцент\"i)","time":{"start":1750175963727,"stop":1750175965099,"duration":1372},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёная степень*').click","time":{"start":1750175965101,"stop":1750175966083,"duration":982},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Кандидат наук\"i)","time":{"start":1750175966084,"stop":1750175968947,"duration":2863},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Преподаватель)","time":{"start":1750175968949,"stop":1750175969823,"duration":874},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(ЮФУ)","time":{"start":1750175969825,"stop":1750175970986,"duration":1161},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest29704@example.com)","time":{"start":1750175970987,"stop":1750175972199,"duration":1212},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(+7987029704)","time":{"start":1750175972200,"stop":1750175973624,"duration":1424},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123)","time":{"start":1750175973625,"stop":1750175974660,"duration":1035},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123)","time":{"start":1750175974661,"stop":1750175975824,"duration":1163},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750175975826,"stop":1750175979494,"duration":3668},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750175979500,"stop":1750176008894,"duration":29394},"status":"failed","statusMessage":"Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected)\n\nLocator: locator(':root')\nExpected pattern: /\\/login\\/confirmLogin/\nReceived string: \"https://ssas.dev.rdcenter.ru/login/registration\"\nCall log:\n - expect.toHaveURL with timeout 5000ms\n - waiting for locator(':root')\n 9 × locator resolved to …\n - unexpected value \"https://ssas.dev.rdcenter.ru/login/registration\"\n","statusTrace":"Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected)\n\nLocator: locator(':root')\nExpected pattern: /\\/login\\/confirmLogin/\nReceived string: \"https://ssas.dev.rdcenter.ru/login/registration\"\nCall log:\n - expect.toHaveURL with timeout 5000ms\n - waiting for locator(':root')\n 9 × locator resolved to …\n - unexpected value \"https://ssas.dev.rdcenter.ru/login/registration\"\n\n at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.spec.ts:30:24","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":true,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"_error-context-0","time":{"start":1750176009161,"stop":1750176009161,"duration":0},"status":"unknown","steps":[],"attachments":[{"uid":"b8cd5c9b73ae48f9","name":"_error-context-0","source":"b8cd5c9b73ae48f9.md","type":"text/markdown","size":5347}],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":1,"hasContent":true,"attachmentStep":true},{"name":"After Hooks","time":{"start":1750176008895,"stop":1750176008956,"duration":61},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750176008896,"stop":1750176008897,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750176008898,"stop":1750176008898,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":27,"shouldDisplayMessage":false,"attachmentsCount":1,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.spec.ts > Позитивные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-52998-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.spec.ts"},{"name":"subSuite","value":"Позитивные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"4e81c8878ef899b8.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4eebb1230811a3dd.json b/allure-report/data/test-cases/4eebb1230811a3dd.json new file mode 100644 index 0000000..cd36209 --- /dev/null +++ b/allure-report/data/test-cases/4eebb1230811a3dd.json @@ -0,0 +1 @@ +{"uid":"4eebb1230811a3dd","name":"Пароли не совпадают","fullName":"ui/recovery/recover-negative.spec.ts:56:7","historyId":"a7eaebb1e41fbbf13bf61195120b3ce9:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253562798,"stop":1750253569425,"duration":6627},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253562798,"stop":1750253562840,"duration":42},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253562799,"stop":1750253562801,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253562799,"stop":1750253562800,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253562802,"stop":1750253562839,"duration":37},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253562802,"stop":1750253562839,"duration":37},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750253562840,"stop":1750253563862,"duration":1022},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750253563865,"stop":1750253563888,"duration":23},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750253563889,"stop":1750253563934,"duration":45},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750253563934,"stop":1750253563937,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253563937,"stop":1750253564050,"duration":113},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253564050,"stop":1750253564058,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253564058,"stop":1750253564069,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253564069,"stop":1750253564074,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253564075,"stop":1750253564079,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253564080,"stop":1750253564085,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750253564086,"stop":1750253564117,"duration":31},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750253564117,"stop":1750253564203,"duration":86},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!OtherPass123)","time":{"start":1750253564203,"stop":1750253564209,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750253564209,"stop":1750253564251,"duration":42},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253564252,"stop":1750253564255,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253564255,"stop":1750253569426,"duration":5171},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253564255,"stop":1750253564255,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253564256,"stop":1750253564256,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b422c235cec2874a","status":"passed","time":{"start":1750253490151,"stop":1750253491935,"duration":1784}},{"uid":"3e17e2a7e63bcb14","status":"passed","time":{"start":1750252820406,"stop":1750252824534,"duration":4128}},{"uid":"4cc1e10a9621a104","status":"passed","time":{"start":1750084492974,"stop":1750084493874,"duration":900}},{"uid":"894992e7a7115936","status":"passed","time":{"start":1750075550475,"stop":1750075551375,"duration":900}}],"categories":[],"tags":[]},"source":"4eebb1230811a3dd.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4f1aa5b9d024f030.json b/allure-report/data/test-cases/4f1aa5b9d024f030.json new file mode 100644 index 0000000..82f97ff --- /dev/null +++ b/allure-report/data/test-cases/4f1aa5b9d024f030.json @@ -0,0 +1 @@ +{"uid":"4f1aa5b9d024f030","name":"Только email без пароля","fullName":"ui/login/login.negative.spec.ts:37:7","historyId":"8c67bb2f4fb916157fb6191bbb5e4267:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750252811926,"stop":1750252812980,"duration":1054},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252811926,"stop":1750252811971,"duration":45},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252811927,"stop":1750252811929,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252811927,"stop":1750252811928,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252811929,"stop":1750252811970,"duration":41},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252811930,"stop":1750252811970,"duration":40},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750252811971,"stop":1750252812849,"duration":878},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750252812850,"stop":1750252812900,"duration":50},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750252812901,"stop":1750252812939,"duration":38},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750252812940,"stop":1750252812973,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252812973,"stop":1750252812976,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252812976,"stop":1750252812982,"duration":6},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252812976,"stop":1750252812976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252812976,"stop":1750252812976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"4f1aa5b9d024f030.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4f4f1d642652a42c.json b/allure-report/data/test-cases/4f4f1d642652a42c.json new file mode 100644 index 0000000..39b377c --- /dev/null +++ b/allure-report/data/test-cases/4f4f1d642652a42c.json @@ -0,0 +1 @@ +{"uid":"4f4f1d642652a42c","name":"Отправка пустой формы","fullName":"ui/registration/register.negative.spec.ts:6:7","historyId":"61b0fd9a6b9153c787b71ef3413cea92:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750252705775,"stop":1750252746151,"duration":40376},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252705769,"stop":1750252707953,"duration":2184},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750252705772,"stop":1750252706652,"duration":880},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750252705773,"stop":1750252706652,"duration":879},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252706653,"stop":1750252707428,"duration":775},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252706654,"stop":1750252707425,"duration":771},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252707428,"stop":1750252707953,"duration":525},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252707429,"stop":1750252707953,"duration":524},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750252707957,"stop":1750252716447,"duration":8490},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750252716451,"stop":1750252717549,"duration":1098},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.allTextContents(div[name=\"error\"] >> internal:has-text=\"Поле обязательно для заполнения\"i)","time":{"start":1750252717550,"stop":1750252744940,"duration":27390},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeGreaterThan","time":{"start":1750252744944,"stop":1750252744945,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252744947,"stop":1750252746993,"duration":2046},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252746993,"stop":1750252747030,"duration":37},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252746994,"stop":1750252746995,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252746995,"stop":1750252746995,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":15,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-57952-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"4f4f1d642652a42c.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5a5e4227a4d69e41.json b/allure-report/data/test-cases/4f817cd0642eaed2.json similarity index 97% rename from allure-report/data/test-cases/5a5e4227a4d69e41.json rename to allure-report/data/test-cases/4f817cd0642eaed2.json index c569b4c..303a14e 100644 --- a/allure-report/data/test-cases/5a5e4227a4d69e41.json +++ b/allure-report/data/test-cases/4f817cd0642eaed2.json @@ -1 +1 @@ -{"uid":"5a5e4227a4d69e41","name":"Неверный код подтверждения","fullName":"ui/recovery/recover-negative.spec.ts:23:7","historyId":"31f03826b2a8da254be42b2d49bc35f3:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750075558336,"stop":1750075560026,"duration":1690},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075558338,"stop":1750075558693,"duration":355},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075558341,"stop":1750075558444,"duration":103},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075558342,"stop":1750075558444,"duration":102},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075558445,"stop":1750075558693,"duration":248},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075558445,"stop":1750075558693,"duration":248},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750075558694,"stop":1750075559521,"duration":827},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075559523,"stop":1750075559554,"duration":31},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750075559554,"stop":1750075559675,"duration":121},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750075559678,"stop":1750075559790,"duration":112},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750075559791,"stop":1750075559794,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(6)","time":{"start":1750075559794,"stop":1750075559807,"duration":13},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(5)","time":{"start":1750075559807,"stop":1750075559812,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(4)","time":{"start":1750075559812,"stop":1750075559821,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(3)","time":{"start":1750075559822,"stop":1750075559827,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(2)","time":{"start":1750075559827,"stop":1750075559835,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(1)","time":{"start":1750075559835,"stop":1750075559840,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075559840,"stop":1750075559898,"duration":58},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075559899,"stop":1750075560019,"duration":120},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075560021,"stop":1750075560034,"duration":13},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075560024,"stop":1750075560024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075560024,"stop":1750075560024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":21,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-1"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5a5e4227a4d69e41.json","parameterValues":["firefox"]} \ No newline at end of file +{"uid":"4f817cd0642eaed2","name":"Неверный код подтверждения","fullName":"ui/recovery/recover-negative.spec.ts:23:7","historyId":"31f03826b2a8da254be42b2d49bc35f3:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750075558336,"stop":1750075560026,"duration":1690},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075558338,"stop":1750075558693,"duration":355},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075558341,"stop":1750075558444,"duration":103},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075558342,"stop":1750075558444,"duration":102},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075558445,"stop":1750075558693,"duration":248},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075558445,"stop":1750075558693,"duration":248},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750075558694,"stop":1750075559521,"duration":827},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075559523,"stop":1750075559554,"duration":31},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750075559554,"stop":1750075559675,"duration":121},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750075559678,"stop":1750075559790,"duration":112},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750075559791,"stop":1750075559794,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(6)","time":{"start":1750075559794,"stop":1750075559807,"duration":13},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(5)","time":{"start":1750075559807,"stop":1750075559812,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(4)","time":{"start":1750075559812,"stop":1750075559821,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(3)","time":{"start":1750075559822,"stop":1750075559827,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(2)","time":{"start":1750075559827,"stop":1750075559835,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(1)","time":{"start":1750075559835,"stop":1750075559840,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075559840,"stop":1750075559898,"duration":58},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075559899,"stop":1750075560019,"duration":120},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075560021,"stop":1750075560034,"duration":13},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075560024,"stop":1750075560024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075560024,"stop":1750075560024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":21,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-1"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"4f817cd0642eaed2.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4fd8070ee07c07e1.json b/allure-report/data/test-cases/4fd8070ee07c07e1.json new file mode 100644 index 0000000..86c82df --- /dev/null +++ b/allure-report/data/test-cases/4fd8070ee07c07e1.json @@ -0,0 +1 @@ +{"uid":"4fd8070ee07c07e1","name":"Переключатель видимости пароля показывает и скрывает ввод","fullName":"ui/login/login.ui.spec.ts:7:7","historyId":"b1726395bd827a3a21fe3c829a098be4:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253554502,"stop":1750253556660,"duration":2158},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253554502,"stop":1750253554544,"duration":42},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253554503,"stop":1750253554506,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253554503,"stop":1750253554505,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253554506,"stop":1750253554544,"duration":38},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253554507,"stop":1750253554544,"duration":37},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750253554545,"stop":1750253555619,"duration":1074},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750253555620,"stop":1750253555758,"duration":138},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750253555759,"stop":1750253555768,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750253555769,"stop":1750253555770,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByAltText('показать пароль').click","time":{"start":1750253555770,"stop":1750253555823,"duration":53},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750253555824,"stop":1750253555829,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750253555829,"stop":1750253555830,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByAltText('показать пароль').click","time":{"start":1750253555830,"stop":1750253555869,"duration":39},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750253555869,"stop":1750253555877,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750253555878,"stop":1750253555879,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253555879,"stop":1750253556663,"duration":784},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253555880,"stop":1750253555880,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253555880,"stop":1750253555880,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":18,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.ui.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.ui.spec.ts > UI сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.ui.spec.ts"},{"name":"subSuite","value":"UI сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4c13cbb6f8f85fc3","status":"passed","time":{"start":1750253482557,"stop":1750253490549,"duration":7992}},{"uid":"85e2816b7097b4a1","status":"passed","time":{"start":1750252813037,"stop":1750252813951,"duration":914}},{"uid":"558682f3bb3bfaf6","status":"passed","time":{"start":1750084491357,"stop":1750084492371,"duration":1014}},{"uid":"d7c5bc357fa3c7c0","status":"passed","time":{"start":1750075548938,"stop":1750075549652,"duration":714}}],"categories":[],"tags":[]},"source":"4fd8070ee07c07e1.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5179e2557b0c956.json b/allure-report/data/test-cases/5179e2557b0c956.json new file mode 100644 index 0000000..68b9fd6 --- /dev/null +++ b/allure-report/data/test-cases/5179e2557b0c956.json @@ -0,0 +1 @@ +{"uid":"5179e2557b0c956","name":"Переход по ссылке \"Забыли пароль?\"","fullName":"ui/login/login.link.spec.ts:6:5","historyId":"91fcabcb669557e4ddb559c077420e45:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750084487578,"stop":1750084490119,"duration":2541},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084487574,"stop":1750084488227,"duration":653},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750084487582,"stop":1750084487985,"duration":403},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750084487584,"stop":1750084487984,"duration":400},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084487986,"stop":1750084487995,"duration":9},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084487989,"stop":1750084487994,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084487995,"stop":1750084488227,"duration":232},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084487996,"stop":1750084488227,"duration":231},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084488231,"stop":1750084490375,"duration":2144},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByText('Забыли пароль?').click","time":{"start":1750084490378,"stop":1750084490494,"duration":116},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750084490496,"stop":1750084490512,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084490512,"stop":1750084490517,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084490517,"stop":1750084490523,"duration":6},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084490517,"stop":1750084490517,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084490517,"stop":1750084490517,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5179e2557b0c956.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/51bfbf0c4b256386.json b/allure-report/data/test-cases/51bfbf0c4b256386.json new file mode 100644 index 0000000..d309359 --- /dev/null +++ b/allure-report/data/test-cases/51bfbf0c4b256386.json @@ -0,0 +1 @@ +{"uid":"51bfbf0c4b256386","name":"Некорректный email формат","fullName":"ui/registration/register.negative.spec.ts:28:7","historyId":"de8c598c53adc6e2133478f1b9141597:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750252750885,"stop":1750252754589,"duration":3704},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252750883,"stop":1750252751820,"duration":937},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252750885,"stop":1750252751584,"duration":699},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252750886,"stop":1750252751581,"duration":695},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252751584,"stop":1750252751820,"duration":236},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252751586,"stop":1750252751820,"duration":234},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750252751820,"stop":1750252754439,"duration":2619},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(invalid-email)","time":{"start":1750252754440,"stop":1750252754502,"duration":62},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750252754503,"stop":1750252754536,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252754536,"stop":1750252754542,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252754542,"stop":1750252754591,"duration":49},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252754543,"stop":1750252754543,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252754543,"stop":1750252754543,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-57952-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"51bfbf0c4b256386.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/53aaefdb897b52b.json b/allure-report/data/test-cases/53aaefdb897b52b.json new file mode 100644 index 0000000..cca9bb9 --- /dev/null +++ b/allure-report/data/test-cases/53aaefdb897b52b.json @@ -0,0 +1 @@ +{"uid":"53aaefdb897b52b","name":"Пользователь должен успешно залогиниться с валидными данными","fullName":"ui/login/login.spec.ts:7:7","historyId":"92a5ca35180a4cbe902714b987a6bf44:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253480536,"stop":1750253482646,"duration":2110},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253480537,"stop":1750253480573,"duration":36},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253480538,"stop":1750253480540,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253480538,"stop":1750253480539,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253480540,"stop":1750253480573,"duration":33},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253480540,"stop":1750253480573,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750253480574,"stop":1750253481604,"duration":1030},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750253481605,"stop":1750253481627,"duration":22},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750253481627,"stop":1750253481663,"duration":36},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750253481664,"stop":1750253481706,"duration":42},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750253481706,"stop":1750253481818,"duration":112},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253481819,"stop":1750253481824,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253481824,"stop":1750253482649,"duration":825},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253481824,"stop":1750253481824,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253481824,"stop":1750253481824,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.spec.ts > Авторизация пользователя"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-1"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.spec.ts"},{"name":"subSuite","value":"Авторизация пользователя"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"53aaefdb897b52b.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/589b172d059c0837.json b/allure-report/data/test-cases/53e59e459b5cddf9.json similarity index 92% rename from allure-report/data/test-cases/589b172d059c0837.json rename to allure-report/data/test-cases/53e59e459b5cddf9.json index 514cfc8..d7d5e57 100644 --- a/allure-report/data/test-cases/589b172d059c0837.json +++ b/allure-report/data/test-cases/53e59e459b5cddf9.json @@ -1 +1 @@ -{"uid":"589b172d059c0837","name":"Только email без пароля","fullName":"ui/login/login.negative.spec.ts:37:7","historyId":"8c67bb2f4fb916157fb6191bbb5e4267:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750084499301,"stop":1750084500455,"duration":1154},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084499301,"stop":1750084499499,"duration":198},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084499302,"stop":1750084499309,"duration":7},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084499303,"stop":1750084499308,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084499309,"stop":1750084499499,"duration":190},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084499309,"stop":1750084499499,"duration":190},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084499501,"stop":1750084500304,"duration":803},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084500307,"stop":1750084500355,"duration":48},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750084500356,"stop":1750084500376,"duration":20},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750084500376,"stop":1750084500443,"duration":67},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084500443,"stop":1750084500450,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084500450,"stop":1750084500458,"duration":8},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084500451,"stop":1750084500451,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084500451,"stop":1750084500451,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"2e73b968ec7d6136","status":"passed","time":{"start":1750075555728,"stop":1750075557066,"duration":1338}}],"categories":[],"tags":[]},"source":"589b172d059c0837.json","parameterValues":["firefox"]} \ No newline at end of file +{"uid":"53e59e459b5cddf9","name":"Только email без пароля","fullName":"ui/login/login.negative.spec.ts:37:7","historyId":"8c67bb2f4fb916157fb6191bbb5e4267:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750084499301,"stop":1750084500455,"duration":1154},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084499301,"stop":1750084499499,"duration":198},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084499302,"stop":1750084499309,"duration":7},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084499303,"stop":1750084499308,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084499309,"stop":1750084499499,"duration":190},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084499309,"stop":1750084499499,"duration":190},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084499501,"stop":1750084500304,"duration":803},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084500307,"stop":1750084500355,"duration":48},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750084500356,"stop":1750084500376,"duration":20},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750084500376,"stop":1750084500443,"duration":67},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084500443,"stop":1750084500450,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084500450,"stop":1750084500458,"duration":8},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084500451,"stop":1750084500451,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084500451,"stop":1750084500451,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"53e59e459b5cddf9.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c82bf9b727e4250d.json b/allure-report/data/test-cases/558682f3bb3bfaf6.json similarity index 93% rename from allure-report/data/test-cases/c82bf9b727e4250d.json rename to allure-report/data/test-cases/558682f3bb3bfaf6.json index f34e74b..b4d8b2a 100644 --- a/allure-report/data/test-cases/c82bf9b727e4250d.json +++ b/allure-report/data/test-cases/558682f3bb3bfaf6.json @@ -1 +1 @@ -{"uid":"c82bf9b727e4250d","name":"Переключатель видимости пароля показывает и скрывает ввод","fullName":"ui/login/login.ui.spec.ts:7:7","historyId":"b1726395bd827a3a21fe3c829a098be4:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750084491357,"stop":1750084492371,"duration":1014},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084491357,"stop":1750084491395,"duration":38},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084491358,"stop":1750084491359,"duration":1},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084491358,"stop":1750084491359,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084491359,"stop":1750084491395,"duration":36},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084491360,"stop":1750084491395,"duration":35},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084491395,"stop":1750084492214,"duration":819},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750084492215,"stop":1750084492295,"duration":80},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750084492296,"stop":1750084492298,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750084492298,"stop":1750084492298,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByAltText('показать пароль').click","time":{"start":1750084492299,"stop":1750084492332,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750084492332,"stop":1750084492333,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750084492333,"stop":1750084492333,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByAltText('показать пароль').click","time":{"start":1750084492334,"stop":1750084492365,"duration":31},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750084492365,"stop":1750084492366,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750084492367,"stop":1750084492367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084492367,"stop":1750084492372,"duration":5},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084492367,"stop":1750084492367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084492367,"stop":1750084492367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":18,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.ui.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.ui.spec.ts > UI сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.ui.spec.ts"},{"name":"subSuite","value":"UI сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9ff2d401b597dd93","status":"passed","time":{"start":1750075548938,"stop":1750075549652,"duration":714}}],"categories":[],"tags":[]},"source":"c82bf9b727e4250d.json","parameterValues":["chromium"]} \ No newline at end of file +{"uid":"558682f3bb3bfaf6","name":"Переключатель видимости пароля показывает и скрывает ввод","fullName":"ui/login/login.ui.spec.ts:7:7","historyId":"b1726395bd827a3a21fe3c829a098be4:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750084491357,"stop":1750084492371,"duration":1014},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084491357,"stop":1750084491395,"duration":38},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084491358,"stop":1750084491359,"duration":1},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084491358,"stop":1750084491359,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084491359,"stop":1750084491395,"duration":36},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084491360,"stop":1750084491395,"duration":35},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084491395,"stop":1750084492214,"duration":819},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750084492215,"stop":1750084492295,"duration":80},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750084492296,"stop":1750084492298,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750084492298,"stop":1750084492298,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByAltText('показать пароль').click","time":{"start":1750084492299,"stop":1750084492332,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750084492332,"stop":1750084492333,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750084492333,"stop":1750084492333,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByAltText('показать пароль').click","time":{"start":1750084492334,"stop":1750084492365,"duration":31},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750084492365,"stop":1750084492366,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750084492367,"stop":1750084492367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084492367,"stop":1750084492372,"duration":5},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084492367,"stop":1750084492367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084492367,"stop":1750084492367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":18,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.ui.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.ui.spec.ts > UI сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.ui.spec.ts"},{"name":"subSuite","value":"UI сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"558682f3bb3bfaf6.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/55c6c53c698ff383.json b/allure-report/data/test-cases/55c6c53c698ff383.json new file mode 100644 index 0000000..9e7b7e1 --- /dev/null +++ b/allure-report/data/test-cases/55c6c53c698ff383.json @@ -0,0 +1 @@ +{"uid":"55c6c53c698ff383","name":"Слишком длинная должность","fullName":"ui/registration/register.negative.spec.ts:38:7","historyId":"2214c0f917091cfcda832cd03e01bb76:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750252862644,"stop":1750252863718,"duration":1074},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252862646,"stop":1750252862808,"duration":162},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252862648,"stop":1750252862662,"duration":14},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252862651,"stop":1750252862661,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252862662,"stop":1750252862808,"duration":146},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252862663,"stop":1750252862808,"duration":145},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750252862810,"stop":1750252863559,"duration":749},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX)","time":{"start":1750252863560,"stop":1750252863634,"duration":74},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750252863635,"stop":1750252863702,"duration":67},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252863703,"stop":1750252863715,"duration":12},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252863716,"stop":1750252863723,"duration":7},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252863716,"stop":1750252863716,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252863716,"stop":1750252863716,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-2"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"55c6c53c698ff383.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a53cc3de606dc5ae.json b/allure-report/data/test-cases/56122822cca60081.json similarity index 92% rename from allure-report/data/test-cases/a53cc3de606dc5ae.json rename to allure-report/data/test-cases/56122822cca60081.json index 0585b2d..ba528c2 100644 --- a/allure-report/data/test-cases/a53cc3de606dc5ae.json +++ b/allure-report/data/test-cases/56122822cca60081.json @@ -1 +1 @@ -{"uid":"a53cc3de606dc5ae","name":"Переход по ссылке \"Забыли пароль?\"","fullName":"ui/login/login.link.spec.ts:6:5","historyId":"91fcabcb669557e4ddb559c077420e45:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750084494465,"stop":1750084496561,"duration":2096},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084494466,"stop":1750084496948,"duration":2482},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750084494470,"stop":1750084496179,"duration":1709},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750084494471,"stop":1750084496178,"duration":1707},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084496182,"stop":1750084496370,"duration":188},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084496192,"stop":1750084496369,"duration":177},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084496370,"stop":1750084496948,"duration":578},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084496371,"stop":1750084496948,"duration":577},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084496953,"stop":1750084497992,"duration":1039},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByText('Забыли пароль?').click","time":{"start":1750084498008,"stop":1750084498192,"duration":184},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750084498199,"stop":1750084498223,"duration":24},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084498224,"stop":1750084498254,"duration":30},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084498254,"stop":1750084498279,"duration":25},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084498255,"stop":1750084498256,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084498257,"stop":1750084498257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-3"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"97cfbc33de42faa5","status":"passed","time":{"start":1750075551914,"stop":1750075554459,"duration":2545}}],"categories":[],"tags":[]},"source":"a53cc3de606dc5ae.json","parameterValues":["firefox"]} \ No newline at end of file +{"uid":"56122822cca60081","name":"Переход по ссылке \"Забыли пароль?\"","fullName":"ui/login/login.link.spec.ts:6:5","historyId":"91fcabcb669557e4ddb559c077420e45:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750084494465,"stop":1750084496561,"duration":2096},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084494466,"stop":1750084496948,"duration":2482},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750084494470,"stop":1750084496179,"duration":1709},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750084494471,"stop":1750084496178,"duration":1707},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084496182,"stop":1750084496370,"duration":188},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084496192,"stop":1750084496369,"duration":177},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084496370,"stop":1750084496948,"duration":578},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084496371,"stop":1750084496948,"duration":577},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084496953,"stop":1750084497992,"duration":1039},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByText('Забыли пароль?').click","time":{"start":1750084498008,"stop":1750084498192,"duration":184},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750084498199,"stop":1750084498223,"duration":24},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084498224,"stop":1750084498254,"duration":30},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084498254,"stop":1750084498279,"duration":25},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084498255,"stop":1750084498256,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084498257,"stop":1750084498257,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-3"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"56122822cca60081.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/127e2567cd7d94f3.json b/allure-report/data/test-cases/5731ca0d5b2c3cb0.json similarity index 91% rename from allure-report/data/test-cases/127e2567cd7d94f3.json rename to allure-report/data/test-cases/5731ca0d5b2c3cb0.json index 38f5080..d1344ad 100644 --- a/allure-report/data/test-cases/127e2567cd7d94f3.json +++ b/allure-report/data/test-cases/5731ca0d5b2c3cb0.json @@ -1 +1 @@ -{"uid":"127e2567cd7d94f3","name":"Несуществующий email","fullName":"ui/recovery/recover-negative.spec.ts:15:7","historyId":"c118be77fa2af6f0e0052ec7489ba66c:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750084508872,"stop":1750084509760,"duration":888},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084508873,"stop":1750084509001,"duration":128},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084508874,"stop":1750084508877,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084508874,"stop":1750084508877,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084508877,"stop":1750084509001,"duration":124},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084508878,"stop":1750084509001,"duration":123},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750084509002,"stop":1750084509543,"duration":541},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(nobody@example.com)","time":{"start":1750084509543,"stop":1750084509599,"duration":56},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750084509600,"stop":1750084509644,"duration":44},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084509644,"stop":1750084509757,"duration":113},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084509757,"stop":1750084509763,"duration":6},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084509757,"stop":1750084509757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084509757,"stop":1750084509757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-3"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"226f68ac082fe856","status":"passed","time":{"start":1750075565958,"stop":1750075567080,"duration":1122}}],"categories":[],"tags":[]},"source":"127e2567cd7d94f3.json","parameterValues":["webkit"]} \ No newline at end of file +{"uid":"5731ca0d5b2c3cb0","name":"Несуществующий email","fullName":"ui/recovery/recover-negative.spec.ts:15:7","historyId":"c118be77fa2af6f0e0052ec7489ba66c:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750084508872,"stop":1750084509760,"duration":888},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084508873,"stop":1750084509001,"duration":128},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084508874,"stop":1750084508877,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084508874,"stop":1750084508877,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084508877,"stop":1750084509001,"duration":124},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084508878,"stop":1750084509001,"duration":123},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750084509002,"stop":1750084509543,"duration":541},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(nobody@example.com)","time":{"start":1750084509543,"stop":1750084509599,"duration":56},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750084509600,"stop":1750084509644,"duration":44},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084509644,"stop":1750084509757,"duration":113},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084509757,"stop":1750084509763,"duration":6},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084509757,"stop":1750084509757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084509757,"stop":1750084509757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-3"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5731ca0d5b2c3cb0.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/579b024130132991.json b/allure-report/data/test-cases/579b024130132991.json new file mode 100644 index 0000000..d599381 --- /dev/null +++ b/allure-report/data/test-cases/579b024130132991.json @@ -0,0 +1 @@ +{"uid":"579b024130132991","name":"Пользователь должен успешно залогиниться с валидными данными","fullName":"ui/login/login.spec.ts:7:7","historyId":"92a5ca35180a4cbe902714b987a6bf44:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253554444,"stop":1750253556270,"duration":1826},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253554444,"stop":1750253554492,"duration":48},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253554446,"stop":1750253554450,"duration":4},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253554446,"stop":1750253554447,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253554450,"stop":1750253554492,"duration":42},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253554450,"stop":1750253554492,"duration":42},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750253554493,"stop":1750253555333,"duration":840},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750253555335,"stop":1750253555355,"duration":20},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750253555355,"stop":1750253555392,"duration":37},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750253555394,"stop":1750253555459,"duration":65},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750253555463,"stop":1750253555592,"duration":129},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253555596,"stop":1750253555632,"duration":36},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253555633,"stop":1750253556273,"duration":640},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253555633,"stop":1750253555633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253555633,"stop":1750253555633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.spec.ts > Авторизация пользователя"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.spec.ts"},{"name":"subSuite","value":"Авторизация пользователя"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"53aaefdb897b52b","status":"passed","time":{"start":1750253480536,"stop":1750253482646,"duration":2110}},{"uid":"ef140abbb2fa0d70","status":"passed","time":{"start":1750252812984,"stop":1750252814009,"duration":1025}},{"uid":"8a3dcd384fcfe015","status":"passed","time":{"start":1750084491243,"stop":1750084492069,"duration":826}},{"uid":"fc45203ff0ba881b","status":"passed","time":{"start":1750075548782,"stop":1750075549601,"duration":819}}],"categories":[],"tags":[]},"source":"579b024130132991.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d9f77a3678ef9c68.json b/allure-report/data/test-cases/5b14cf2a3c96a4b2.json similarity index 97% rename from allure-report/data/test-cases/d9f77a3678ef9c68.json rename to allure-report/data/test-cases/5b14cf2a3c96a4b2.json index 4e9933a..725440d 100644 --- a/allure-report/data/test-cases/d9f77a3678ef9c68.json +++ b/allure-report/data/test-cases/5b14cf2a3c96a4b2.json @@ -1 +1 @@ -{"uid":"d9f77a3678ef9c68","name":"Неверный пароль","fullName":"ui/login/login.negative.spec.ts:7:7","historyId":"500ad758ee2db2bb60aa832fb0abbb94:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750075554154,"stop":1750075555529,"duration":1375},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075554154,"stop":1750075554329,"duration":175},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075554156,"stop":1750075554219,"duration":63},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075554158,"stop":1750075554218,"duration":60},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075554219,"stop":1750075554329,"duration":110},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075554220,"stop":1750075554329,"duration":109},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075554330,"stop":1750075555177,"duration":847},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075555178,"stop":1750075555295,"duration":117},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(wrongpass)","time":{"start":1750075555296,"stop":1750075555322,"duration":26},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750075555324,"stop":1750075555394,"duration":70},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075555395,"stop":1750075555519,"duration":124},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075555519,"stop":1750075555532,"duration":13},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075555519,"stop":1750075555520,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075555520,"stop":1750075555520,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-3"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"d9f77a3678ef9c68.json","parameterValues":["firefox"]} \ No newline at end of file +{"uid":"5b14cf2a3c96a4b2","name":"Неверный пароль","fullName":"ui/login/login.negative.spec.ts:7:7","historyId":"500ad758ee2db2bb60aa832fb0abbb94:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750075554154,"stop":1750075555529,"duration":1375},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075554154,"stop":1750075554329,"duration":175},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075554156,"stop":1750075554219,"duration":63},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075554158,"stop":1750075554218,"duration":60},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075554219,"stop":1750075554329,"duration":110},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075554220,"stop":1750075554329,"duration":109},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075554330,"stop":1750075555177,"duration":847},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075555178,"stop":1750075555295,"duration":117},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(wrongpass)","time":{"start":1750075555296,"stop":1750075555322,"duration":26},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750075555324,"stop":1750075555394,"duration":70},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075555395,"stop":1750075555519,"duration":124},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075555519,"stop":1750075555532,"duration":13},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075555519,"stop":1750075555520,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075555520,"stop":1750075555520,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-3"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5b14cf2a3c96a4b2.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5b89479a48d172ab.json b/allure-report/data/test-cases/5b89479a48d172ab.json new file mode 100644 index 0000000..a7073fd --- /dev/null +++ b/allure-report/data/test-cases/5b89479a48d172ab.json @@ -0,0 +1 @@ +{"uid":"5b89479a48d172ab","name":"Переход по ссылке \"Зарегистрируйтесь\"","fullName":"ui/login/login.link.spec.ts:15:5","historyId":"62db9603623bba26b6305edb541ef4fa:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253470949,"stop":1750253477898,"duration":6949},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253470945,"stop":1750253471645,"duration":700},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750253470950,"stop":1750253471348,"duration":398},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750253470952,"stop":1750253471347,"duration":395},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253471348,"stop":1750253471401,"duration":53},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253471349,"stop":1750253471361,"duration":12},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253471401,"stop":1750253471645,"duration":244},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253471402,"stop":1750253471645,"duration":243},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750253471651,"stop":1750253472923,"duration":1272},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByText('Зарегистрируйтесь').click","time":{"start":1750253472927,"stop":1750253472999,"duration":72},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750253473000,"stop":1750253473043,"duration":43},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253473044,"stop":1750253473053,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253473054,"stop":1750253478295,"duration":5241},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253473054,"stop":1750253473054,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253473054,"stop":1750253473054,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5b89479a48d172ab.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5d12a7641d21519b.json b/allure-report/data/test-cases/5d12a7641d21519b.json new file mode 100644 index 0000000..27fb93e --- /dev/null +++ b/allure-report/data/test-cases/5d12a7641d21519b.json @@ -0,0 +1 @@ +{"uid":"5d12a7641d21519b","name":"Пароли не совпадают","fullName":"ui/recovery/recover-negative.spec.ts:56:7","historyId":"a7eaebb1e41fbbf13bf61195120b3ce9:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750253629369,"stop":1750253631627,"duration":2258},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253629371,"stop":1750253629508,"duration":137},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253629371,"stop":1750253629379,"duration":8},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253629372,"stop":1750253629376,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253629379,"stop":1750253629508,"duration":129},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253629379,"stop":1750253629508,"duration":129},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750253629509,"stop":1750253630872,"duration":1363},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750253630873,"stop":1750253630922,"duration":49},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750253630923,"stop":1750253631182,"duration":259},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750253631183,"stop":1750253631187,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253631187,"stop":1750253631293,"duration":106},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253631294,"stop":1750253631312,"duration":18},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253631312,"stop":1750253631331,"duration":19},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253631332,"stop":1750253631340,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253631340,"stop":1750253631352,"duration":12},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253631353,"stop":1750253631362,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750253631362,"stop":1750253631409,"duration":47},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750253631410,"stop":1750253631496,"duration":86},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!OtherPass123)","time":{"start":1750253631497,"stop":1750253631506,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750253631506,"stop":1750253631556,"duration":50},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253631556,"stop":1750253631561,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253631561,"stop":1750253631630,"duration":69},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253631561,"stop":1750253631561,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253631561,"stop":1750253631561,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-1"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f82ed2d7587aec25","status":"passed","time":{"start":1750252860501,"stop":1750252861914,"duration":1413}},{"uid":"8d76c4254e12856f","status":"passed","time":{"start":1750084509765,"stop":1750084510859,"duration":1094}},{"uid":"9029b999218b9178","status":"passed","time":{"start":1750075567274,"stop":1750075568310,"duration":1036}}],"categories":[],"tags":[]},"source":"5d12a7641d21519b.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5d5913a5fa886b55.json b/allure-report/data/test-cases/5d5913a5fa886b55.json new file mode 100644 index 0000000..3419e9c --- /dev/null +++ b/allure-report/data/test-cases/5d5913a5fa886b55.json @@ -0,0 +1 @@ +{"uid":"5d5913a5fa886b55","name":"Пользователь должен успешно залогиниться с валидными данными","fullName":"ui/login/login.spec.ts:7:7","historyId":"92a5ca35180a4cbe902714b987a6bf44:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750253592136,"stop":1750253599022,"duration":6886},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253592136,"stop":1750253592325,"duration":189},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253592137,"stop":1750253592142,"duration":5},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253592138,"stop":1750253592140,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253592142,"stop":1750253592325,"duration":183},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253592142,"stop":1750253592324,"duration":182},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750253592326,"stop":1750253598690,"duration":6364},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750253598691,"stop":1750253598726,"duration":35},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750253598727,"stop":1750253598739,"duration":12},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750253598739,"stop":1750253598807,"duration":68},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750253598808,"stop":1750253598945,"duration":137},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253598945,"stop":1750253598957,"duration":12},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253598958,"stop":1750253599026,"duration":68},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253598958,"stop":1750253598958,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253598959,"stop":1750253598960,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.spec.ts > Авторизация пользователя"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.spec.ts"},{"name":"subSuite","value":"Авторизация пользователя"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c6765b274dbb81fb","status":"passed","time":{"start":1750252843456,"stop":1750252845296,"duration":1840}},{"uid":"b90ee0e788535b2a","status":"passed","time":{"start":1750084500146,"stop":1750084501725,"duration":1579}},{"uid":"3e7912ae6732b293","status":"passed","time":{"start":1750075556942,"stop":1750075558396,"duration":1454}}],"categories":[],"tags":[]},"source":"5d5913a5fa886b55.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5ddff479ee91e9a6.json b/allure-report/data/test-cases/5ddff479ee91e9a6.json new file mode 100644 index 0000000..e820f00 --- /dev/null +++ b/allure-report/data/test-cases/5ddff479ee91e9a6.json @@ -0,0 +1 @@ +{"uid":"5ddff479ee91e9a6","name":"Слишком длинное название организации","fullName":"ui/registration/register.negative.spec.ts:48:7","historyId":"26486147b8778ca2341563049d2a3728:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750252690591,"stop":1750252693896,"duration":3305},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252690583,"stop":1750252693343,"duration":2760},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750252690587,"stop":1750252692801,"duration":2214},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750252690589,"stop":1750252692801,"duration":2212},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252692801,"stop":1750252692853,"duration":52},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252692802,"stop":1750252692852,"duration":50},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252692853,"stop":1750252693343,"duration":490},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252692854,"stop":1750252693342,"duration":488},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750252693352,"stop":1750252694536,"duration":1184},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Иван)","time":{"start":1750252694538,"stop":1750252694639,"duration":101},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Иванов)","time":{"start":1750252694640,"stop":1750252694650,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёное звание*').click","time":{"start":1750252694652,"stop":1750252694695,"duration":43},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Доцент\"i)","time":{"start":1750252694696,"stop":1750252695089,"duration":393},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёная степень*').click","time":{"start":1750252695090,"stop":1750252695489,"duration":399},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Кандидат наук\"i)","time":{"start":1750252695489,"stop":1750252695875,"duration":386},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Преподаватель)","time":{"start":1750252695876,"stop":1750252695891,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(ООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООО)","time":{"start":1750252695892,"stop":1750252695904,"duration":12},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(test1750252694536@example.com)","time":{"start":1750252695905,"stop":1750252695915,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(+79990241269)","time":{"start":1750252695916,"stop":1750252695923,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123)","time":{"start":1750252695923,"stop":1750252695929,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123)","time":{"start":1750252695930,"stop":1750252695939,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750252695940,"stop":1750252695989,"duration":49},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252695990,"stop":1750252696098,"duration":108},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252696098,"stop":1750252696105,"duration":7},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252696099,"stop":1750252696099,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252696099,"stop":1750252696099,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":25,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-57743-worker-2"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5ddff479ee91e9a6.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5fcc72a8b93c73ca.json b/allure-report/data/test-cases/5fcc72a8b93c73ca.json new file mode 100644 index 0000000..4636ff2 --- /dev/null +++ b/allure-report/data/test-cases/5fcc72a8b93c73ca.json @@ -0,0 +1 @@ +{"uid":"5fcc72a8b93c73ca","name":"Регистр в email (User@test.com ≠ user@test.com)","fullName":"ui/login/login.negative.spec.ts:58:7","historyId":"cc4ad4b40ef726af11b2bd4f5523dbe0:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750252812691,"stop":1750252813752,"duration":1061},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252812691,"stop":1750252812726,"duration":35},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252812692,"stop":1750252812693,"duration":1},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252812692,"stop":1750252812693,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252812693,"stop":1750252812726,"duration":33},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252812694,"stop":1750252812726,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750252812727,"stop":1750252813516,"duration":789},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Autotest@Example.com)","time":{"start":1750252813517,"stop":1750252813566,"duration":49},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750252813567,"stop":1750252813599,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750252813600,"stop":1750252813642,"duration":42},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252813642,"stop":1750252813747,"duration":105},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252813747,"stop":1750252813753,"duration":6},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252813747,"stop":1750252813747,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252813747,"stop":1750252813747,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"tag","value":"test.com"},{"name":"tag","value":"test.com)"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["test.com","test.com)"]},"source":"5fcc72a8b93c73ca.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/60e453bd4d61dc10.json b/allure-report/data/test-cases/60e453bd4d61dc10.json new file mode 100644 index 0000000..8061520 --- /dev/null +++ b/allure-report/data/test-cases/60e453bd4d61dc10.json @@ -0,0 +1 @@ +{"uid":"60e453bd4d61dc10","name":"Переключатель видимости пароля показывает и скрывает ввод","fullName":"ui/login/login.ui.spec.ts:7:7","historyId":"b1726395bd827a3a21fe3c829a098be4:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750084508352,"stop":1750084509225,"duration":873},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084508352,"stop":1750084508464,"duration":112},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084508353,"stop":1750084508355,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084508353,"stop":1750084508355,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084508355,"stop":1750084508464,"duration":109},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084508355,"stop":1750084508464,"duration":109},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084508465,"stop":1750084509013,"duration":548},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750084509014,"stop":1750084509080,"duration":66},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750084509081,"stop":1750084509086,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750084509087,"stop":1750084509093,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByAltText('показать пароль').click","time":{"start":1750084509094,"stop":1750084509153,"duration":59},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750084509154,"stop":1750084509163,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750084509164,"stop":1750084509164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByAltText('показать пароль').click","time":{"start":1750084509164,"stop":1750084509217,"duration":53},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750084509218,"stop":1750084509219,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750084509220,"stop":1750084509221,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084509220,"stop":1750084509227,"duration":7},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084509220,"stop":1750084509220,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084509220,"stop":1750084509220,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":18,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.ui.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.ui.spec.ts > UI сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-1"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.ui.spec.ts"},{"name":"subSuite","value":"UI сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"60e453bd4d61dc10.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9056a644468a3e4d.json b/allure-report/data/test-cases/6249b78a768614e1.json similarity index 97% rename from allure-report/data/test-cases/9056a644468a3e4d.json rename to allure-report/data/test-cases/6249b78a768614e1.json index 18893b8..4d0c9e9 100644 --- a/allure-report/data/test-cases/9056a644468a3e4d.json +++ b/allure-report/data/test-cases/6249b78a768614e1.json @@ -1 +1 @@ -{"uid":"9056a644468a3e4d","name":"Переключатель видимости пароля показывает и скрывает ввод","fullName":"ui/login/login.ui.spec.ts:7:7","historyId":"b1726395bd827a3a21fe3c829a098be4:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750075565020,"stop":1750075565962,"duration":942},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075565020,"stop":1750075565133,"duration":113},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075565020,"stop":1750075565022,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075565021,"stop":1750075565022,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075565022,"stop":1750075565133,"duration":111},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075565023,"stop":1750075565133,"duration":110},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075565134,"stop":1750075565701,"duration":567},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750075565701,"stop":1750075565808,"duration":107},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750075565809,"stop":1750075565813,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750075565814,"stop":1750075565815,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByAltText('показать пароль').click","time":{"start":1750075565816,"stop":1750075565905,"duration":89},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750075565907,"stop":1750075565913,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750075565914,"stop":1750075565915,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByAltText('показать пароль').click","time":{"start":1750075565916,"stop":1750075565954,"duration":38},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750075565956,"stop":1750075565957,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750075565958,"stop":1750075565958,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075565958,"stop":1750075565963,"duration":5},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075565958,"stop":1750075565958,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075565958,"stop":1750075565958,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":18,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.ui.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.ui.spec.ts > UI сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-1"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.ui.spec.ts"},{"name":"subSuite","value":"UI сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"9056a644468a3e4d.json","parameterValues":["webkit"]} \ No newline at end of file +{"uid":"6249b78a768614e1","name":"Переключатель видимости пароля показывает и скрывает ввод","fullName":"ui/login/login.ui.spec.ts:7:7","historyId":"b1726395bd827a3a21fe3c829a098be4:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750075565020,"stop":1750075565962,"duration":942},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075565020,"stop":1750075565133,"duration":113},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075565020,"stop":1750075565022,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075565021,"stop":1750075565022,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075565022,"stop":1750075565133,"duration":111},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075565023,"stop":1750075565133,"duration":110},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075565134,"stop":1750075565701,"duration":567},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750075565701,"stop":1750075565808,"duration":107},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750075565809,"stop":1750075565813,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750075565814,"stop":1750075565815,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByAltText('показать пароль').click","time":{"start":1750075565816,"stop":1750075565905,"duration":89},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750075565907,"stop":1750075565913,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750075565914,"stop":1750075565915,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByAltText('показать пароль').click","time":{"start":1750075565916,"stop":1750075565954,"duration":38},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750075565956,"stop":1750075565957,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750075565958,"stop":1750075565958,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075565958,"stop":1750075565963,"duration":5},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075565958,"stop":1750075565958,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075565958,"stop":1750075565958,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":18,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.ui.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.ui.spec.ts > UI сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-1"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.ui.spec.ts"},{"name":"subSuite","value":"UI сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"6249b78a768614e1.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/62e5d112acd892be.json b/allure-report/data/test-cases/62e5d112acd892be.json new file mode 100644 index 0000000..9e56c3f --- /dev/null +++ b/allure-report/data/test-cases/62e5d112acd892be.json @@ -0,0 +1 @@ +{"uid":"62e5d112acd892be","name":"Успешная регистрация нового пользователя","fullName":"ui/registration/register.spec.ts:6:7","historyId":"3562648cd3231e14b42a7151c17c62aa:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750176656779,"stop":1750176688826,"duration":32047},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750176656776,"stop":1750176658226,"duration":1450},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750176656779,"stop":1750176657262,"duration":483},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750176656780,"stop":1750176657262,"duration":482},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750176657262,"stop":1750176657870,"duration":608},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750176657263,"stop":1750176657867,"duration":604},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750176657871,"stop":1750176658226,"duration":355},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750176657871,"stop":1750176658226,"duration":355},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750176658229,"stop":1750176666355,"duration":8126},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Иван)","time":{"start":1750176666357,"stop":1750176670425,"duration":4068},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Тестов)","time":{"start":1750176670427,"stop":1750176671196,"duration":769},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Александрович)","time":{"start":1750176671197,"stop":1750176671805,"duration":608},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёное звание*').click","time":{"start":1750176671806,"stop":1750176672370,"duration":564},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Доцент\"i)","time":{"start":1750176672371,"stop":1750176673567,"duration":1196},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёная степень*').click","time":{"start":1750176673569,"stop":1750176674126,"duration":557},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Кандидат наук\"i)","time":{"start":1750176674127,"stop":1750176675653,"duration":1526},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Преподаватель)","time":{"start":1750176675654,"stop":1750176676311,"duration":657},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(ЮФУ)","time":{"start":1750176676313,"stop":1750176676859,"duration":546},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest66693@example.com)","time":{"start":1750176676860,"stop":1750176677492,"duration":632},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(+79000066693)","time":{"start":1750176677493,"stop":1750176678376,"duration":883},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750176678377,"stop":1750176679918,"duration":1541},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750176679921,"stop":1750176681160,"duration":1239},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750176681162,"stop":1750176682384,"duration":1222},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750176682387,"stop":1750176684977,"duration":2590},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750176684978,"stop":1750176689275,"duration":4297},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750176689275,"stop":1750176689311,"duration":36},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750176689276,"stop":1750176689276,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750176689277,"stop":1750176689277,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":27,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.spec.ts > Позитивные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-53790-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.spec.ts"},{"name":"subSuite","value":"Позитивные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"62e5d112acd892be.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6475d4d062ae690d.json b/allure-report/data/test-cases/6475d4d062ae690d.json deleted file mode 100644 index f4353ac..0000000 --- a/allure-report/data/test-cases/6475d4d062ae690d.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"6475d4d062ae690d","name":"Переход по ссылке \"Зарегистрируйтесь\"","fullName":"ui/login/login.link.spec.ts:15:5","historyId":"62db9603623bba26b6305edb541ef4fa:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750075545992,"stop":1750075547267,"duration":1275},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075545993,"stop":1750075546573,"duration":580},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750075545998,"stop":1750075546322,"duration":324},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750075546001,"stop":1750075546322,"duration":321},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075546323,"stop":1750075546355,"duration":32},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075546326,"stop":1750075546345,"duration":19},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075546356,"stop":1750075546573,"duration":217},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075546357,"stop":1750075546572,"duration":215},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075546578,"stop":1750075547259,"duration":681},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByText('Зарегистрируйтесь').click","time":{"start":1750075547262,"stop":1750075547524,"duration":262},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750075547528,"stop":1750075547559,"duration":31},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075547561,"stop":1750075547572,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075547573,"stop":1750075547603,"duration":30},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075547573,"stop":1750075547573,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075547573,"stop":1750075547573,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"6475d4d062ae690d.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c97c618fecbcd5f8.json b/allure-report/data/test-cases/667929cd692b66c8.json similarity index 97% rename from allure-report/data/test-cases/c97c618fecbcd5f8.json rename to allure-report/data/test-cases/667929cd692b66c8.json index 2b87476..0838361 100644 --- a/allure-report/data/test-cases/c97c618fecbcd5f8.json +++ b/allure-report/data/test-cases/667929cd692b66c8.json @@ -1 +1 @@ -{"uid":"c97c618fecbcd5f8","name":"Пароли не совпадают","fullName":"ui/recovery/recover-negative.spec.ts:56:7","historyId":"a7eaebb1e41fbbf13bf61195120b3ce9:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750075559492,"stop":1750075561099,"duration":1607},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075559488,"stop":1750075559756,"duration":268},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075559494,"stop":1750075559508,"duration":14},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075559495,"stop":1750075559508,"duration":13},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075559509,"stop":1750075559756,"duration":247},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075559509,"stop":1750075559756,"duration":247},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750075559756,"stop":1750075560468,"duration":712},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075560472,"stop":1750075560544,"duration":72},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750075560545,"stop":1750075560658,"duration":113},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750075560659,"stop":1750075560666,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075560666,"stop":1750075560803,"duration":137},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075560803,"stop":1750075560818,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075560819,"stop":1750075560830,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075560830,"stop":1750075560842,"duration":12},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075560843,"stop":1750075560852,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075560853,"stop":1750075560869,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075560870,"stop":1750075560924,"duration":54},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750075560925,"stop":1750075561003,"duration":78},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!OtherPass123)","time":{"start":1750075561004,"stop":1750075561013,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075561013,"stop":1750075561075,"duration":62},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075561075,"stop":1750075561085,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075561085,"stop":1750075561100,"duration":15},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075561086,"stop":1750075561086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075561086,"stop":1750075561086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-3"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"c97c618fecbcd5f8.json","parameterValues":["firefox"]} \ No newline at end of file +{"uid":"667929cd692b66c8","name":"Пароли не совпадают","fullName":"ui/recovery/recover-negative.spec.ts:56:7","historyId":"a7eaebb1e41fbbf13bf61195120b3ce9:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750075559492,"stop":1750075561099,"duration":1607},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075559488,"stop":1750075559756,"duration":268},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075559494,"stop":1750075559508,"duration":14},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075559495,"stop":1750075559508,"duration":13},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075559509,"stop":1750075559756,"duration":247},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075559509,"stop":1750075559756,"duration":247},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750075559756,"stop":1750075560468,"duration":712},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075560472,"stop":1750075560544,"duration":72},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750075560545,"stop":1750075560658,"duration":113},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750075560659,"stop":1750075560666,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075560666,"stop":1750075560803,"duration":137},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075560803,"stop":1750075560818,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075560819,"stop":1750075560830,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075560830,"stop":1750075560842,"duration":12},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075560843,"stop":1750075560852,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075560853,"stop":1750075560869,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075560870,"stop":1750075560924,"duration":54},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750075560925,"stop":1750075561003,"duration":78},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!OtherPass123)","time":{"start":1750075561004,"stop":1750075561013,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075561013,"stop":1750075561075,"duration":62},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075561075,"stop":1750075561085,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075561085,"stop":1750075561100,"duration":15},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075561086,"stop":1750075561086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075561086,"stop":1750075561086,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-3"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"667929cd692b66c8.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f6b2716194c4ce74.json b/allure-report/data/test-cases/6694e86bba58036e.json similarity index 91% rename from allure-report/data/test-cases/f6b2716194c4ce74.json rename to allure-report/data/test-cases/6694e86bba58036e.json index ad39122..9b64020 100644 --- a/allure-report/data/test-cases/f6b2716194c4ce74.json +++ b/allure-report/data/test-cases/6694e86bba58036e.json @@ -1 +1 @@ -{"uid":"f6b2716194c4ce74","name":"Несуществующий email","fullName":"ui/login/login.negative.spec.ts:17:7","historyId":"69b9236bee03ff0034bfbd5addc25f93:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750084498297,"stop":1750084500105,"duration":1808},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084498298,"stop":1750084498587,"duration":289},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084498299,"stop":1750084498326,"duration":27},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084498299,"stop":1750084498324,"duration":25},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084498326,"stop":1750084498587,"duration":261},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084498326,"stop":1750084498587,"duration":261},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084498589,"stop":1750084499759,"duration":1170},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(wrong@example.com)","time":{"start":1750084499760,"stop":1750084499846,"duration":86},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(anyPassword123)","time":{"start":1750084499847,"stop":1750084499857,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750084499858,"stop":1750084499971,"duration":113},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084499972,"stop":1750084500091,"duration":119},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084500091,"stop":1750084500109,"duration":18},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084500091,"stop":1750084500092,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084500092,"stop":1750084500092,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-3"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ee7d99c2943f739e","status":"passed","time":{"start":1750075555286,"stop":1750075556929,"duration":1643}}],"categories":[],"tags":[]},"source":"f6b2716194c4ce74.json","parameterValues":["firefox"]} \ No newline at end of file +{"uid":"6694e86bba58036e","name":"Несуществующий email","fullName":"ui/login/login.negative.spec.ts:17:7","historyId":"69b9236bee03ff0034bfbd5addc25f93:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750084498297,"stop":1750084500105,"duration":1808},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084498298,"stop":1750084498587,"duration":289},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084498299,"stop":1750084498326,"duration":27},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084498299,"stop":1750084498324,"duration":25},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084498326,"stop":1750084498587,"duration":261},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084498326,"stop":1750084498587,"duration":261},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084498589,"stop":1750084499759,"duration":1170},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(wrong@example.com)","time":{"start":1750084499760,"stop":1750084499846,"duration":86},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(anyPassword123)","time":{"start":1750084499847,"stop":1750084499857,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750084499858,"stop":1750084499971,"duration":113},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084499972,"stop":1750084500091,"duration":119},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084500091,"stop":1750084500109,"duration":18},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084500091,"stop":1750084500092,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084500092,"stop":1750084500092,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-3"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"6694e86bba58036e.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d4f48ebfb1d34a45.json b/allure-report/data/test-cases/68f153226489550d.json similarity index 97% rename from allure-report/data/test-cases/d4f48ebfb1d34a45.json rename to allure-report/data/test-cases/68f153226489550d.json index 45874e5..80475c3 100644 --- a/allure-report/data/test-cases/d4f48ebfb1d34a45.json +++ b/allure-report/data/test-cases/68f153226489550d.json @@ -1 +1 @@ -{"uid":"d4f48ebfb1d34a45","name":"Пустое поле \"Повторите пароль\"","fullName":"ui/recovery/recover-negative.spec.ts:45:7","historyId":"e6d2fb91f0b85b95c3962ffc860dddd7:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750075550062,"stop":1750075551012,"duration":950},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075550062,"stop":1750075550098,"duration":36},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075550062,"stop":1750075550064,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075550063,"stop":1750075550064,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075550064,"stop":1750075550098,"duration":34},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075550064,"stop":1750075550098,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750075550098,"stop":1750075550668,"duration":570},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075550669,"stop":1750075550710,"duration":41},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750075550711,"stop":1750075550736,"duration":25},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750075550737,"stop":1750075550738,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075550739,"stop":1750075550836,"duration":97},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075550837,"stop":1750075550840,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075550841,"stop":1750075550844,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075550845,"stop":1750075550848,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075550848,"stop":1750075550856,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075550857,"stop":1750075550859,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075550860,"stop":1750075550890,"duration":30},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750075550891,"stop":1750075550968,"duration":77},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750075550968,"stop":1750075550972,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075550973,"stop":1750075551005,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075551006,"stop":1750075551009,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075551009,"stop":1750075551014,"duration":5},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075551009,"stop":1750075551009,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075551009,"stop":1750075551009,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"d4f48ebfb1d34a45.json","parameterValues":["chromium"]} \ No newline at end of file +{"uid":"68f153226489550d","name":"Пустое поле \"Повторите пароль\"","fullName":"ui/recovery/recover-negative.spec.ts:45:7","historyId":"e6d2fb91f0b85b95c3962ffc860dddd7:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750075550062,"stop":1750075551012,"duration":950},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075550062,"stop":1750075550098,"duration":36},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075550062,"stop":1750075550064,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075550063,"stop":1750075550064,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075550064,"stop":1750075550098,"duration":34},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075550064,"stop":1750075550098,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750075550098,"stop":1750075550668,"duration":570},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075550669,"stop":1750075550710,"duration":41},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750075550711,"stop":1750075550736,"duration":25},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750075550737,"stop":1750075550738,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075550739,"stop":1750075550836,"duration":97},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075550837,"stop":1750075550840,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075550841,"stop":1750075550844,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075550845,"stop":1750075550848,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075550848,"stop":1750075550856,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075550857,"stop":1750075550859,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075550860,"stop":1750075550890,"duration":30},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750075550891,"stop":1750075550968,"duration":77},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750075550968,"stop":1750075550972,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075550973,"stop":1750075551005,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075551006,"stop":1750075551009,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075551009,"stop":1750075551014,"duration":5},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075551009,"stop":1750075551009,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075551009,"stop":1750075551009,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"68f153226489550d.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6962b06e4eb06b10.json b/allure-report/data/test-cases/6962b06e4eb06b10.json new file mode 100644 index 0000000..0e6b1b1 --- /dev/null +++ b/allure-report/data/test-cases/6962b06e4eb06b10.json @@ -0,0 +1 @@ +{"uid":"6962b06e4eb06b10","name":"get started link","fullName":"example.spec.ts:10:5","historyId":"37e4aa066a5f6eac2e4d3b98a2ed98a7:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253539580,"stop":1750253579575,"duration":39995},"status":"broken","statusMessage":"Test timeout of 30000ms exceeded.","statusTrace":"Test timeout of 30000ms exceeded.","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":true,"beforeStages":[],"testStage":{"status":"broken","statusMessage":"Test timeout of 30000ms exceeded.","statusTrace":"Test timeout of 30000ms exceeded.","steps":[{"name":"Before Hooks","time":{"start":1750253539576,"stop":1750253540164,"duration":588},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750253539584,"stop":1750253539894,"duration":310},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750253539587,"stop":1750253539893,"duration":306},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253539894,"stop":1750253539972,"duration":78},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253539896,"stop":1750253539922,"duration":26},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253539973,"stop":1750253540164,"duration":191},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253539975,"stop":1750253540164,"duration":189},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(https://playwright.dev/)","time":{"start":1750253540167,"stop":1750253542422,"duration":2255},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('link', { name: 'Get started' }).click","time":{"start":1750253542424,"stop":1750253574977,"duration":32553},"status":"failed","statusMessage":"Error: locator.click: Test timeout of 30000ms exceeded.\nCall log:\n - waiting for getByRole('link', { name: 'Get started' })\n - locator resolved to Get started\n - attempting click action\n - waiting for element to be visible, enabled and stable\n","statusTrace":"Error: locator.click: Test timeout of 30000ms exceeded.\nCall log:\n - waiting for getByRole('link', { name: 'Get started' })\n - locator resolved to Get started\n - attempting click action\n - waiting for element to be visible, enabled and stable\n\n at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/example.spec.ts:14:57","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":true,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"_error-context-1","time":{"start":1750253579974,"stop":1750253579974,"duration":0},"status":"unknown","steps":[],"attachments":[{"uid":"1958b451ff2044f0","name":"_error-context-1","source":"1958b451ff2044f0.md","type":"text/markdown","size":8755}],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":1,"hasContent":true,"attachmentStep":true},{"name":"trace","time":{"start":1750253579975,"stop":1750253579975,"duration":0},"status":"unknown","steps":[],"attachments":[{"uid":"396ca355b214b7d0","name":"trace","source":"396ca355b214b7d0.zip","type":"application/vnd.allure.playwright-trace","size":888407}],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":1,"hasContent":true,"attachmentStep":true},{"name":"After Hooks","time":{"start":1750253569895,"stop":1750253579893,"duration":9998},"status":"failed","steps":[{"name":"page.screenshot","time":{"start":1750253569897,"stop":1750253574913,"duration":5016},"status":"failed","statusMessage":"TimeoutError: page.screenshot: Timeout 5000ms exceeded.\nCall log:\n - taking page screenshot\n - waiting for fonts to load...\n - fonts loaded\n","statusTrace":"TimeoutError: page.screenshot: Timeout 5000ms exceeded.\nCall log:\n - taking page screenshot\n - waiting for fonts to load...\n - fonts loaded\n","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":true,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253574914,"stop":1750253574914,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253574914,"stop":1750253574914,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":3,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":15,"shouldDisplayMessage":true,"attachmentsCount":2,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > chromium > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-1"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"example.spec.ts"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"32b20479b53a0eda","status":"passed","time":{"start":1750253470950,"stop":1750253473760,"duration":2810}},{"uid":"3bf369ec5af3ff61","status":"passed","time":{"start":1750252808949,"stop":1750252822202,"duration":13253}},{"uid":"95928bbad84a71aa","status":"passed","time":{"start":1750084487579,"stop":1750084488883,"duration":1304}},{"uid":"73473fc9a8b1bb12","status":"passed","time":{"start":1750075545978,"stop":1750075547391,"duration":1413}}],"categories":[{"name":"Test defects","matchedStatuses":[]}],"tags":[]},"source":"6962b06e4eb06b10.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6a9cc0b24dc2b31f.json b/allure-report/data/test-cases/6a9cc0b24dc2b31f.json new file mode 100644 index 0000000..95b9329 --- /dev/null +++ b/allure-report/data/test-cases/6a9cc0b24dc2b31f.json @@ -0,0 +1 @@ +{"uid":"6a9cc0b24dc2b31f","name":"Успешная регистрация нового пользователя","fullName":"ui/registration/register.spec.ts:6:7","historyId":"3562648cd3231e14b42a7151c17c62aa:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750170283414,"stop":1750170315971,"duration":32557},"status":"failed","statusMessage":"Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected)\n\nLocator: locator(':root')\nExpected pattern: /\\/login\\/authorization/\nReceived string: \"https://ssas.dev.rdcenter.ru/login/registration\"\nCall log:\n - expect.toHaveURL with timeout 5000ms\n - waiting for locator(':root')\n 9 × locator resolved to …\n - unexpected value \"https://ssas.dev.rdcenter.ru/login/registration\"\n","statusTrace":"Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected)\n\nLocator: locator(':root')\nExpected pattern: /\\/login\\/authorization/\nReceived string: \"https://ssas.dev.rdcenter.ru/login/registration\"\nCall log:\n - expect.toHaveURL with timeout 5000ms\n - waiting for locator(':root')\n 9 × locator resolved to …\n - unexpected value \"https://ssas.dev.rdcenter.ru/login/registration\"\n\n at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.spec.ts:30:24","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"failed","statusMessage":"Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected)\n\nLocator: locator(':root')\nExpected pattern: /\\/login\\/authorization/\nReceived string: \"https://ssas.dev.rdcenter.ru/login/registration\"\nCall log:\n - expect.toHaveURL with timeout 5000ms\n - waiting for locator(':root')\n 9 × locator resolved to …\n - unexpected value \"https://ssas.dev.rdcenter.ru/login/registration\"\n","statusTrace":"Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected)\n\nLocator: locator(':root')\nExpected pattern: /\\/login\\/authorization/\nReceived string: \"https://ssas.dev.rdcenter.ru/login/registration\"\nCall log:\n - expect.toHaveURL with timeout 5000ms\n - waiting for locator(':root')\n 9 × locator resolved to …\n - unexpected value \"https://ssas.dev.rdcenter.ru/login/registration\"\n\n at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.spec.ts:30:24","steps":[{"name":"Before Hooks","time":{"start":1750170283407,"stop":1750170285763,"duration":2356},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750170283410,"stop":1750170284362,"duration":952},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750170283411,"stop":1750170284362,"duration":951},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750170284363,"stop":1750170285241,"duration":878},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750170284363,"stop":1750170285239,"duration":876},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750170285241,"stop":1750170285763,"duration":522},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750170285242,"stop":1750170285763,"duration":521},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750170285773,"stop":1750170289013,"duration":3240},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Иван)","time":{"start":1750170289015,"stop":1750170290115,"duration":1100},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Тестов)","time":{"start":1750170290117,"stop":1750170290974,"duration":857},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Александрович)","time":{"start":1750170290976,"stop":1750170291922,"duration":946},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёное звание*').click","time":{"start":1750170291924,"stop":1750170292971,"duration":1047},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Доцент\"i)","time":{"start":1750170292972,"stop":1750170296750,"duration":3778},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёная степень*').click","time":{"start":1750170296751,"stop":1750170297951,"duration":1200},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Кандидат наук\"i)","time":{"start":1750170297952,"stop":1750170300331,"duration":2379},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Преподаватель)","time":{"start":1750170300333,"stop":1750170301225,"duration":892},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(ЮФУ)","time":{"start":1750170301227,"stop":1750170303026,"duration":1799},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest7469@example.com)","time":{"start":1750170303028,"stop":1750170303973,"duration":945},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(+7987007469)","time":{"start":1750170303974,"stop":1750170305315,"duration":1341},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123)","time":{"start":1750170305317,"stop":1750170306570,"duration":1253},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123)","time":{"start":1750170306571,"stop":1750170307559,"duration":988},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750170307560,"stop":1750170308728,"duration":1168},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750170308733,"stop":1750170316859,"duration":8126},"status":"failed","statusMessage":"Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected)\n\nLocator: locator(':root')\nExpected pattern: /\\/login\\/authorization/\nReceived string: \"https://ssas.dev.rdcenter.ru/login/registration\"\nCall log:\n - expect.toHaveURL with timeout 5000ms\n - waiting for locator(':root')\n 9 × locator resolved to …\n - unexpected value \"https://ssas.dev.rdcenter.ru/login/registration\"\n","statusTrace":"Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected)\n\nLocator: locator(':root')\nExpected pattern: /\\/login\\/authorization/\nReceived string: \"https://ssas.dev.rdcenter.ru/login/registration\"\nCall log:\n - expect.toHaveURL with timeout 5000ms\n - waiting for locator(':root')\n 9 × locator resolved to …\n - unexpected value \"https://ssas.dev.rdcenter.ru/login/registration\"\n\n at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.spec.ts:30:24","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":true,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"_error-context-0","time":{"start":1750170317102,"stop":1750170317102,"duration":0},"status":"unknown","steps":[],"attachments":[{"uid":"bacac1152fdc8aab","name":"_error-context-0","source":"bacac1152fdc8aab.md","type":"text/markdown","size":5291}],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":1,"hasContent":true,"attachmentStep":true},{"name":"After Hooks","time":{"start":1750170316861,"stop":1750170316927,"duration":66},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750170316863,"stop":1750170316863,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750170316864,"stop":1750170316864,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":27,"shouldDisplayMessage":false,"attachmentsCount":1,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.spec.ts > Позитивные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-51997-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.spec.ts"},{"name":"subSuite","value":"Позитивные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"6a9cc0b24dc2b31f.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6abeabb3c0c9bfb8.json b/allure-report/data/test-cases/6abeabb3c0c9bfb8.json new file mode 100644 index 0000000..3427ed0 --- /dev/null +++ b/allure-report/data/test-cases/6abeabb3c0c9bfb8.json @@ -0,0 +1 @@ +{"uid":"6abeabb3c0c9bfb8","name":"Переход по ссылке \"Забыли пароль?\"","fullName":"ui/login/login.link.spec.ts:6:5","historyId":"91fcabcb669557e4ddb559c077420e45:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750252808951,"stop":1750252810557,"duration":1606},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252808945,"stop":1750252809508,"duration":563},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750252808950,"stop":1750252809251,"duration":301},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750252808951,"stop":1750252809251,"duration":300},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252809252,"stop":1750252809271,"duration":19},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252809252,"stop":1750252809268,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252809271,"stop":1750252809508,"duration":237},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252809273,"stop":1750252809507,"duration":234},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750252809517,"stop":1750252810657,"duration":1140},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByText('Забыли пароль?').click","time":{"start":1750252810660,"stop":1750252810784,"duration":124},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750252810785,"stop":1750252810839,"duration":54},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252810840,"stop":1750252810847,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252810847,"stop":1750252810857,"duration":10},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252810848,"stop":1750252810848,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252810848,"stop":1750252810848,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"6abeabb3c0c9bfb8.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6abfa6eb137629f5.json b/allure-report/data/test-cases/6abfa6eb137629f5.json new file mode 100644 index 0000000..a173548 --- /dev/null +++ b/allure-report/data/test-cases/6abfa6eb137629f5.json @@ -0,0 +1 @@ +{"uid":"6abfa6eb137629f5","name":"Некорректный формат email","fullName":"ui/login/login.negative.spec.ts:46:7","historyId":"e5764a911de0175f8f7118313ae14544:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253479799,"stop":1750253482986,"duration":3187},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253479799,"stop":1750253479838,"duration":39},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253479800,"stop":1750253479803,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253479800,"stop":1750253479801,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253479803,"stop":1750253479838,"duration":35},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253479803,"stop":1750253479838,"duration":35},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750253479839,"stop":1750253480683,"duration":844},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(invalid-email)","time":{"start":1750253480684,"stop":1750253480703,"duration":19},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(anyPassword123)","time":{"start":1750253480703,"stop":1750253480738,"duration":35},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750253480739,"stop":1750253480769,"duration":30},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253480770,"stop":1750253480773,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253480773,"stop":1750253482987,"duration":2214},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253480773,"stop":1750253480773,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253480774,"stop":1750253480774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"6abfa6eb137629f5.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6befecf75ebe5622.json b/allure-report/data/test-cases/6befecf75ebe5622.json new file mode 100644 index 0000000..4229a74 --- /dev/null +++ b/allure-report/data/test-cases/6befecf75ebe5622.json @@ -0,0 +1 @@ +{"uid":"6befecf75ebe5622","name":"Некорректный формат email","fullName":"ui/login/login.negative.spec.ts:46:7","historyId":"e5764a911de0175f8f7118313ae14544:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750252857696,"stop":1750252858941,"duration":1245},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252857696,"stop":1750252857897,"duration":201},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252857699,"stop":1750252857705,"duration":6},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252857700,"stop":1750252857705,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252857706,"stop":1750252857897,"duration":191},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252857706,"stop":1750252857897,"duration":191},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750252857898,"stop":1750252858846,"duration":948},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(invalid-email)","time":{"start":1750252858847,"stop":1750252858881,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(anyPassword123)","time":{"start":1750252858882,"stop":1750252858887,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750252858888,"stop":1750252858936,"duration":48},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252858937,"stop":1750252858941,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252858941,"stop":1750252858944,"duration":3},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252858941,"stop":1750252858941,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252858941,"stop":1750252858941,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-3"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"6befecf75ebe5622.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c9901a9937a7b7a5.json b/allure-report/data/test-cases/6e21e8919ef7ab74.json similarity index 91% rename from allure-report/data/test-cases/c9901a9937a7b7a5.json rename to allure-report/data/test-cases/6e21e8919ef7ab74.json index b71cf49..e14f5be 100644 --- a/allure-report/data/test-cases/c9901a9937a7b7a5.json +++ b/allure-report/data/test-cases/6e21e8919ef7ab74.json @@ -1 +1 @@ -{"uid":"c9901a9937a7b7a5","name":"Переход по ссылке \"Зарегистрируйтесь\"","fullName":"ui/login/login.link.spec.ts:15:5","historyId":"62db9603623bba26b6305edb541ef4fa:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750084506996,"stop":1750084507961,"duration":965},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084506997,"stop":1750084507503,"duration":506},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750084507000,"stop":1750084507159,"duration":159},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750084507001,"stop":1750084507159,"duration":158},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084507159,"stop":1750084507205,"duration":46},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084507160,"stop":1750084507204,"duration":44},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084507206,"stop":1750084507503,"duration":297},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084507207,"stop":1750084507503,"duration":296},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084507507,"stop":1750084507993,"duration":486},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByText('Зарегистрируйтесь').click","time":{"start":1750084507995,"stop":1750084508098,"duration":103},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750084508100,"stop":1750084508110,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084508110,"stop":1750084508116,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084508117,"stop":1750084508124,"duration":7},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084508117,"stop":1750084508117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084508117,"stop":1750084508117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-2"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b869ef3785459ec6","status":"passed","time":{"start":1750075562963,"stop":1750075563995,"duration":1032}}],"categories":[],"tags":[]},"source":"c9901a9937a7b7a5.json","parameterValues":["webkit"]} \ No newline at end of file +{"uid":"6e21e8919ef7ab74","name":"Переход по ссылке \"Зарегистрируйтесь\"","fullName":"ui/login/login.link.spec.ts:15:5","historyId":"62db9603623bba26b6305edb541ef4fa:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750084506996,"stop":1750084507961,"duration":965},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084506997,"stop":1750084507503,"duration":506},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750084507000,"stop":1750084507159,"duration":159},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750084507001,"stop":1750084507159,"duration":158},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084507159,"stop":1750084507205,"duration":46},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084507160,"stop":1750084507204,"duration":44},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084507206,"stop":1750084507503,"duration":297},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084507207,"stop":1750084507503,"duration":296},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084507507,"stop":1750084507993,"duration":486},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByText('Зарегистрируйтесь').click","time":{"start":1750084507995,"stop":1750084508098,"duration":103},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750084508100,"stop":1750084508110,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084508110,"stop":1750084508116,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084508117,"stop":1750084508124,"duration":7},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084508117,"stop":1750084508117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084508117,"stop":1750084508117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-2"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"6e21e8919ef7ab74.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a9ee13342854924d.json b/allure-report/data/test-cases/6f161e97a71ff2d8.json similarity index 94% rename from allure-report/data/test-cases/a9ee13342854924d.json rename to allure-report/data/test-cases/6f161e97a71ff2d8.json index e1cf4e5..2d67994 100644 --- a/allure-report/data/test-cases/a9ee13342854924d.json +++ b/allure-report/data/test-cases/6f161e97a71ff2d8.json @@ -1 +1 @@ -{"uid":"a9ee13342854924d","name":"Некорректный новый пароль","fullName":"ui/recovery/recover-negative.spec.ts:34:7","historyId":"18246cf63350a71f5b46012e257bafcf:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750084509235,"stop":1750084510626,"duration":1391},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084509235,"stop":1750084509358,"duration":123},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084509236,"stop":1750084509238,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084509236,"stop":1750084509238,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084509239,"stop":1750084509358,"duration":119},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084509239,"stop":1750084509358,"duration":119},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750084509359,"stop":1750084510198,"duration":839},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084510199,"stop":1750084510224,"duration":25},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750084510224,"stop":1750084510296,"duration":72},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750084510297,"stop":1750084510298,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084510299,"stop":1750084510383,"duration":84},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084510384,"stop":1750084510392,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084510393,"stop":1750084510397,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084510398,"stop":1750084510412,"duration":14},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084510414,"stop":1750084510434,"duration":20},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084510435,"stop":1750084510444,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084510444,"stop":1750084510495,"duration":51},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(123)","time":{"start":1750084510496,"stop":1750084510586,"duration":90},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(123)","time":{"start":1750084510587,"stop":1750084510590,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084510591,"stop":1750084510621,"duration":30},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084510622,"stop":1750084510625,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084510625,"stop":1750084510627,"duration":2},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084510625,"stop":1750084510625,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084510625,"stop":1750084510625,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-1"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"679d3e39f3748fca","status":"passed","time":{"start":1750075566120,"stop":1750075567344,"duration":1224}}],"categories":[],"tags":[]},"source":"a9ee13342854924d.json","parameterValues":["webkit"]} \ No newline at end of file +{"uid":"6f161e97a71ff2d8","name":"Некорректный новый пароль","fullName":"ui/recovery/recover-negative.spec.ts:34:7","historyId":"18246cf63350a71f5b46012e257bafcf:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750084509235,"stop":1750084510626,"duration":1391},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084509235,"stop":1750084509358,"duration":123},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084509236,"stop":1750084509238,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084509236,"stop":1750084509238,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084509239,"stop":1750084509358,"duration":119},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084509239,"stop":1750084509358,"duration":119},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750084509359,"stop":1750084510198,"duration":839},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084510199,"stop":1750084510224,"duration":25},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750084510224,"stop":1750084510296,"duration":72},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750084510297,"stop":1750084510298,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084510299,"stop":1750084510383,"duration":84},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084510384,"stop":1750084510392,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084510393,"stop":1750084510397,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084510398,"stop":1750084510412,"duration":14},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084510414,"stop":1750084510434,"duration":20},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084510435,"stop":1750084510444,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084510444,"stop":1750084510495,"duration":51},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(123)","time":{"start":1750084510496,"stop":1750084510586,"duration":90},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(123)","time":{"start":1750084510587,"stop":1750084510590,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084510591,"stop":1750084510621,"duration":30},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084510622,"stop":1750084510625,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084510625,"stop":1750084510627,"duration":2},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084510625,"stop":1750084510625,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084510625,"stop":1750084510625,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-1"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"6f161e97a71ff2d8.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c0cd3299e712a705.json b/allure-report/data/test-cases/6fd2aa1e54397b07.json similarity index 98% rename from allure-report/data/test-cases/c0cd3299e712a705.json rename to allure-report/data/test-cases/6fd2aa1e54397b07.json index f9f218a..db5731c 100644 --- a/allure-report/data/test-cases/c0cd3299e712a705.json +++ b/allure-report/data/test-cases/6fd2aa1e54397b07.json @@ -1 +1 @@ -{"uid":"c0cd3299e712a705","name":"Пустое поле \"Повторите пароль\"","fullName":"ui/recovery/recover-negative.spec.ts:45:7","historyId":"e6d2fb91f0b85b95c3962ffc860dddd7:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750075558622,"stop":1750075560743,"duration":2121},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075558622,"stop":1750075559021,"duration":399},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075558624,"stop":1750075558637,"duration":13},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075558625,"stop":1750075558636,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075558637,"stop":1750075559021,"duration":384},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075558637,"stop":1750075559021,"duration":384},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750075559022,"stop":1750075560150,"duration":1128},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075560154,"stop":1750075560219,"duration":65},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750075560220,"stop":1750075560356,"duration":136},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750075560357,"stop":1750075560359,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075560360,"stop":1750075560416,"duration":56},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075560417,"stop":1750075560425,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075560425,"stop":1750075560431,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075560435,"stop":1750075560443,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075560444,"stop":1750075560451,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075560451,"stop":1750075560457,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075560458,"stop":1750075560536,"duration":78},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750075560539,"stop":1750075560663,"duration":124},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750075560664,"stop":1750075560676,"duration":12},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075560677,"stop":1750075560721,"duration":44},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075560722,"stop":1750075560727,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075560727,"stop":1750075560746,"duration":19},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075560727,"stop":1750075560727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075560727,"stop":1750075560727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"c0cd3299e712a705.json","parameterValues":["firefox"]} \ No newline at end of file +{"uid":"6fd2aa1e54397b07","name":"Пустое поле \"Повторите пароль\"","fullName":"ui/recovery/recover-negative.spec.ts:45:7","historyId":"e6d2fb91f0b85b95c3962ffc860dddd7:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750075558622,"stop":1750075560743,"duration":2121},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075558622,"stop":1750075559021,"duration":399},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075558624,"stop":1750075558637,"duration":13},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075558625,"stop":1750075558636,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075558637,"stop":1750075559021,"duration":384},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075558637,"stop":1750075559021,"duration":384},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750075559022,"stop":1750075560150,"duration":1128},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075560154,"stop":1750075560219,"duration":65},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750075560220,"stop":1750075560356,"duration":136},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750075560357,"stop":1750075560359,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075560360,"stop":1750075560416,"duration":56},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075560417,"stop":1750075560425,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075560425,"stop":1750075560431,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075560435,"stop":1750075560443,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075560444,"stop":1750075560451,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075560451,"stop":1750075560457,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075560458,"stop":1750075560536,"duration":78},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750075560539,"stop":1750075560663,"duration":124},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750075560664,"stop":1750075560676,"duration":12},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075560677,"stop":1750075560721,"duration":44},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075560722,"stop":1750075560727,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075560727,"stop":1750075560746,"duration":19},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075560727,"stop":1750075560727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075560727,"stop":1750075560727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"6fd2aa1e54397b07.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/897a3ca2fcb0baae.json b/allure-report/data/test-cases/70f4b065f74f6555.json similarity index 97% rename from allure-report/data/test-cases/897a3ca2fcb0baae.json rename to allure-report/data/test-cases/70f4b065f74f6555.json index 5bc3015..3aeb59d 100644 --- a/allure-report/data/test-cases/897a3ca2fcb0baae.json +++ b/allure-report/data/test-cases/70f4b065f74f6555.json @@ -1 +1 @@ -{"uid":"897a3ca2fcb0baae","name":"Только email без пароля","fullName":"ui/login/login.negative.spec.ts:37:7","historyId":"8c67bb2f4fb916157fb6191bbb5e4267:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750075547738,"stop":1750075548931,"duration":1193},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075547738,"stop":1750075547775,"duration":37},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075547739,"stop":1750075547740,"duration":1},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075547739,"stop":1750075547740,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075547740,"stop":1750075547775,"duration":35},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075547741,"stop":1750075547775,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075547780,"stop":1750075548787,"duration":1007},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075548788,"stop":1750075548840,"duration":52},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750075548840,"stop":1750075548878,"duration":38},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750075548879,"stop":1750075548923,"duration":44},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075548924,"stop":1750075548929,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075548929,"stop":1750075548933,"duration":4},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075548929,"stop":1750075548929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075548929,"stop":1750075548929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-1"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"897a3ca2fcb0baae.json","parameterValues":["chromium"]} \ No newline at end of file +{"uid":"70f4b065f74f6555","name":"Только email без пароля","fullName":"ui/login/login.negative.spec.ts:37:7","historyId":"8c67bb2f4fb916157fb6191bbb5e4267:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750075547738,"stop":1750075548931,"duration":1193},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075547738,"stop":1750075547775,"duration":37},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075547739,"stop":1750075547740,"duration":1},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075547739,"stop":1750075547740,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075547740,"stop":1750075547775,"duration":35},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075547741,"stop":1750075547775,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075547780,"stop":1750075548787,"duration":1007},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075548788,"stop":1750075548840,"duration":52},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750075548840,"stop":1750075548878,"duration":38},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750075548879,"stop":1750075548923,"duration":44},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075548924,"stop":1750075548929,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075548929,"stop":1750075548933,"duration":4},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075548929,"stop":1750075548929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075548929,"stop":1750075548929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-1"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"70f4b065f74f6555.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/716b6c73ce6c62ba.json b/allure-report/data/test-cases/716b6c73ce6c62ba.json new file mode 100644 index 0000000..c987258 --- /dev/null +++ b/allure-report/data/test-cases/716b6c73ce6c62ba.json @@ -0,0 +1 @@ +{"uid":"716b6c73ce6c62ba","name":"Несуществующий email","fullName":"ui/login/login.negative.spec.ts:17:7","historyId":"69b9236bee03ff0034bfbd5addc25f93:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750253618487,"stop":1750253620044,"duration":1557},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253618487,"stop":1750253618600,"duration":113},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253618488,"stop":1750253618491,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253618488,"stop":1750253618490,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253618491,"stop":1750253618600,"duration":109},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253618492,"stop":1750253618600,"duration":108},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750253618601,"stop":1750253619649,"duration":1048},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(wrong@example.com)","time":{"start":1750253619649,"stop":1750253619764,"duration":115},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(anyPassword123)","time":{"start":1750253619766,"stop":1750253619781,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750253619781,"stop":1750253619842,"duration":61},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253619842,"stop":1750253619950,"duration":108},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253619951,"stop":1750253620045,"duration":94},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253619951,"stop":1750253619951,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253619951,"stop":1750253619951,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-3"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f86731f8080655f0","status":"passed","time":{"start":1750252855698,"stop":1750252857537,"duration":1839}},{"uid":"cd8f5ff233116d8e","status":"passed","time":{"start":1750084506686,"stop":1750084507723,"duration":1037}},{"uid":"e1e480cf17fbc35b","status":"passed","time":{"start":1750075563691,"stop":1750075564756,"duration":1065}}],"categories":[],"tags":[]},"source":"716b6c73ce6c62ba.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5b2dae25be621258.json b/allure-report/data/test-cases/730c428a5e2bd40e.json similarity index 97% rename from allure-report/data/test-cases/5b2dae25be621258.json rename to allure-report/data/test-cases/730c428a5e2bd40e.json index f297387..7cc55d4 100644 --- a/allure-report/data/test-cases/5b2dae25be621258.json +++ b/allure-report/data/test-cases/730c428a5e2bd40e.json @@ -1 +1 @@ -{"uid":"5b2dae25be621258","name":"has title","fullName":"example.spec.ts:3:5","historyId":"3a2a809b453af4fd564578d1a27f3e45:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750075561393,"stop":1750075562947,"duration":1554},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075561395,"stop":1750075562485,"duration":1090},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750075561400,"stop":1750075561856,"duration":456},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750075561402,"stop":1750075561856,"duration":454},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075561856,"stop":1750075561935,"duration":79},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075561857,"stop":1750075561934,"duration":77},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075561935,"stop":1750075562485,"duration":550},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075561936,"stop":1750075562485,"duration":549},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(https://playwright.dev/)","time":{"start":1750075562489,"stop":1750075563335,"duration":846},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveTitle","time":{"start":1750075563338,"stop":1750075563384,"duration":46},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075563385,"stop":1750075563413,"duration":28},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075563386,"stop":1750075563386,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075563387,"stop":1750075563388,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > webkit > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-2"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"example.spec.ts"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"5b2dae25be621258.json","parameterValues":["webkit"]} \ No newline at end of file +{"uid":"730c428a5e2bd40e","name":"has title","fullName":"example.spec.ts:3:5","historyId":"3a2a809b453af4fd564578d1a27f3e45:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750075561393,"stop":1750075562947,"duration":1554},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075561395,"stop":1750075562485,"duration":1090},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750075561400,"stop":1750075561856,"duration":456},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750075561402,"stop":1750075561856,"duration":454},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075561856,"stop":1750075561935,"duration":79},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075561857,"stop":1750075561934,"duration":77},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075561935,"stop":1750075562485,"duration":550},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075561936,"stop":1750075562485,"duration":549},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(https://playwright.dev/)","time":{"start":1750075562489,"stop":1750075563335,"duration":846},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveTitle","time":{"start":1750075563338,"stop":1750075563384,"duration":46},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075563385,"stop":1750075563413,"duration":28},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075563386,"stop":1750075563386,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075563387,"stop":1750075563388,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > webkit > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-2"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"example.spec.ts"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"730c428a5e2bd40e.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4fd497839b2e468f.json b/allure-report/data/test-cases/73473fc9a8b1bb12.json similarity index 97% rename from allure-report/data/test-cases/4fd497839b2e468f.json rename to allure-report/data/test-cases/73473fc9a8b1bb12.json index f7962c2..9584f74 100644 --- a/allure-report/data/test-cases/4fd497839b2e468f.json +++ b/allure-report/data/test-cases/73473fc9a8b1bb12.json @@ -1 +1 @@ -{"uid":"4fd497839b2e468f","name":"get started link","fullName":"example.spec.ts:10:5","historyId":"37e4aa066a5f6eac2e4d3b98a2ed98a7:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750075545978,"stop":1750075547391,"duration":1413},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075545979,"stop":1750075546573,"duration":594},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750075545985,"stop":1750075546323,"duration":338},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750075545988,"stop":1750075546323,"duration":335},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075546324,"stop":1750075546365,"duration":41},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075546330,"stop":1750075546364,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075546365,"stop":1750075546572,"duration":207},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075546368,"stop":1750075546572,"duration":204},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(https://playwright.dev/)","time":{"start":1750075546574,"stop":1750075547349,"duration":775},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('link', { name: 'Get started' }).click","time":{"start":1750075547353,"stop":1750075547560,"duration":207},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075547572,"stop":1750075547724,"duration":152},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075547725,"stop":1750075547734,"duration":9},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075547725,"stop":1750075547725,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075547725,"stop":1750075547725,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > chromium > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-1"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"example.spec.ts"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"4fd497839b2e468f.json","parameterValues":["chromium"]} \ No newline at end of file +{"uid":"73473fc9a8b1bb12","name":"get started link","fullName":"example.spec.ts:10:5","historyId":"37e4aa066a5f6eac2e4d3b98a2ed98a7:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750075545978,"stop":1750075547391,"duration":1413},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075545979,"stop":1750075546573,"duration":594},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750075545985,"stop":1750075546323,"duration":338},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750075545988,"stop":1750075546323,"duration":335},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075546324,"stop":1750075546365,"duration":41},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075546330,"stop":1750075546364,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075546365,"stop":1750075546572,"duration":207},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075546368,"stop":1750075546572,"duration":204},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(https://playwright.dev/)","time":{"start":1750075546574,"stop":1750075547349,"duration":775},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('link', { name: 'Get started' }).click","time":{"start":1750075547353,"stop":1750075547560,"duration":207},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075547572,"stop":1750075547724,"duration":152},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075547725,"stop":1750075547734,"duration":9},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075547725,"stop":1750075547725,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075547725,"stop":1750075547725,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > chromium > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-1"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"example.spec.ts"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"73473fc9a8b1bb12.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/731909b825a5819e.json b/allure-report/data/test-cases/73dda8034b26c38d.json similarity index 97% rename from allure-report/data/test-cases/731909b825a5819e.json rename to allure-report/data/test-cases/73dda8034b26c38d.json index bf380c2..8389917 100644 --- a/allure-report/data/test-cases/731909b825a5819e.json +++ b/allure-report/data/test-cases/73dda8034b26c38d.json @@ -1 +1 @@ -{"uid":"731909b825a5819e","name":"get started link","fullName":"example.spec.ts:10:5","historyId":"37e4aa066a5f6eac2e4d3b98a2ed98a7:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750075551551,"stop":1750075553777,"duration":2226},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075551552,"stop":1750075554895,"duration":3343},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750075551555,"stop":1750075553860,"duration":2305},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750075551556,"stop":1750075553859,"duration":2303},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075553865,"stop":1750075554134,"duration":269},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075553866,"stop":1750075554133,"duration":267},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075554134,"stop":1750075554895,"duration":761},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075554135,"stop":1750075554895,"duration":760},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(https://playwright.dev/)","time":{"start":1750075554901,"stop":1750075555683,"duration":782},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('link', { name: 'Get started' }).click","time":{"start":1750075555687,"stop":1750075555829,"duration":142},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075555831,"stop":1750075556058,"duration":227},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075556059,"stop":1750075556093,"duration":34},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075556059,"stop":1750075556059,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075556060,"stop":1750075556060,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > firefox > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"example.spec.ts"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"731909b825a5819e.json","parameterValues":["firefox"]} \ No newline at end of file +{"uid":"73dda8034b26c38d","name":"get started link","fullName":"example.spec.ts:10:5","historyId":"37e4aa066a5f6eac2e4d3b98a2ed98a7:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750075551551,"stop":1750075553777,"duration":2226},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075551552,"stop":1750075554895,"duration":3343},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750075551555,"stop":1750075553860,"duration":2305},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750075551556,"stop":1750075553859,"duration":2303},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075553865,"stop":1750075554134,"duration":269},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075553866,"stop":1750075554133,"duration":267},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075554134,"stop":1750075554895,"duration":761},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075554135,"stop":1750075554895,"duration":760},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(https://playwright.dev/)","time":{"start":1750075554901,"stop":1750075555683,"duration":782},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('link', { name: 'Get started' }).click","time":{"start":1750075555687,"stop":1750075555829,"duration":142},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075555831,"stop":1750075556058,"duration":227},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075556059,"stop":1750075556093,"duration":34},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075556059,"stop":1750075556059,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075556060,"stop":1750075556060,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > firefox > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"example.spec.ts"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"73dda8034b26c38d.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/74ce0bc363de24e3.json b/allure-report/data/test-cases/74ce0bc363de24e3.json new file mode 100644 index 0000000..2329247 --- /dev/null +++ b/allure-report/data/test-cases/74ce0bc363de24e3.json @@ -0,0 +1 @@ +{"uid":"74ce0bc363de24e3","name":"Только email без пароля","fullName":"ui/login/login.negative.spec.ts:37:7","historyId":"8c67bb2f4fb916157fb6191bbb5e4267:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750253620373,"stop":1750253625769,"duration":5396},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253620373,"stop":1750253620501,"duration":128},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253620374,"stop":1750253620381,"duration":7},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253620375,"stop":1750253620377,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253620381,"stop":1750253620501,"duration":120},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253620381,"stop":1750253620501,"duration":120},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750253620502,"stop":1750253625124,"duration":4622},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750253625124,"stop":1750253625195,"duration":71},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750253625197,"stop":1750253625240,"duration":43},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750253625240,"stop":1750253625325,"duration":85},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253625326,"stop":1750253625332,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253625332,"stop":1750253625771,"duration":439},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253625332,"stop":1750253625332,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253625332,"stop":1750253625332,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-0"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1fdd505b1055dba0","status":"passed","time":{"start":1750252856451,"stop":1750252857941,"duration":1490}},{"uid":"d40ee6760071bcef","status":"passed","time":{"start":1750084507616,"stop":1750084508347,"duration":731}},{"uid":"1189050f6717ad27","status":"passed","time":{"start":1750075564160,"stop":1750075565015,"duration":855}}],"categories":[],"tags":[]},"source":"74ce0bc363de24e3.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e94724f7c9383d0e.json b/allure-report/data/test-cases/75ec835b417a4298.json similarity index 91% rename from allure-report/data/test-cases/e94724f7c9383d0e.json rename to allure-report/data/test-cases/75ec835b417a4298.json index bc9b6e5..f2e7326 100644 --- a/allure-report/data/test-cases/e94724f7c9383d0e.json +++ b/allure-report/data/test-cases/75ec835b417a4298.json @@ -1 +1 @@ -{"uid":"e94724f7c9383d0e","name":"get started link","fullName":"example.spec.ts:10:5","historyId":"37e4aa066a5f6eac2e4d3b98a2ed98a7:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750084494460,"stop":1750084496622,"duration":2162},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084494461,"stop":1750084496693,"duration":2232},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750084494465,"stop":1750084495815,"duration":1350},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750084494467,"stop":1750084495815,"duration":1348},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084495815,"stop":1750084495830,"duration":15},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084495816,"stop":1750084495829,"duration":13},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084495830,"stop":1750084496693,"duration":863},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084495831,"stop":1750084496693,"duration":862},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(https://playwright.dev/)","time":{"start":1750084496695,"stop":1750084497577,"duration":882},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('link', { name: 'Get started' }).click","time":{"start":1750084497580,"stop":1750084497806,"duration":226},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084497808,"stop":1750084497941,"duration":133},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084497941,"stop":1750084497975,"duration":34},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084497942,"stop":1750084497942,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084497942,"stop":1750084497942,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > firefox > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"example.spec.ts"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"731909b825a5819e","status":"passed","time":{"start":1750075551551,"stop":1750075553777,"duration":2226}}],"categories":[],"tags":[]},"source":"e94724f7c9383d0e.json","parameterValues":["firefox"]} \ No newline at end of file +{"uid":"75ec835b417a4298","name":"get started link","fullName":"example.spec.ts:10:5","historyId":"37e4aa066a5f6eac2e4d3b98a2ed98a7:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750084494460,"stop":1750084496622,"duration":2162},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084494461,"stop":1750084496693,"duration":2232},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750084494465,"stop":1750084495815,"duration":1350},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750084494467,"stop":1750084495815,"duration":1348},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084495815,"stop":1750084495830,"duration":15},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084495816,"stop":1750084495829,"duration":13},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084495830,"stop":1750084496693,"duration":863},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084495831,"stop":1750084496693,"duration":862},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(https://playwright.dev/)","time":{"start":1750084496695,"stop":1750084497577,"duration":882},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('link', { name: 'Get started' }).click","time":{"start":1750084497580,"stop":1750084497806,"duration":226},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084497808,"stop":1750084497941,"duration":133},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084497941,"stop":1750084497975,"duration":34},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084497942,"stop":1750084497942,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084497942,"stop":1750084497942,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > firefox > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"example.spec.ts"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"75ec835b417a4298.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8552b4194c8b884c.json b/allure-report/data/test-cases/779d683e0070d4ba.json similarity index 97% rename from allure-report/data/test-cases/8552b4194c8b884c.json rename to allure-report/data/test-cases/779d683e0070d4ba.json index a50828d..f000400 100644 --- a/allure-report/data/test-cases/8552b4194c8b884c.json +++ b/allure-report/data/test-cases/779d683e0070d4ba.json @@ -1 +1 @@ -{"uid":"8552b4194c8b884c","name":"has title","fullName":"example.spec.ts:3:5","historyId":"3a2a809b453af4fd564578d1a27f3e45:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750075551224,"stop":1750075553043,"duration":1819},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075551225,"stop":1750075553145,"duration":1920},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750075551229,"stop":1750075552324,"duration":1095},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750075551231,"stop":1750075552323,"duration":1092},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075552324,"stop":1750075552441,"duration":117},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075552325,"stop":1750075552440,"duration":115},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075552441,"stop":1750075553145,"duration":704},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075552442,"stop":1750075553145,"duration":703},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(https://playwright.dev/)","time":{"start":1750075553146,"stop":1750075553991,"duration":845},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveTitle","time":{"start":1750075553992,"stop":1750075554107,"duration":115},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075554108,"stop":1750075554143,"duration":35},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075554109,"stop":1750075554109,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075554110,"stop":1750075554110,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > firefox > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-3"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"example.spec.ts"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"8552b4194c8b884c.json","parameterValues":["firefox"]} \ No newline at end of file +{"uid":"779d683e0070d4ba","name":"has title","fullName":"example.spec.ts:3:5","historyId":"3a2a809b453af4fd564578d1a27f3e45:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750075551224,"stop":1750075553043,"duration":1819},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075551225,"stop":1750075553145,"duration":1920},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750075551229,"stop":1750075552324,"duration":1095},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750075551231,"stop":1750075552323,"duration":1092},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075552324,"stop":1750075552441,"duration":117},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075552325,"stop":1750075552440,"duration":115},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075552441,"stop":1750075553145,"duration":704},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075552442,"stop":1750075553145,"duration":703},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(https://playwright.dev/)","time":{"start":1750075553146,"stop":1750075553991,"duration":845},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveTitle","time":{"start":1750075553992,"stop":1750075554107,"duration":115},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075554108,"stop":1750075554143,"duration":35},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075554109,"stop":1750075554109,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075554110,"stop":1750075554110,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > firefox > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-3"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"example.spec.ts"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"779d683e0070d4ba.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7904611e06419096.json b/allure-report/data/test-cases/7904611e06419096.json new file mode 100644 index 0000000..87560f2 --- /dev/null +++ b/allure-report/data/test-cases/7904611e06419096.json @@ -0,0 +1 @@ +{"uid":"7904611e06419096","name":"Переход по ссылке \"Забыли пароль?\"","fullName":"ui/login/login.link.spec.ts:6:5","historyId":"91fcabcb669557e4ddb559c077420e45:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750252855145,"stop":1750252857569,"duration":2424},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252855145,"stop":1750252855571,"duration":426},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750252855149,"stop":1750252855298,"duration":149},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750252855150,"stop":1750252855298,"duration":148},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252855299,"stop":1750252855341,"duration":42},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252855300,"stop":1750252855340,"duration":40},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252855341,"stop":1750252855571,"duration":230},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252855342,"stop":1750252855571,"duration":229},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750252855575,"stop":1750252857602,"duration":2027},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByText('Забыли пароль?').click","time":{"start":1750252857612,"stop":1750252857671,"duration":59},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750252857672,"stop":1750252857692,"duration":20},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252857693,"stop":1750252857703,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252857703,"stop":1750252857724,"duration":21},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252857705,"stop":1750252857705,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252857705,"stop":1750252857705,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-0"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"7904611e06419096.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6c4df356a89dd9d3.json b/allure-report/data/test-cases/7b851f18564754f0.json similarity index 97% rename from allure-report/data/test-cases/6c4df356a89dd9d3.json rename to allure-report/data/test-cases/7b851f18564754f0.json index b0aeff7..c4e9079 100644 --- a/allure-report/data/test-cases/6c4df356a89dd9d3.json +++ b/allure-report/data/test-cases/7b851f18564754f0.json @@ -1 +1 @@ -{"uid":"6c4df356a89dd9d3","name":"Некорректный email (формат)","fullName":"ui/recovery/recover-negative.spec.ts:7:7","historyId":"d776d5fb9c918a79827aea417bdc449a:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750075565746,"stop":1750075567592,"duration":1846},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075565747,"stop":1750075565921,"duration":174},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075565751,"stop":1750075565757,"duration":6},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075565751,"stop":1750075565756,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075565757,"stop":1750075565921,"duration":164},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075565758,"stop":1750075565921,"duration":163},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750075565926,"stop":1750075567295,"duration":1369},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(invalid-email)","time":{"start":1750075567296,"stop":1750075567331,"duration":35},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750075567333,"stop":1750075567591,"duration":258},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075567591,"stop":1750075567594,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075567594,"stop":1750075567596,"duration":2},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075567594,"stop":1750075567594,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075567594,"stop":1750075567594,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-0"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"6c4df356a89dd9d3.json","parameterValues":["webkit"]} \ No newline at end of file +{"uid":"7b851f18564754f0","name":"Некорректный email (формат)","fullName":"ui/recovery/recover-negative.spec.ts:7:7","historyId":"d776d5fb9c918a79827aea417bdc449a:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750075565746,"stop":1750075567592,"duration":1846},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075565747,"stop":1750075565921,"duration":174},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075565751,"stop":1750075565757,"duration":6},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075565751,"stop":1750075565756,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075565757,"stop":1750075565921,"duration":164},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075565758,"stop":1750075565921,"duration":163},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750075565926,"stop":1750075567295,"duration":1369},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(invalid-email)","time":{"start":1750075567296,"stop":1750075567331,"duration":35},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750075567333,"stop":1750075567591,"duration":258},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075567591,"stop":1750075567594,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075567594,"stop":1750075567596,"duration":2},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075567594,"stop":1750075567594,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075567594,"stop":1750075567594,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-0"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"7b851f18564754f0.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7bd365bab41d410d.json b/allure-report/data/test-cases/7bd365bab41d410d.json new file mode 100644 index 0000000..d090eca --- /dev/null +++ b/allure-report/data/test-cases/7bd365bab41d410d.json @@ -0,0 +1 @@ +{"uid":"7bd365bab41d410d","name":"Успешная регистрация нового пользователя","fullName":"ui/registration/register.spec.ts:6:7","historyId":"3562648cd3231e14b42a7151c17c62aa:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750253611748,"stop":1750253620699,"duration":8951},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253611748,"stop":1750253611924,"duration":176},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253611748,"stop":1750253611758,"duration":10},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253611749,"stop":1750253611756,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253611758,"stop":1750253611924,"duration":166},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253611759,"stop":1750253611924,"duration":165},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750253611925,"stop":1750253619679,"duration":7754},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Иван)","time":{"start":1750253619681,"stop":1750253619742,"duration":61},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Тестов)","time":{"start":1750253619743,"stop":1750253619773,"duration":30},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Александрович)","time":{"start":1750253619774,"stop":1750253619811,"duration":37},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёное звание*').click","time":{"start":1750253619812,"stop":1750253619899,"duration":87},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Доцент\"i)","time":{"start":1750253619900,"stop":1750253620001,"duration":101},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёная степень*').click","time":{"start":1750253620021,"stop":1750253620243,"duration":222},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Кандидат наук\"i)","time":{"start":1750253620245,"stop":1750253620328,"duration":83},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Преподаватель)","time":{"start":1750253620328,"stop":1750253620344,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(ЮФУ)","time":{"start":1750253620344,"stop":1750253620367,"duration":23},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest51068@example.com)","time":{"start":1750253620368,"stop":1750253620403,"duration":35},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(+79000051068)","time":{"start":1750253620404,"stop":1750253620420,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750253620420,"stop":1750253620431,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750253620431,"stop":1750253620446,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750253620448,"stop":1750253620522,"duration":74},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750253620522,"stop":1750253620641,"duration":119},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253620641,"stop":1750253620648,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253620648,"stop":1750253620700,"duration":52},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253620648,"stop":1750253620649,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253620649,"stop":1750253620649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":25,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.spec.ts"},{"name":"titlePath","value":" > firefox > ui/registration/register.spec.ts > Позитивные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-1"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/registration/register.spec.ts"},{"name":"subSuite","value":"Позитивные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"bdc4f898eab7c232","status":"passed","time":{"start":1750252851086,"stop":1750252854766,"duration":3680}},{"uid":"3b4a3c3226c1827d","status":"passed","time":{"start":1750176689923,"stop":1750176707314,"duration":17391}}],"categories":[],"tags":[]},"source":"7bd365bab41d410d.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7be5c1dfc4d42552.json b/allure-report/data/test-cases/7be5c1dfc4d42552.json new file mode 100644 index 0000000..1a6b3e6 --- /dev/null +++ b/allure-report/data/test-cases/7be5c1dfc4d42552.json @@ -0,0 +1 @@ +{"uid":"7be5c1dfc4d42552","name":"get started link","fullName":"example.spec.ts:10:5","historyId":"37e4aa066a5f6eac2e4d3b98a2ed98a7:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750253613514,"stop":1750253616668,"duration":3154},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253613516,"stop":1750253614007,"duration":491},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750253613525,"stop":1750253613694,"duration":169},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750253613529,"stop":1750253613694,"duration":165},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253613694,"stop":1750253613741,"duration":47},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253613695,"stop":1750253613734,"duration":39},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253613742,"stop":1750253614007,"duration":265},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253613742,"stop":1750253614007,"duration":265},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(https://playwright.dev/)","time":{"start":1750253614009,"stop":1750253616334,"duration":2325},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('link', { name: 'Get started' }).click","time":{"start":1750253616336,"stop":1750253616399,"duration":63},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253616400,"stop":1750253616768,"duration":368},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253616768,"stop":1750253616843,"duration":75},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253616769,"stop":1750253616769,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253616769,"stop":1750253616769,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > webkit > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-0"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"example.spec.ts"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"2508c669aa0d4591","status":"passed","time":{"start":1750252852203,"stop":1750252854182,"duration":1979}},{"uid":"d8391b9ff99a6ce0","status":"passed","time":{"start":1750084504688,"stop":1750084506422,"duration":1734}},{"uid":"f507eec9254d2e9e","status":"passed","time":{"start":1750075561747,"stop":1750075563488,"duration":1741}}],"categories":[],"tags":[]},"source":"7be5c1dfc4d42552.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7c195f45eccd77f0.json b/allure-report/data/test-cases/7c195f45eccd77f0.json new file mode 100644 index 0000000..777b082 --- /dev/null +++ b/allure-report/data/test-cases/7c195f45eccd77f0.json @@ -0,0 +1 @@ +{"uid":"7c195f45eccd77f0","name":"Пустое поле \"Повторите пароль\"","fullName":"ui/recovery/recover-negative.spec.ts:45:7","historyId":"e6d2fb91f0b85b95c3962ffc860dddd7:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750253628906,"stop":1750253632674,"duration":3768},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253628906,"stop":1750253629056,"duration":150},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253628907,"stop":1750253628920,"duration":13},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253628908,"stop":1750253628916,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253628920,"stop":1750253629056,"duration":136},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253628920,"stop":1750253629056,"duration":136},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750253629056,"stop":1750253631875,"duration":2819},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750253631875,"stop":1750253631926,"duration":51},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750253631927,"stop":1750253632195,"duration":268},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750253632195,"stop":1750253632197,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253632198,"stop":1750253632387,"duration":189},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253632387,"stop":1750253632394,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253632395,"stop":1750253632400,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253632401,"stop":1750253632408,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253632408,"stop":1750253632414,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253632415,"stop":1750253632435,"duration":20},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750253632436,"stop":1750253632496,"duration":60},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750253632496,"stop":1750253632545,"duration":49},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750253632546,"stop":1750253632555,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750253632556,"stop":1750253632611,"duration":55},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253632611,"stop":1750253632615,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253632616,"stop":1750253632676,"duration":60},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253632616,"stop":1750253632616,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253632616,"stop":1750253632616,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-0"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c9725be2aa9236a5","status":"passed","time":{"start":1750252860235,"stop":1750252861771,"duration":1536}},{"uid":"e48bc757cfbc0db0","status":"passed","time":{"start":1750084509447,"stop":1750084510516,"duration":1069}},{"uid":"f67d4196db792c92","status":"passed","time":{"start":1750075567085,"stop":1750075568056,"duration":971}}],"categories":[],"tags":[]},"source":"7c195f45eccd77f0.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7cb6860d4bfa30f8.json b/allure-report/data/test-cases/7cb6860d4bfa30f8.json new file mode 100644 index 0000000..c7c2fd7 --- /dev/null +++ b/allure-report/data/test-cases/7cb6860d4bfa30f8.json @@ -0,0 +1 @@ +{"uid":"7cb6860d4bfa30f8","name":"Несуществующий email","fullName":"ui/recovery/recover-negative.spec.ts:15:7","historyId":"c118be77fa2af6f0e0052ec7489ba66c:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750252844811,"stop":1750252847292,"duration":2481},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252844814,"stop":1750252844987,"duration":173},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252844815,"stop":1750252844821,"duration":6},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252844815,"stop":1750252844820,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252844821,"stop":1750252844987,"duration":166},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252844821,"stop":1750252844987,"duration":166},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750252844989,"stop":1750252847083,"duration":2094},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(nobody@example.com)","time":{"start":1750252847084,"stop":1750252847116,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750252847118,"stop":1750252847167,"duration":49},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252847167,"stop":1750252847284,"duration":117},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252847284,"stop":1750252847297,"duration":13},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252847284,"stop":1750252847284,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252847284,"stop":1750252847284,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-1"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"7cb6860d4bfa30f8.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7d688343ed4965a8.json b/allure-report/data/test-cases/7d688343ed4965a8.json new file mode 100644 index 0000000..db54c8c --- /dev/null +++ b/allure-report/data/test-cases/7d688343ed4965a8.json @@ -0,0 +1 @@ +{"uid":"7d688343ed4965a8","name":"Пустое поле \"Повторите пароль\"","fullName":"ui/recovery/recover-negative.spec.ts:45:7","historyId":"e6d2fb91f0b85b95c3962ffc860dddd7:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253489856,"stop":1750253491644,"duration":1788},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253489857,"stop":1750253489902,"duration":45},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253489858,"stop":1750253489862,"duration":4},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253489858,"stop":1750253489860,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253489862,"stop":1750253489902,"duration":40},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253489862,"stop":1750253489902,"duration":40},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750253489903,"stop":1750253490769,"duration":866},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750253490774,"stop":1750253490822,"duration":48},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750253490823,"stop":1750253490876,"duration":53},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750253490877,"stop":1750253490918,"duration":41},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253490927,"stop":1750253490944,"duration":17},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253490944,"stop":1750253490956,"duration":12},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253490957,"stop":1750253490991,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253490992,"stop":1750253491035,"duration":43},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253491035,"stop":1750253491061,"duration":26},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253491063,"stop":1750253491076,"duration":13},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750253491077,"stop":1750253491123,"duration":46},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750253491124,"stop":1750253491213,"duration":89},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750253491213,"stop":1750253491232,"duration":19},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750253491233,"stop":1750253491272,"duration":39},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253491272,"stop":1750253491277,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253491277,"stop":1750253491646,"duration":369},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253491277,"stop":1750253491277,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253491277,"stop":1750253491277,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"7d688343ed4965a8.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f5ffdd03c44055b1.json b/allure-report/data/test-cases/7fb402004034812f.json similarity index 91% rename from allure-report/data/test-cases/f5ffdd03c44055b1.json rename to allure-report/data/test-cases/7fb402004034812f.json index 283c3d2..c7df011 100644 --- a/allure-report/data/test-cases/f5ffdd03c44055b1.json +++ b/allure-report/data/test-cases/7fb402004034812f.json @@ -1 +1 @@ -{"uid":"f5ffdd03c44055b1","name":"Несуществующий email","fullName":"ui/login/login.negative.spec.ts:17:7","historyId":"69b9236bee03ff0034bfbd5addc25f93:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750084489363,"stop":1750084490743,"duration":1380},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084489363,"stop":1750084489403,"duration":40},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084489364,"stop":1750084489365,"duration":1},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084489364,"stop":1750084489365,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084489366,"stop":1750084489403,"duration":37},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084489366,"stop":1750084489403,"duration":37},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084489405,"stop":1750084490507,"duration":1102},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(wrong@example.com)","time":{"start":1750084490508,"stop":1750084490561,"duration":53},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(anyPassword123)","time":{"start":1750084490562,"stop":1750084490595,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750084490596,"stop":1750084490631,"duration":35},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084490631,"stop":1750084490739,"duration":108},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084490740,"stop":1750084490745,"duration":5},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084490740,"stop":1750084490740,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084490740,"stop":1750084490740,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-1"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b16b189690b6777f","status":"passed","time":{"start":1750075547613,"stop":1750075548776,"duration":1163}}],"categories":[],"tags":[]},"source":"f5ffdd03c44055b1.json","parameterValues":["chromium"]} \ No newline at end of file +{"uid":"7fb402004034812f","name":"Несуществующий email","fullName":"ui/login/login.negative.spec.ts:17:7","historyId":"69b9236bee03ff0034bfbd5addc25f93:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750084489363,"stop":1750084490743,"duration":1380},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084489363,"stop":1750084489403,"duration":40},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084489364,"stop":1750084489365,"duration":1},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084489364,"stop":1750084489365,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084489366,"stop":1750084489403,"duration":37},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084489366,"stop":1750084489403,"duration":37},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084489405,"stop":1750084490507,"duration":1102},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(wrong@example.com)","time":{"start":1750084490508,"stop":1750084490561,"duration":53},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(anyPassword123)","time":{"start":1750084490562,"stop":1750084490595,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750084490596,"stop":1750084490631,"duration":35},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084490631,"stop":1750084490739,"duration":108},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084490740,"stop":1750084490745,"duration":5},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084490740,"stop":1750084490740,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084490740,"stop":1750084490740,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-1"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"7fb402004034812f.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8076f7892ffa88f.json b/allure-report/data/test-cases/8076f7892ffa88f.json new file mode 100644 index 0000000..2d044be --- /dev/null +++ b/allure-report/data/test-cases/8076f7892ffa88f.json @@ -0,0 +1 @@ +{"uid":"8076f7892ffa88f","name":"Пустое поле \"Повторите пароль\"","fullName":"ui/recovery/recover-negative.spec.ts:45:7","historyId":"e6d2fb91f0b85b95c3962ffc860dddd7:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750084492375,"stop":1750084493870,"duration":1495},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084492375,"stop":1750084492409,"duration":34},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084492376,"stop":1750084492377,"duration":1},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084492376,"stop":1750084492377,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084492377,"stop":1750084492409,"duration":32},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084492377,"stop":1750084492409,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750084492410,"stop":1750084493473,"duration":1063},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084493477,"stop":1750084493535,"duration":58},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750084493539,"stop":1750084493589,"duration":50},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750084493590,"stop":1750084493592,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084493592,"stop":1750084493678,"duration":86},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084493679,"stop":1750084493685,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084493685,"stop":1750084493689,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084493689,"stop":1750084493694,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084493695,"stop":1750084493700,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084493701,"stop":1750084493714,"duration":13},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084493715,"stop":1750084493754,"duration":39},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750084493755,"stop":1750084493832,"duration":77},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750084493833,"stop":1750084493836,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084493837,"stop":1750084493865,"duration":28},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084493865,"stop":1750084493868,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084493868,"stop":1750084493872,"duration":4},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084493868,"stop":1750084493868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084493869,"stop":1750084493869,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"8076f7892ffa88f.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/817c17381e536405.json b/allure-report/data/test-cases/817c17381e536405.json new file mode 100644 index 0000000..9a6d854 --- /dev/null +++ b/allure-report/data/test-cases/817c17381e536405.json @@ -0,0 +1 @@ +{"uid":"817c17381e536405","name":"Несуществующий email","fullName":"ui/recovery/recover-negative.spec.ts:15:7","historyId":"c118be77fa2af6f0e0052ec7489ba66c:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253482991,"stop":1750253489850,"duration":6859},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253482991,"stop":1750253483030,"duration":39},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253482991,"stop":1750253482995,"duration":4},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253482992,"stop":1750253482993,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253482995,"stop":1750253483029,"duration":34},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253482995,"stop":1750253483029,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750253483031,"stop":1750253489019,"duration":5988},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(nobody@example.com)","time":{"start":1750253489021,"stop":1750253489041,"duration":20},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750253489041,"stop":1750253489069,"duration":28},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253489069,"stop":1750253489176,"duration":107},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253489176,"stop":1750253489851,"duration":675},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253489176,"stop":1750253489176,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253489176,"stop":1750253489176,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"817c17381e536405.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/81cf68134abace1b.json b/allure-report/data/test-cases/81cf68134abace1b.json new file mode 100644 index 0000000..36ada7c --- /dev/null +++ b/allure-report/data/test-cases/81cf68134abace1b.json @@ -0,0 +1 @@ +{"uid":"81cf68134abace1b","name":"Успешная регистрация нового пользователя","fullName":"ui/registration/register.spec.ts:6:7","historyId":"3562648cd3231e14b42a7151c17c62aa:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750176709746,"stop":1750176716615,"duration":6869},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750176709744,"stop":1750176711872,"duration":2128},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750176709747,"stop":1750176710166,"duration":419},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750176709748,"stop":1750176710166,"duration":418},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750176710167,"stop":1750176711184,"duration":1017},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750176710167,"stop":1750176711183,"duration":1016},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750176711185,"stop":1750176711872,"duration":687},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750176711185,"stop":1750176711871,"duration":686},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750176711875,"stop":1750176715380,"duration":3505},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Иван)","time":{"start":1750176715383,"stop":1750176715475,"duration":92},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Тестов)","time":{"start":1750176715476,"stop":1750176715490,"duration":14},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Александрович)","time":{"start":1750176715490,"stop":1750176715499,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёное звание*').click","time":{"start":1750176715503,"stop":1750176715556,"duration":53},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Доцент\"i)","time":{"start":1750176715557,"stop":1750176715947,"duration":390},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёная степень*').click","time":{"start":1750176715948,"stop":1750176716355,"duration":407},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Кандидат наук\"i)","time":{"start":1750176716356,"stop":1750176716746,"duration":390},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Преподаватель)","time":{"start":1750176716747,"stop":1750176716758,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(ЮФУ)","time":{"start":1750176716759,"stop":1750176716776,"duration":17},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest71415@example.com)","time":{"start":1750176716777,"stop":1750176716795,"duration":18},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(+79000071415)","time":{"start":1750176716796,"stop":1750176716813,"duration":17},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750176716813,"stop":1750176716825,"duration":12},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750176716826,"stop":1750176716835,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750176716837,"stop":1750176716887,"duration":50},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750176716889,"stop":1750176717000,"duration":111},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750176717000,"stop":1750176717005,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750176717005,"stop":1750176717035,"duration":30},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750176717006,"stop":1750176717006,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750176717006,"stop":1750176717006,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":27,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.spec.ts"},{"name":"titlePath","value":" > webkit > ui/registration/register.spec.ts > Позитивные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-53790-worker-0"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/registration/register.spec.ts"},{"name":"subSuite","value":"Позитивные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"81cf68134abace1b.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/82f13eaca42a7424.json b/allure-report/data/test-cases/82f13eaca42a7424.json new file mode 100644 index 0000000..473aeed --- /dev/null +++ b/allure-report/data/test-cases/82f13eaca42a7424.json @@ -0,0 +1 @@ +{"uid":"82f13eaca42a7424","name":"Пользователь успешно восстанавливает пароль","fullName":"ui/recovery/recover-password.spec.ts:7:7","historyId":"1779c735aef9d62c071557455e74e57f:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750252860877,"stop":1750252862631,"duration":1754},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252860877,"stop":1750252860997,"duration":120},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252860881,"stop":1750252860886,"duration":5},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252860881,"stop":1750252860886,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252860886,"stop":1750252860997,"duration":111},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252860887,"stop":1750252860996,"duration":109},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750252860998,"stop":1750252862094,"duration":1096},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750252862094,"stop":1750252862117,"duration":23},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750252862118,"stop":1750252862154,"duration":36},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750252862155,"stop":1750252862260,"duration":105},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750252862261,"stop":1750252862262,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252862263,"stop":1750252862267,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252862268,"stop":1750252862273,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252862273,"stop":1750252862278,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252862279,"stop":1750252862282,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252862283,"stop":1750252862287,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252862287,"stop":1750252862291,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750252862291,"stop":1750252862337,"duration":46},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252862337,"stop":1750252862442,"duration":105},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750252862442,"stop":1750252862450,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750252862451,"stop":1750252862456,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750252862457,"stop":1750252862507,"duration":50},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750252862508,"stop":1750252862616,"duration":108},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252862617,"stop":1750252862625,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252862625,"stop":1750252862635,"duration":10},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252862625,"stop":1750252862625,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252862626,"stop":1750252862626,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":26,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-password.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-password.spec.ts > Восстановление пароля — позитивные сценарии"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-2"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-password.spec.ts"},{"name":"subSuite","value":"Восстановление пароля — позитивные сценарии"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"82f13eaca42a7424.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/83468007d66545d9.json b/allure-report/data/test-cases/83468007d66545d9.json new file mode 100644 index 0000000..d997661 --- /dev/null +++ b/allure-report/data/test-cases/83468007d66545d9.json @@ -0,0 +1 @@ +{"uid":"83468007d66545d9","name":"Пустое поле \"Повторите пароль\"","fullName":"ui/recovery/recover-negative.spec.ts:45:7","historyId":"e6d2fb91f0b85b95c3962ffc860dddd7:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750252814938,"stop":1750252824465,"duration":9527},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252814938,"stop":1750252814976,"duration":38},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252814939,"stop":1750252814941,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252814939,"stop":1750252814941,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252814941,"stop":1750252814976,"duration":35},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252814941,"stop":1750252814976,"duration":35},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750252814976,"stop":1750252815798,"duration":822},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750252815799,"stop":1750252815831,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750252815832,"stop":1750252815858,"duration":26},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750252815859,"stop":1750252815860,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252815860,"stop":1750252824271,"duration":8411},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252824272,"stop":1750252824279,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252824279,"stop":1750252824284,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252824284,"stop":1750252824289,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252824289,"stop":1750252824292,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252824293,"stop":1750252824297,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750252824297,"stop":1750252824329,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750252824329,"stop":1750252824411,"duration":82},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750252824413,"stop":1750252824418,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750252824421,"stop":1750252824457,"duration":36},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252824458,"stop":1750252824461,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252824461,"stop":1750252824467,"duration":6},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252824461,"stop":1750252824461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252824461,"stop":1750252824461,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"83468007d66545d9.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8364fab107a5383f.json b/allure-report/data/test-cases/8364fab107a5383f.json new file mode 100644 index 0000000..17f20c0 --- /dev/null +++ b/allure-report/data/test-cases/8364fab107a5383f.json @@ -0,0 +1 @@ +{"uid":"8364fab107a5383f","name":"Регистр в email (User@test.com ≠ user@test.com)","fullName":"ui/login/login.negative.spec.ts:58:7","historyId":"cc4ad4b40ef726af11b2bd4f5523dbe0:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750253591861,"stop":1750253598453,"duration":6592},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253591861,"stop":1750253592031,"duration":170},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253591862,"stop":1750253591869,"duration":7},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253591862,"stop":1750253591865,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253591869,"stop":1750253592031,"duration":162},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253591869,"stop":1750253592031,"duration":162},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750253592031,"stop":1750253598202,"duration":6171},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Autotest@Example.com)","time":{"start":1750253598204,"stop":1750253598234,"duration":30},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750253598235,"stop":1750253598243,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750253598244,"stop":1750253598313,"duration":69},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253598313,"stop":1750253598424,"duration":111},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253598424,"stop":1750253598455,"duration":31},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253598424,"stop":1750253598424,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253598424,"stop":1750253598424,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"tag","value":"test.com"},{"name":"tag","value":"test.com)"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-1"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1adf876d79ab931","status":"passed","time":{"start":1750252843109,"stop":1750252844801,"duration":1692}},{"uid":"8637dfb0e9d85172","status":"passed","time":{"start":1750084500111,"stop":1750084501485,"duration":1374}},{"uid":"fcba363460d3f6b5","status":"passed","time":{"start":1750075556823,"stop":1750075558200,"duration":1377}}],"categories":[],"tags":["test.com","test.com)"]},"source":"8364fab107a5383f.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/83f95970b54a8b61.json b/allure-report/data/test-cases/83f95970b54a8b61.json new file mode 100644 index 0000000..c5fd999 --- /dev/null +++ b/allure-report/data/test-cases/83f95970b54a8b61.json @@ -0,0 +1 @@ +{"uid":"83f95970b54a8b61","name":"Некорректный email (формат)","fullName":"ui/recovery/recover-negative.spec.ts:7:7","historyId":"d776d5fb9c918a79827aea417bdc449a:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253482653,"stop":1750253484382,"duration":1729},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253482653,"stop":1750253482689,"duration":36},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253482653,"stop":1750253482656,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253482654,"stop":1750253482655,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253482656,"stop":1750253482689,"duration":33},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253482656,"stop":1750253482689,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750253482690,"stop":1750253483644,"duration":954},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(invalid-email)","time":{"start":1750253483645,"stop":1750253483664,"duration":19},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750253483664,"stop":1750253483707,"duration":43},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253483707,"stop":1750253483710,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253483710,"stop":1750253484383,"duration":673},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253483710,"stop":1750253483710,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253483710,"stop":1750253483710,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-1"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"83f95970b54a8b61.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/83fbcf20a008eff.json b/allure-report/data/test-cases/83fbcf20a008eff.json new file mode 100644 index 0000000..3e61488 --- /dev/null +++ b/allure-report/data/test-cases/83fbcf20a008eff.json @@ -0,0 +1 @@ +{"uid":"83fbcf20a008eff","name":"Оба поля пустые","fullName":"ui/login/login.negative.spec.ts:27:7","historyId":"58990385f74407307e4ace7ad02abf05:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750252856141,"stop":1750252857865,"duration":1724},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252856141,"stop":1750252856257,"duration":116},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252856142,"stop":1750252856144,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252856142,"stop":1750252856143,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252856144,"stop":1750252856257,"duration":113},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252856144,"stop":1750252856257,"duration":113},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750252856258,"stop":1750252857601,"duration":1343},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750252857603,"stop":1750252857686,"duration":83},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750252857687,"stop":1750252857728,"duration":41},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750252857731,"stop":1750252857841,"duration":110},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252857843,"stop":1750252857849,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252857849,"stop":1750252857857,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252857857,"stop":1750252857867,"duration":10},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252857858,"stop":1750252857858,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252857858,"stop":1750252857858,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-2"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"83fbcf20a008eff.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/85493f33f5b82a23.json b/allure-report/data/test-cases/85493f33f5b82a23.json new file mode 100644 index 0000000..531bead --- /dev/null +++ b/allure-report/data/test-cases/85493f33f5b82a23.json @@ -0,0 +1 @@ +{"uid":"85493f33f5b82a23","name":"Несуществующий email","fullName":"ui/login/login.negative.spec.ts:17:7","historyId":"69b9236bee03ff0034bfbd5addc25f93:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253542024,"stop":1750253543977,"duration":1953},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253542025,"stop":1750253542069,"duration":44},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253542025,"stop":1750253542029,"duration":4},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253542026,"stop":1750253542027,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253542029,"stop":1750253542069,"duration":40},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253542029,"stop":1750253542069,"duration":40},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750253542070,"stop":1750253542993,"duration":923},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(wrong@example.com)","time":{"start":1750253542993,"stop":1750253543013,"duration":20},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(anyPassword123)","time":{"start":1750253543013,"stop":1750253543060,"duration":47},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750253543063,"stop":1750253543104,"duration":41},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253543104,"stop":1750253543213,"duration":109},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253543213,"stop":1750253543979,"duration":766},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253543213,"stop":1750253543213,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253543213,"stop":1750253543213,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"fa4893ecd7ef05c0","status":"passed","time":{"start":1750253478049,"stop":1750253479796,"duration":1747}},{"uid":"253a7abc2208994a","status":"passed","time":{"start":1750252810864,"stop":1750252811923,"duration":1059}},{"uid":"7fb402004034812f","status":"passed","time":{"start":1750084489363,"stop":1750084490743,"duration":1380}},{"uid":"b60f6a0804ddbcf2","status":"passed","time":{"start":1750075547613,"stop":1750075548776,"duration":1163}}],"categories":[],"tags":[]},"source":"85493f33f5b82a23.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8554552a459385ed.json b/allure-report/data/test-cases/8554552a459385ed.json new file mode 100644 index 0000000..014b751 --- /dev/null +++ b/allure-report/data/test-cases/8554552a459385ed.json @@ -0,0 +1 @@ +{"uid":"8554552a459385ed","name":"Некорректный формат email","fullName":"ui/login/login.negative.spec.ts:46:7","historyId":"e5764a911de0175f8f7118313ae14544:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750253591599,"stop":1750253598769,"duration":7170},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253591599,"stop":1750253591778,"duration":179},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253591600,"stop":1750253591608,"duration":8},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253591601,"stop":1750253591604,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253591608,"stop":1750253591778,"duration":170},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253591608,"stop":1750253591778,"duration":170},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750253591779,"stop":1750253598615,"duration":6836},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(invalid-email)","time":{"start":1750253598615,"stop":1750253598658,"duration":43},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(anyPassword123)","time":{"start":1750253598659,"stop":1750253598673,"duration":14},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750253598674,"stop":1750253598729,"duration":55},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253598730,"stop":1750253598739,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253598739,"stop":1750253598771,"duration":32},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253598739,"stop":1750253598739,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253598739,"stop":1750253598739,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-3"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8cede58e2a99a287","status":"passed","time":{"start":1750252842226,"stop":1750252843934,"duration":1708}},{"uid":"407f716b23d4e3cd","status":"passed","time":{"start":1750084499796,"stop":1750084501311,"duration":1515}},{"uid":"3196675944a7d942","status":"passed","time":{"start":1750075556104,"stop":1750075557367,"duration":1263}}],"categories":[],"tags":[]},"source":"8554552a459385ed.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/85e2816b7097b4a1.json b/allure-report/data/test-cases/85e2816b7097b4a1.json new file mode 100644 index 0000000..83f609a --- /dev/null +++ b/allure-report/data/test-cases/85e2816b7097b4a1.json @@ -0,0 +1 @@ +{"uid":"85e2816b7097b4a1","name":"Переключатель видимости пароля показывает и скрывает ввод","fullName":"ui/login/login.ui.spec.ts:7:7","historyId":"b1726395bd827a3a21fe3c829a098be4:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750252813037,"stop":1750252813951,"duration":914},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252813036,"stop":1750252813099,"duration":63},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252813037,"stop":1750252813039,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252813038,"stop":1750252813039,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252813039,"stop":1750252813099,"duration":60},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252813039,"stop":1750252813099,"duration":60},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750252813100,"stop":1750252813782,"duration":682},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750252813783,"stop":1750252813873,"duration":90},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750252813874,"stop":1750252813875,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750252813875,"stop":1750252813876,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByAltText('показать пароль').click","time":{"start":1750252813876,"stop":1750252813908,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750252813909,"stop":1750252813910,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750252813910,"stop":1750252813910,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByAltText('показать пароль').click","time":{"start":1750252813911,"stop":1750252813942,"duration":31},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750252813943,"stop":1750252813946,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750252813946,"stop":1750252813946,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252813946,"stop":1750252813951,"duration":5},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252813946,"stop":1750252813946,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252813947,"stop":1750252813947,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":18,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.ui.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.ui.spec.ts > UI сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.ui.spec.ts"},{"name":"subSuite","value":"UI сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"85e2816b7097b4a1.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/98e3f9bd5b0da70e.json b/allure-report/data/test-cases/8637dfb0e9d85172.json similarity index 91% rename from allure-report/data/test-cases/98e3f9bd5b0da70e.json rename to allure-report/data/test-cases/8637dfb0e9d85172.json index 4888475..a353ee5 100644 --- a/allure-report/data/test-cases/98e3f9bd5b0da70e.json +++ b/allure-report/data/test-cases/8637dfb0e9d85172.json @@ -1 +1 @@ -{"uid":"98e3f9bd5b0da70e","name":"Регистр в email (User@test.com ≠ user@test.com)","fullName":"ui/login/login.negative.spec.ts:58:7","historyId":"cc4ad4b40ef726af11b2bd4f5523dbe0:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750084500111,"stop":1750084501485,"duration":1374},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084500111,"stop":1750084500327,"duration":216},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084500120,"stop":1750084500132,"duration":12},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084500121,"stop":1750084500130,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084500132,"stop":1750084500327,"duration":195},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084500132,"stop":1750084500327,"duration":195},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084500328,"stop":1750084501203,"duration":875},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Autotest@Example.com)","time":{"start":1750084501204,"stop":1750084501238,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750084501238,"stop":1750084501271,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750084501272,"stop":1750084501343,"duration":71},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084501343,"stop":1750084501474,"duration":131},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084501475,"stop":1750084501490,"duration":15},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084501475,"stop":1750084501475,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084501475,"stop":1750084501475,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"tag","value":"test.com"},{"name":"tag","value":"test.com)"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-3"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8c86ef49444cfeb3","status":"passed","time":{"start":1750075556823,"stop":1750075558200,"duration":1377}}],"categories":[],"tags":["test.com","test.com)"]},"source":"98e3f9bd5b0da70e.json","parameterValues":["firefox"]} \ No newline at end of file +{"uid":"8637dfb0e9d85172","name":"Регистр в email (User@test.com ≠ user@test.com)","fullName":"ui/login/login.negative.spec.ts:58:7","historyId":"cc4ad4b40ef726af11b2bd4f5523dbe0:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750084500111,"stop":1750084501485,"duration":1374},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084500111,"stop":1750084500327,"duration":216},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084500120,"stop":1750084500132,"duration":12},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084500121,"stop":1750084500130,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084500132,"stop":1750084500327,"duration":195},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084500132,"stop":1750084500327,"duration":195},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084500328,"stop":1750084501203,"duration":875},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Autotest@Example.com)","time":{"start":1750084501204,"stop":1750084501238,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750084501238,"stop":1750084501271,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750084501272,"stop":1750084501343,"duration":71},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084501343,"stop":1750084501474,"duration":131},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084501475,"stop":1750084501490,"duration":15},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084501475,"stop":1750084501475,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084501475,"stop":1750084501475,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"tag","value":"test.com"},{"name":"tag","value":"test.com)"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-3"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["test.com","test.com)"]},"source":"8637dfb0e9d85172.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/86f543b393f28fa.json b/allure-report/data/test-cases/86f543b393f28fa.json new file mode 100644 index 0000000..37b52d0 --- /dev/null +++ b/allure-report/data/test-cases/86f543b393f28fa.json @@ -0,0 +1 @@ +{"uid":"86f543b393f28fa","name":"Неверный код подтверждения","fullName":"ui/recovery/recover-negative.spec.ts:23:7","historyId":"31f03826b2a8da254be42b2d49bc35f3:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750084492172,"stop":1750084493410,"duration":1238},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084492171,"stop":1750084492219,"duration":48},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084492172,"stop":1750084492175,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084492172,"stop":1750084492174,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084492175,"stop":1750084492219,"duration":44},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084492176,"stop":1750084492219,"duration":43},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750084492222,"stop":1750084493058,"duration":836},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084493059,"stop":1750084493091,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750084493092,"stop":1750084493133,"duration":41},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750084493134,"stop":1750084493237,"duration":103},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750084493238,"stop":1750084493238,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(6)","time":{"start":1750084493239,"stop":1750084493245,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(5)","time":{"start":1750084493246,"stop":1750084493249,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(4)","time":{"start":1750084493250,"stop":1750084493253,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(3)","time":{"start":1750084493253,"stop":1750084493256,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(2)","time":{"start":1750084493257,"stop":1750084493263,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(1)","time":{"start":1750084493264,"stop":1750084493270,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084493270,"stop":1750084493299,"duration":29},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084493300,"stop":1750084493404,"duration":104},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084493404,"stop":1750084493412,"duration":8},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084493404,"stop":1750084493404,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084493405,"stop":1750084493405,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":21,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"86f543b393f28fa.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f0ec6d6d628046ac.json b/allure-report/data/test-cases/87bb628f8970a7fd.json similarity index 91% rename from allure-report/data/test-cases/f0ec6d6d628046ac.json rename to allure-report/data/test-cases/87bb628f8970a7fd.json index f9159c7..7012503 100644 --- a/allure-report/data/test-cases/f0ec6d6d628046ac.json +++ b/allure-report/data/test-cases/87bb628f8970a7fd.json @@ -1 +1 @@ -{"uid":"f0ec6d6d628046ac","name":"Оба поля пустые","fullName":"ui/login/login.negative.spec.ts:27:7","historyId":"58990385f74407307e4ace7ad02abf05:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750084498792,"stop":1750084500139,"duration":1347},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084498791,"stop":1750084499111,"duration":320},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084498793,"stop":1750084498842,"duration":49},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084498793,"stop":1750084498841,"duration":48},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084498842,"stop":1750084499111,"duration":269},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084498842,"stop":1750084499111,"duration":269},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084499119,"stop":1750084499908,"duration":789},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750084499910,"stop":1750084500008,"duration":98},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750084500009,"stop":1750084500034,"duration":25},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750084500036,"stop":1750084500091,"duration":55},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084500092,"stop":1750084500108,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084500109,"stop":1750084500125,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084500125,"stop":1750084500142,"duration":17},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084500126,"stop":1750084500126,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084500126,"stop":1750084500126,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-1"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9fc6cc9365f5ebab","status":"passed","time":{"start":1750075555537,"stop":1750075556816,"duration":1279}}],"categories":[],"tags":[]},"source":"f0ec6d6d628046ac.json","parameterValues":["firefox"]} \ No newline at end of file +{"uid":"87bb628f8970a7fd","name":"Оба поля пустые","fullName":"ui/login/login.negative.spec.ts:27:7","historyId":"58990385f74407307e4ace7ad02abf05:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750084498792,"stop":1750084500139,"duration":1347},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084498791,"stop":1750084499111,"duration":320},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084498793,"stop":1750084498842,"duration":49},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084498793,"stop":1750084498841,"duration":48},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084498842,"stop":1750084499111,"duration":269},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084498842,"stop":1750084499111,"duration":269},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084499119,"stop":1750084499908,"duration":789},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750084499910,"stop":1750084500008,"duration":98},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750084500009,"stop":1750084500034,"duration":25},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750084500036,"stop":1750084500091,"duration":55},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084500092,"stop":1750084500108,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084500109,"stop":1750084500125,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084500125,"stop":1750084500142,"duration":17},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084500126,"stop":1750084500126,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084500126,"stop":1750084500126,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-1"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"87bb628f8970a7fd.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a41465dcbdf5bc12.json b/allure-report/data/test-cases/894992e7a7115936.json similarity index 97% rename from allure-report/data/test-cases/a41465dcbdf5bc12.json rename to allure-report/data/test-cases/894992e7a7115936.json index 959c6b1..8183837 100644 --- a/allure-report/data/test-cases/a41465dcbdf5bc12.json +++ b/allure-report/data/test-cases/894992e7a7115936.json @@ -1 +1 @@ -{"uid":"a41465dcbdf5bc12","name":"Пароли не совпадают","fullName":"ui/recovery/recover-negative.spec.ts:56:7","historyId":"a7eaebb1e41fbbf13bf61195120b3ce9:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750075550475,"stop":1750075551375,"duration":900},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075550475,"stop":1750075550520,"duration":45},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075550476,"stop":1750075550480,"duration":4},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075550477,"stop":1750075550480,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075550480,"stop":1750075550520,"duration":40},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075550480,"stop":1750075550520,"duration":40},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750075550521,"stop":1750075551018,"duration":497},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075551020,"stop":1750075551053,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750075551054,"stop":1750075551087,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750075551087,"stop":1750075551088,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075551088,"stop":1750075551194,"duration":106},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075551195,"stop":1750075551199,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075551200,"stop":1750075551204,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075551205,"stop":1750075551208,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075551209,"stop":1750075551212,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075551213,"stop":1750075551219,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075551220,"stop":1750075551255,"duration":35},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750075551256,"stop":1750075551337,"duration":81},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!OtherPass123)","time":{"start":1750075551338,"stop":1750075551343,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075551344,"stop":1750075551369,"duration":25},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075551370,"stop":1750075551372,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075551372,"stop":1750075551376,"duration":4},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075551372,"stop":1750075551372,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075551372,"stop":1750075551372,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"a41465dcbdf5bc12.json","parameterValues":["chromium"]} \ No newline at end of file +{"uid":"894992e7a7115936","name":"Пароли не совпадают","fullName":"ui/recovery/recover-negative.spec.ts:56:7","historyId":"a7eaebb1e41fbbf13bf61195120b3ce9:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750075550475,"stop":1750075551375,"duration":900},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075550475,"stop":1750075550520,"duration":45},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075550476,"stop":1750075550480,"duration":4},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075550477,"stop":1750075550480,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075550480,"stop":1750075550520,"duration":40},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075550480,"stop":1750075550520,"duration":40},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750075550521,"stop":1750075551018,"duration":497},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075551020,"stop":1750075551053,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750075551054,"stop":1750075551087,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750075551087,"stop":1750075551088,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075551088,"stop":1750075551194,"duration":106},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075551195,"stop":1750075551199,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075551200,"stop":1750075551204,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075551205,"stop":1750075551208,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075551209,"stop":1750075551212,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075551213,"stop":1750075551219,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075551220,"stop":1750075551255,"duration":35},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750075551256,"stop":1750075551337,"duration":81},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!OtherPass123)","time":{"start":1750075551338,"stop":1750075551343,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075551344,"stop":1750075551369,"duration":25},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075551370,"stop":1750075551372,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075551372,"stop":1750075551376,"duration":4},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075551372,"stop":1750075551372,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075551372,"stop":1750075551372,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"894992e7a7115936.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5c52ce3f42b81329.json b/allure-report/data/test-cases/8a3dcd384fcfe015.json similarity index 92% rename from allure-report/data/test-cases/5c52ce3f42b81329.json rename to allure-report/data/test-cases/8a3dcd384fcfe015.json index 4ddfecb..2d619a7 100644 --- a/allure-report/data/test-cases/5c52ce3f42b81329.json +++ b/allure-report/data/test-cases/8a3dcd384fcfe015.json @@ -1 +1 @@ -{"uid":"5c52ce3f42b81329","name":"Пользователь должен успешно залогиниться с валидными данными","fullName":"ui/login/login.spec.ts:7:7","historyId":"92a5ca35180a4cbe902714b987a6bf44:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750084491243,"stop":1750084492069,"duration":826},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084491243,"stop":1750084491291,"duration":48},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084491244,"stop":1750084491246,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084491244,"stop":1750084491246,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084491246,"stop":1750084491291,"duration":45},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084491246,"stop":1750084491291,"duration":45},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084491292,"stop":1750084491822,"duration":530},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084491822,"stop":1750084491872,"duration":50},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750084491872,"stop":1750084491908,"duration":36},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750084491910,"stop":1750084491951,"duration":41},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750084491952,"stop":1750084492063,"duration":111},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084492064,"stop":1750084492066,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084492066,"stop":1750084492071,"duration":5},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084492066,"stop":1750084492066,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084492066,"stop":1750084492066,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.spec.ts > Авторизация пользователя"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.spec.ts"},{"name":"subSuite","value":"Авторизация пользователя"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d7c9ba91de80e2c8","status":"passed","time":{"start":1750075548782,"stop":1750075549601,"duration":819}}],"categories":[],"tags":[]},"source":"5c52ce3f42b81329.json","parameterValues":["chromium"]} \ No newline at end of file +{"uid":"8a3dcd384fcfe015","name":"Пользователь должен успешно залогиниться с валидными данными","fullName":"ui/login/login.spec.ts:7:7","historyId":"92a5ca35180a4cbe902714b987a6bf44:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750084491243,"stop":1750084492069,"duration":826},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084491243,"stop":1750084491291,"duration":48},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084491244,"stop":1750084491246,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084491244,"stop":1750084491246,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084491246,"stop":1750084491291,"duration":45},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084491246,"stop":1750084491291,"duration":45},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084491292,"stop":1750084491822,"duration":530},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084491822,"stop":1750084491872,"duration":50},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750084491872,"stop":1750084491908,"duration":36},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750084491910,"stop":1750084491951,"duration":41},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750084491952,"stop":1750084492063,"duration":111},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084492064,"stop":1750084492066,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084492066,"stop":1750084492071,"duration":5},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084492066,"stop":1750084492066,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084492066,"stop":1750084492066,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.spec.ts > Авторизация пользователя"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.spec.ts"},{"name":"subSuite","value":"Авторизация пользователя"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"8a3dcd384fcfe015.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8ab573c35bfcbb5a.json b/allure-report/data/test-cases/8ab573c35bfcbb5a.json new file mode 100644 index 0000000..95ce2ed --- /dev/null +++ b/allure-report/data/test-cases/8ab573c35bfcbb5a.json @@ -0,0 +1 @@ +{"uid":"8ab573c35bfcbb5a","name":"Пользователь должен успешно залогиниться с валидными данными","fullName":"ui/login/login.spec.ts:7:7","historyId":"92a5ca35180a4cbe902714b987a6bf44:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750253625598,"stop":1750253627407,"duration":1809},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253625598,"stop":1750253625744,"duration":146},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253625599,"stop":1750253625602,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253625599,"stop":1750253625601,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253625602,"stop":1750253625744,"duration":142},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253625603,"stop":1750253625744,"duration":141},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750253625744,"stop":1750253626866,"duration":1122},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750253626867,"stop":1750253626914,"duration":47},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750253626915,"stop":1750253626974,"duration":59},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750253626974,"stop":1750253627109,"duration":135},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750253627110,"stop":1750253627237,"duration":127},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253627238,"stop":1750253627292,"duration":54},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253627292,"stop":1750253627410,"duration":118},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253627293,"stop":1750253627293,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253627294,"stop":1750253627294,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.spec.ts > Авторизация пользователя"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-3"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.spec.ts"},{"name":"subSuite","value":"Авторизация пользователя"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4317368ffc63a88","status":"passed","time":{"start":1750252857870,"stop":1750252859251,"duration":1381}},{"uid":"acbfe1456a4045d4","status":"passed","time":{"start":1750084508128,"stop":1750084509091,"duration":963}},{"uid":"259eeae8292f9914","status":"passed","time":{"start":1750075564763,"stop":1750075565949,"duration":1186}}],"categories":[],"tags":[]},"source":"8ab573c35bfcbb5a.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8af42ae3367ca0d6.json b/allure-report/data/test-cases/8af42ae3367ca0d6.json deleted file mode 100644 index 5cf75f4..0000000 --- a/allure-report/data/test-cases/8af42ae3367ca0d6.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"8af42ae3367ca0d6","name":"Некорректный новый пароль","fullName":"ui/recovery/recover-negative.spec.ts:34:7","historyId":"18246cf63350a71f5b46012e257bafcf:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750084501747,"stop":1750084503402,"duration":1655},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084501746,"stop":1750084501925,"duration":179},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084501747,"stop":1750084501757,"duration":10},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084501749,"stop":1750084501756,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084501757,"stop":1750084501925,"duration":168},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084501757,"stop":1750084501925,"duration":168},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750084501927,"stop":1750084502885,"duration":958},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084502886,"stop":1750084502923,"duration":37},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750084502924,"stop":1750084503005,"duration":81},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750084503007,"stop":1750084503011,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084503012,"stop":1750084503070,"duration":58},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084503070,"stop":1750084503078,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084503079,"stop":1750084503088,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084503088,"stop":1750084503111,"duration":23},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084503111,"stop":1750084503131,"duration":20},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084503132,"stop":1750084503146,"duration":14},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084503147,"stop":1750084503211,"duration":64},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(123)","time":{"start":1750084503211,"stop":1750084503307,"duration":96},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(123)","time":{"start":1750084503307,"stop":1750084503319,"duration":12},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084503319,"stop":1750084503373,"duration":54},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084503375,"stop":1750084503384,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084503384,"stop":1750084503404,"duration":20},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084503385,"stop":1750084503385,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084503385,"stop":1750084503385,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-1"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"2c0febe4d6291da9","status":"passed","time":{"start":1750075558416,"stop":1750075560205,"duration":1789}}],"categories":[],"tags":[]},"source":"8af42ae3367ca0d6.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8b6e30a20f47471a.json b/allure-report/data/test-cases/8b6e30a20f47471a.json new file mode 100644 index 0000000..6006856 --- /dev/null +++ b/allure-report/data/test-cases/8b6e30a20f47471a.json @@ -0,0 +1 @@ +{"uid":"8b6e30a20f47471a","name":"Некорректное имя и фамилия (слишком длинные)","fullName":"ui/registration/register.negative.spec.ts:16:7","historyId":"7134a02a04b606099de5c920fb62990a:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750253631208,"stop":1750253633092,"duration":1884},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253631208,"stop":1750253631357,"duration":149},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253631209,"stop":1750253631211,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253631209,"stop":1750253631210,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253631211,"stop":1750253631357,"duration":146},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253631212,"stop":1750253631357,"duration":145},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750253631359,"stop":1750253632928,"duration":1569},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(ААААААААААААААААААААААААААААААААААААААААААААААААААА)","time":{"start":1750253632929,"stop":1750253632965,"duration":36},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(БББББББББББББББББББББББББББББББББББББББББББББББББББ)","time":{"start":1750253632966,"stop":1750253632975,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750253632976,"stop":1750253633021,"duration":45},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253633022,"stop":1750253633027,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253633027,"stop":1750253633031,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253633031,"stop":1750253633094,"duration":63},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253633032,"stop":1750253633032,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253633032,"stop":1750253633032,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-2"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"21b702edbd984440","status":"passed","time":{"start":1750252861777,"stop":1750252863239,"duration":1462}}],"categories":[],"tags":[]},"source":"8b6e30a20f47471a.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9fc6cc9365f5ebab.json b/allure-report/data/test-cases/8bca28d2be9013b8.json similarity index 96% rename from allure-report/data/test-cases/9fc6cc9365f5ebab.json rename to allure-report/data/test-cases/8bca28d2be9013b8.json index e5e7ee9..68337c5 100644 --- a/allure-report/data/test-cases/9fc6cc9365f5ebab.json +++ b/allure-report/data/test-cases/8bca28d2be9013b8.json @@ -1 +1 @@ -{"uid":"9fc6cc9365f5ebab","name":"Оба поля пустые","fullName":"ui/login/login.negative.spec.ts:27:7","historyId":"58990385f74407307e4ace7ad02abf05:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750075555537,"stop":1750075556816,"duration":1279},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075555537,"stop":1750075555789,"duration":252},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075555539,"stop":1750075555560,"duration":21},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075555539,"stop":1750075555560,"duration":21},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075555560,"stop":1750075555789,"duration":229},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075555561,"stop":1750075555789,"duration":228},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075555790,"stop":1750075556662,"duration":872},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750075556663,"stop":1750075556724,"duration":61},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750075556726,"stop":1750075556738,"duration":12},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750075556739,"stop":1750075556789,"duration":50},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075556790,"stop":1750075556796,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075556796,"stop":1750075556812,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075556812,"stop":1750075556822,"duration":10},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075556814,"stop":1750075556814,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075556816,"stop":1750075556817,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-3"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"9fc6cc9365f5ebab.json","parameterValues":["firefox"]} \ No newline at end of file +{"uid":"8bca28d2be9013b8","name":"Оба поля пустые","fullName":"ui/login/login.negative.spec.ts:27:7","historyId":"58990385f74407307e4ace7ad02abf05:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750075555537,"stop":1750075556816,"duration":1279},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075555537,"stop":1750075555789,"duration":252},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075555539,"stop":1750075555560,"duration":21},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075555539,"stop":1750075555560,"duration":21},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075555560,"stop":1750075555789,"duration":229},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075555561,"stop":1750075555789,"duration":228},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075555790,"stop":1750075556662,"duration":872},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750075556663,"stop":1750075556724,"duration":61},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750075556726,"stop":1750075556738,"duration":12},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750075556739,"stop":1750075556789,"duration":50},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075556790,"stop":1750075556796,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075556796,"stop":1750075556812,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075556812,"stop":1750075556822,"duration":10},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075556814,"stop":1750075556814,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075556816,"stop":1750075556817,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-3"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"8bca28d2be9013b8.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8ce9d5af31e95591.json b/allure-report/data/test-cases/8ce9d5af31e95591.json new file mode 100644 index 0000000..7bd325f --- /dev/null +++ b/allure-report/data/test-cases/8ce9d5af31e95591.json @@ -0,0 +1 @@ +{"uid":"8ce9d5af31e95591","name":"Регистр в email (User@test.com ≠ user@test.com)","fullName":"ui/login/login.negative.spec.ts:58:7","historyId":"cc4ad4b40ef726af11b2bd4f5523dbe0:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750252857734,"stop":1750252858830,"duration":1096},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252857734,"stop":1750252857910,"duration":176},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252857739,"stop":1750252857751,"duration":12},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252857740,"stop":1750252857749,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252857751,"stop":1750252857909,"duration":158},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252857755,"stop":1750252857909,"duration":154},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750252857910,"stop":1750252858561,"duration":651},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Autotest@Example.com)","time":{"start":1750252858562,"stop":1750252858650,"duration":88},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750252858652,"stop":1750252858670,"duration":18},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750252858670,"stop":1750252858717,"duration":47},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252858717,"stop":1750252858826,"duration":109},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252858826,"stop":1750252858835,"duration":9},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252858826,"stop":1750252858826,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252858827,"stop":1750252858827,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"tag","value":"test.com"},{"name":"tag","value":"test.com)"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-0"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["test.com","test.com)"]},"source":"8ce9d5af31e95591.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8cede58e2a99a287.json b/allure-report/data/test-cases/8cede58e2a99a287.json new file mode 100644 index 0000000..78eb8ee --- /dev/null +++ b/allure-report/data/test-cases/8cede58e2a99a287.json @@ -0,0 +1 @@ +{"uid":"8cede58e2a99a287","name":"Некорректный формат email","fullName":"ui/login/login.negative.spec.ts:46:7","historyId":"e5764a911de0175f8f7118313ae14544:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750252842226,"stop":1750252843934,"duration":1708},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252842226,"stop":1750252842385,"duration":159},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252842227,"stop":1750252842242,"duration":15},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252842228,"stop":1750252842241,"duration":13},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252842242,"stop":1750252842384,"duration":142},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252842242,"stop":1750252842384,"duration":142},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750252842385,"stop":1750252843792,"duration":1407},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(invalid-email)","time":{"start":1750252843793,"stop":1750252843833,"duration":40},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(anyPassword123)","time":{"start":1750252843834,"stop":1750252843841,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750252843842,"stop":1750252843922,"duration":80},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252843923,"stop":1750252843929,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252843929,"stop":1750252843936,"duration":7},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252843929,"stop":1750252843929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252843929,"stop":1750252843929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-3"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"8cede58e2a99a287.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9ed8b38ec7c4a34b.json b/allure-report/data/test-cases/8d76c4254e12856f.json similarity index 94% rename from allure-report/data/test-cases/9ed8b38ec7c4a34b.json rename to allure-report/data/test-cases/8d76c4254e12856f.json index bd2e65c..b4062cd 100644 --- a/allure-report/data/test-cases/9ed8b38ec7c4a34b.json +++ b/allure-report/data/test-cases/8d76c4254e12856f.json @@ -1 +1 @@ -{"uid":"9ed8b38ec7c4a34b","name":"Пароли не совпадают","fullName":"ui/recovery/recover-negative.spec.ts:56:7","historyId":"a7eaebb1e41fbbf13bf61195120b3ce9:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750084509765,"stop":1750084510859,"duration":1094},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084509765,"stop":1750084509900,"duration":135},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084509766,"stop":1750084509773,"duration":7},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084509766,"stop":1750084509772,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084509773,"stop":1750084509900,"duration":127},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084509773,"stop":1750084509900,"duration":127},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750084509901,"stop":1750084510424,"duration":523},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084510427,"stop":1750084510494,"duration":67},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750084510495,"stop":1750084510561,"duration":66},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750084510562,"stop":1750084510567,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084510567,"stop":1750084510660,"duration":93},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084510660,"stop":1750084510666,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084510667,"stop":1750084510672,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084510673,"stop":1750084510677,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084510677,"stop":1750084510682,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084510682,"stop":1750084510686,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084510687,"stop":1750084510723,"duration":36},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750084510724,"stop":1750084510807,"duration":83},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!OtherPass123)","time":{"start":1750084510809,"stop":1750084510814,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084510814,"stop":1750084510854,"duration":40},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084510855,"stop":1750084510858,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084510858,"stop":1750084510860,"duration":2},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084510858,"stop":1750084510858,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084510858,"stop":1750084510858,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-3"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c08d4874195c65a9","status":"passed","time":{"start":1750075567274,"stop":1750075568310,"duration":1036}}],"categories":[],"tags":[]},"source":"9ed8b38ec7c4a34b.json","parameterValues":["webkit"]} \ No newline at end of file +{"uid":"8d76c4254e12856f","name":"Пароли не совпадают","fullName":"ui/recovery/recover-negative.spec.ts:56:7","historyId":"a7eaebb1e41fbbf13bf61195120b3ce9:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750084509765,"stop":1750084510859,"duration":1094},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084509765,"stop":1750084509900,"duration":135},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084509766,"stop":1750084509773,"duration":7},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084509766,"stop":1750084509772,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084509773,"stop":1750084509900,"duration":127},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084509773,"stop":1750084509900,"duration":127},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750084509901,"stop":1750084510424,"duration":523},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084510427,"stop":1750084510494,"duration":67},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750084510495,"stop":1750084510561,"duration":66},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750084510562,"stop":1750084510567,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084510567,"stop":1750084510660,"duration":93},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084510660,"stop":1750084510666,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084510667,"stop":1750084510672,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084510673,"stop":1750084510677,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084510677,"stop":1750084510682,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084510682,"stop":1750084510686,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084510687,"stop":1750084510723,"duration":36},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750084510724,"stop":1750084510807,"duration":83},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!OtherPass123)","time":{"start":1750084510809,"stop":1750084510814,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084510814,"stop":1750084510854,"duration":40},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084510855,"stop":1750084510858,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084510858,"stop":1750084510860,"duration":2},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084510858,"stop":1750084510858,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084510858,"stop":1750084510858,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-3"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"8d76c4254e12856f.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/226f68ac082fe856.json b/allure-report/data/test-cases/8e52e5503dbf32b3.json similarity index 97% rename from allure-report/data/test-cases/226f68ac082fe856.json rename to allure-report/data/test-cases/8e52e5503dbf32b3.json index 3e9874d..c21dc8e 100644 --- a/allure-report/data/test-cases/226f68ac082fe856.json +++ b/allure-report/data/test-cases/8e52e5503dbf32b3.json @@ -1 +1 @@ -{"uid":"226f68ac082fe856","name":"Несуществующий email","fullName":"ui/recovery/recover-negative.spec.ts:15:7","historyId":"c118be77fa2af6f0e0052ec7489ba66c:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750075565958,"stop":1750075567080,"duration":1122},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075565958,"stop":1750075566081,"duration":123},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075565959,"stop":1750075565970,"duration":11},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075565960,"stop":1750075565969,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075565970,"stop":1750075566081,"duration":111},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075565970,"stop":1750075566081,"duration":111},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750075566083,"stop":1750075566820,"duration":737},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(nobody@example.com)","time":{"start":1750075566821,"stop":1750075566888,"duration":67},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750075566890,"stop":1750075566949,"duration":59},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075566950,"stop":1750075567070,"duration":120},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075567071,"stop":1750075567083,"duration":12},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075567071,"stop":1750075567071,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075567071,"stop":1750075567071,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-3"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"226f68ac082fe856.json","parameterValues":["webkit"]} \ No newline at end of file +{"uid":"8e52e5503dbf32b3","name":"Несуществующий email","fullName":"ui/recovery/recover-negative.spec.ts:15:7","historyId":"c118be77fa2af6f0e0052ec7489ba66c:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750075565958,"stop":1750075567080,"duration":1122},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075565958,"stop":1750075566081,"duration":123},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075565959,"stop":1750075565970,"duration":11},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075565960,"stop":1750075565969,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075565970,"stop":1750075566081,"duration":111},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075565970,"stop":1750075566081,"duration":111},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750075566083,"stop":1750075566820,"duration":737},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(nobody@example.com)","time":{"start":1750075566821,"stop":1750075566888,"duration":67},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750075566890,"stop":1750075566949,"duration":59},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075566950,"stop":1750075567070,"duration":120},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075567071,"stop":1750075567083,"duration":12},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075567071,"stop":1750075567071,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075567071,"stop":1750075567071,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-3"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"8e52e5503dbf32b3.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8ff2d3069826e842.json b/allure-report/data/test-cases/8ff2d3069826e842.json new file mode 100644 index 0000000..3aef6a6 --- /dev/null +++ b/allure-report/data/test-cases/8ff2d3069826e842.json @@ -0,0 +1 @@ +{"uid":"8ff2d3069826e842","name":"Некорректный новый пароль","fullName":"ui/recovery/recover-negative.spec.ts:34:7","historyId":"18246cf63350a71f5b46012e257bafcf:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750253627424,"stop":1750253629445,"duration":2021},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253627424,"stop":1750253627549,"duration":125},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253627425,"stop":1750253627437,"duration":12},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253627425,"stop":1750253627436,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253627438,"stop":1750253627549,"duration":111},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253627438,"stop":1750253627549,"duration":111},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750253627551,"stop":1750253628594,"duration":1043},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750253628595,"stop":1750253628633,"duration":38},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750253628634,"stop":1750253628969,"duration":335},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750253628971,"stop":1750253628976,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253628977,"stop":1750253629083,"duration":106},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253629083,"stop":1750253629092,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253629092,"stop":1750253629100,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253629101,"stop":1750253629119,"duration":18},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253629120,"stop":1750253629146,"duration":26},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253629147,"stop":1750253629154,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750253629155,"stop":1750253629199,"duration":44},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(123)","time":{"start":1750253629200,"stop":1750253629298,"duration":98},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(123)","time":{"start":1750253629299,"stop":1750253629307,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750253629308,"stop":1750253629346,"duration":38},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253629347,"stop":1750253629377,"duration":30},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253629378,"stop":1750253629447,"duration":69},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253629378,"stop":1750253629378,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253629378,"stop":1750253629378,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-2"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e9489fb366a07bd5","status":"passed","time":{"start":1750252859376,"stop":1750252861187,"duration":1811}},{"uid":"6f161e97a71ff2d8","status":"passed","time":{"start":1750084509235,"stop":1750084510626,"duration":1391}},{"uid":"e5906d6180b5659f","status":"passed","time":{"start":1750075566120,"stop":1750075567344,"duration":1224}}],"categories":[],"tags":[]},"source":"8ff2d3069826e842.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c08d4874195c65a9.json b/allure-report/data/test-cases/9029b999218b9178.json similarity index 97% rename from allure-report/data/test-cases/c08d4874195c65a9.json rename to allure-report/data/test-cases/9029b999218b9178.json index 8dacec9..a5b0faf 100644 --- a/allure-report/data/test-cases/c08d4874195c65a9.json +++ b/allure-report/data/test-cases/9029b999218b9178.json @@ -1 +1 @@ -{"uid":"c08d4874195c65a9","name":"Пароли не совпадают","fullName":"ui/recovery/recover-negative.spec.ts:56:7","historyId":"a7eaebb1e41fbbf13bf61195120b3ce9:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750075567274,"stop":1750075568310,"duration":1036},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075567273,"stop":1750075567408,"duration":135},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075567274,"stop":1750075567277,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075567275,"stop":1750075567277,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075567277,"stop":1750075567408,"duration":131},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075567278,"stop":1750075567408,"duration":130},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750075567409,"stop":1750075567947,"duration":538},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075567948,"stop":1750075568000,"duration":52},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750075568002,"stop":1750075568038,"duration":36},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750075568038,"stop":1750075568039,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075568039,"stop":1750075568130,"duration":91},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075568131,"stop":1750075568136,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075568137,"stop":1750075568141,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075568141,"stop":1750075568151,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075568152,"stop":1750075568155,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075568156,"stop":1750075568159,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075568160,"stop":1750075568189,"duration":29},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750075568190,"stop":1750075568267,"duration":77},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!OtherPass123)","time":{"start":1750075568268,"stop":1750075568273,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075568274,"stop":1750075568303,"duration":29},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075568303,"stop":1750075568307,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075568308,"stop":1750075568310,"duration":2},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075568308,"stop":1750075568308,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075568308,"stop":1750075568308,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-1"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"c08d4874195c65a9.json","parameterValues":["webkit"]} \ No newline at end of file +{"uid":"9029b999218b9178","name":"Пароли не совпадают","fullName":"ui/recovery/recover-negative.spec.ts:56:7","historyId":"a7eaebb1e41fbbf13bf61195120b3ce9:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750075567274,"stop":1750075568310,"duration":1036},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075567273,"stop":1750075567408,"duration":135},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075567274,"stop":1750075567277,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075567275,"stop":1750075567277,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075567277,"stop":1750075567408,"duration":131},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075567278,"stop":1750075567408,"duration":130},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750075567409,"stop":1750075567947,"duration":538},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075567948,"stop":1750075568000,"duration":52},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750075568002,"stop":1750075568038,"duration":36},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750075568038,"stop":1750075568039,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075568039,"stop":1750075568130,"duration":91},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075568131,"stop":1750075568136,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075568137,"stop":1750075568141,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075568141,"stop":1750075568151,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075568152,"stop":1750075568155,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075568156,"stop":1750075568159,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075568160,"stop":1750075568189,"duration":29},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750075568190,"stop":1750075568267,"duration":77},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!OtherPass123)","time":{"start":1750075568268,"stop":1750075568273,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075568274,"stop":1750075568303,"duration":29},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075568303,"stop":1750075568307,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075568308,"stop":1750075568310,"duration":2},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075568308,"stop":1750075568308,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075568308,"stop":1750075568308,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-1"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"9029b999218b9178.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/913af2739bd12ded.json b/allure-report/data/test-cases/913af2739bd12ded.json new file mode 100644 index 0000000..952a1d9 --- /dev/null +++ b/allure-report/data/test-cases/913af2739bd12ded.json @@ -0,0 +1 @@ +{"uid":"913af2739bd12ded","name":"Успешная регистрация нового пользователя","fullName":"ui/registration/register.spec.ts:6:7","historyId":"3562648cd3231e14b42a7151c17c62aa:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750176464557,"stop":1750176538333,"duration":73776},"status":"failed","statusMessage":"Error: locator.isVisible: Target page, context or browser has been closed\nCall log:\n - checking visibility of locator('p.ErrorModal_title__heTm5')\n","statusTrace":"Error: locator.isVisible: Target page, context or browser has been closed\nCall log:\n - checking visibility of locator('p.ErrorModal_title__heTm5')\n\n at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.spec.ts:32:26","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"failed","statusMessage":"Error: locator.isVisible: Target page, context or browser has been closed\nCall log:\n - checking visibility of locator('p.ErrorModal_title__heTm5')\n","statusTrace":"Error: locator.isVisible: Target page, context or browser has been closed\nCall log:\n - checking visibility of locator('p.ErrorModal_title__heTm5')\n\n at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.spec.ts:32:26","steps":[{"name":"Before Hooks","time":{"start":1750176464554,"stop":1750176466678,"duration":2124},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750176464558,"stop":1750176465363,"duration":805},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750176464558,"stop":1750176465363,"duration":805},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750176465364,"stop":1750176466175,"duration":811},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750176465365,"stop":1750176466174,"duration":809},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750176466175,"stop":1750176466678,"duration":503},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750176466176,"stop":1750176466678,"duration":502},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750176466682,"stop":1750176470182,"duration":3500},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Иван)","time":{"start":1750176470184,"stop":1750176476589,"duration":6405},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Тестов)","time":{"start":1750176476591,"stop":1750176477547,"duration":956},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Александрович)","time":{"start":1750176477549,"stop":1750176478695,"duration":1146},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёное звание*').click","time":{"start":1750176478696,"stop":1750176479978,"duration":1282},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Доцент\"i)","time":{"start":1750176479979,"stop":1750176482740,"duration":2761},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёная степень*').click","time":{"start":1750176482741,"stop":1750176484219,"duration":1478},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Кандидат наук\"i)","time":{"start":1750176484220,"stop":1750176487603,"duration":3383},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Преподаватель)","time":{"start":1750176487606,"stop":1750176489001,"duration":1395},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(ЮФУ)","time":{"start":1750176489002,"stop":1750176490112,"duration":1110},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest20087@example.com)","time":{"start":1750176490113,"stop":1750176491012,"duration":899},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(+7987020087)","time":{"start":1750176491013,"stop":1750176491962,"duration":949},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750176491963,"stop":1750176495980,"duration":4017},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750176495981,"stop":1750176497080,"duration":1099},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750176497081,"stop":1750176501587,"duration":4506},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.isVisible(p.ErrorModal_title__heTm5)","time":{"start":1750176501590,"stop":1750176539140,"duration":37550},"status":"failed","statusMessage":"Error: locator.isVisible: Target page, context or browser has been closed\nCall log:\n - checking visibility of locator('p.ErrorModal_title__heTm5')\n","statusTrace":"Error: locator.isVisible: Target page, context or browser has been closed\nCall log:\n - checking visibility of locator('p.ErrorModal_title__heTm5')\n\n at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.spec.ts:32:26","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":true,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"_error-context-0","time":{"start":1750176539176,"stop":1750176539176,"duration":0},"status":"unknown","steps":[],"attachments":[{"uid":"af2e9b7d53e4244c","name":"_error-context-0","source":"af2e9b7d53e4244c.md","type":"text/markdown","size":2705}],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":1,"hasContent":true,"attachmentStep":true},{"name":"_error-context-1","time":{"start":1750176539179,"stop":1750176539179,"duration":0},"status":"unknown","steps":[],"attachments":[{"uid":"a5e2e64380ba3e9a","name":"_error-context-1","source":"a5e2e64380ba3e9a.md","type":"text/markdown","size":4292}],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":1,"hasContent":true,"attachmentStep":true},{"name":"After Hooks","time":{"start":1750176539109,"stop":1750176539163,"duration":54},"status":"failed","statusMessage":"Error: browserContext._wrapApiCall: Test ended.\nBrowser logs:\n\n /Users/vladsmykov/Library/Caches/ms-playwright/chromium-1169/chrome-mac/Chromium.app/Contents/MacOS/Chromium --disable-field-trial-config --disable-background-networking --disable-background-timer-throttling --disable-backgrounding-occluded-windows --disable-back-forward-cache --disable-breakpad --disable-client-side-phishing-detection --disable-component-extensions-with-background-pages --disable-component-update --no-default-browser-check --disable-default-apps --disable-dev-shm-usage --disable-extensions --disable-features=AcceptCHFrame,AutoExpandDetailsElement,AvoidUnnecessaryBeforeUnloadCheckSync,CertificateTransparencyComponentUpdater,DeferRendererTasksAfterInput,DestroyProfileOnBrowserClose,DialMediaRouteProvider,ExtensionManifestV2Disabled,GlobalMediaControls,HttpsUpgrades,ImprovedCookieControls,LazyFrameLoading,LensOverlay,MediaRouter,PaintHolding,ThirdPartyStoragePartitioning,Translate --allow-pre-commit-input --disable-hang-monitor --disable-ipc-flooding-protection --disable-popup-blocking --disable-prompt-on-repost --disable-renderer-backgrounding --force-color-profile=srgb --metrics-recording-only --no-first-run --enable-automation --password-store=basic --use-mock-keychain --no-service-autorun --export-tagged-pdf --disable-search-engine-choice-screen --unsafely-disable-devtools-self-xss-warnings --enable-use-zoom-for-dsf=false --no-sandbox --user-data-dir=/var/folders/lg/h2gsyjw52lg9sl4rjvlxq91w0000gn/T/playwright_chromiumdev_profile-TxrrIk --remote-debugging-pipe --no-startup-window\n pid=53322\n[pid=53322][err] 2025-06-17 19:07:46.501 Chromium[53322:11903656] +[IMKClient subclass]: chose IMKClient_Modern\n[pid=53322][err] 2025-06-17 19:08:28.659 Chromium[53322:11903656] +[IMKInputSession subclass]: chose IMKInputSession_Modern\n[pid=53322] ","statusTrace":"Error: browserContext._wrapApiCall: Test ended.\nBrowser logs:\n\n /Users/vladsmykov/Library/Caches/ms-playwright/chromium-1169/chrome-mac/Chromium.app/Contents/MacOS/Chromium --disable-field-trial-config --disable-background-networking --disable-background-timer-throttling --disable-backgrounding-occluded-windows --disable-back-forward-cache --disable-breakpad --disable-client-side-phishing-detection --disable-component-extensions-with-background-pages --disable-component-update --no-default-browser-check --disable-default-apps --disable-dev-shm-usage --disable-extensions --disable-features=AcceptCHFrame,AutoExpandDetailsElement,AvoidUnnecessaryBeforeUnloadCheckSync,CertificateTransparencyComponentUpdater,DeferRendererTasksAfterInput,DestroyProfileOnBrowserClose,DialMediaRouteProvider,ExtensionManifestV2Disabled,GlobalMediaControls,HttpsUpgrades,ImprovedCookieControls,LazyFrameLoading,LensOverlay,MediaRouter,PaintHolding,ThirdPartyStoragePartitioning,Translate --allow-pre-commit-input --disable-hang-monitor --disable-ipc-flooding-protection --disable-popup-blocking --disable-prompt-on-repost --disable-renderer-backgrounding --force-color-profile=srgb --metrics-recording-only --no-first-run --enable-automation --password-store=basic --use-mock-keychain --no-service-autorun --export-tagged-pdf --disable-search-engine-choice-screen --unsafely-disable-devtools-self-xss-warnings --enable-use-zoom-for-dsf=false --no-sandbox --user-data-dir=/var/folders/lg/h2gsyjw52lg9sl4rjvlxq91w0000gn/T/playwright_chromiumdev_profile-TxrrIk --remote-debugging-pipe --no-startup-window\n pid=53322\n[pid=53322][err] 2025-06-17 19:07:46.501 Chromium[53322:11903656] +[IMKClient subclass]: chose IMKClient_Modern\n[pid=53322][err] 2025-06-17 19:08:28.659 Chromium[53322:11903656] +[IMKInputSession subclass]: chose IMKInputSession_Modern\n[pid=53322] ","steps":[{"name":"fixture: page","time":{"start":1750176539113,"stop":1750176539113,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750176539115,"stop":1750176539115,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":true,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":28,"shouldDisplayMessage":false,"attachmentsCount":2,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.spec.ts > Позитивные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-53318-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.spec.ts"},{"name":"subSuite","value":"Позитивные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"913af2739bd12ded.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/94ebae2625e07d27.json b/allure-report/data/test-cases/94ebae2625e07d27.json new file mode 100644 index 0000000..6bdc89b --- /dev/null +++ b/allure-report/data/test-cases/94ebae2625e07d27.json @@ -0,0 +1 @@ +{"uid":"94ebae2625e07d27","name":"Некорректный email формат","fullName":"ui/registration/register.negative.spec.ts:28:7","historyId":"de8c598c53adc6e2133478f1b9141597:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750252791920,"stop":1750252795300,"duration":3380},"status":"failed","statusMessage":"Error: page.goto: Target page, context or browser has been closed\nCall log:\n - navigating to \"https://ssas.dev.rdcenter.ru/login/registration\", waiting until \"load\"\n","statusTrace":"Error: page.goto: Target page, context or browser has been closed\nCall log:\n - navigating to \"https://ssas.dev.rdcenter.ru/login/registration\", waiting until \"load\"\n\n at RegisterPage.goto (/Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/page-objects/RegisterPage.ts:81:21)\n at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.negative.spec.ts:30:24","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"failed","statusMessage":"Error: page.goto: Target page, context or browser has been closed\nCall log:\n - navigating to \"https://ssas.dev.rdcenter.ru/login/registration\", waiting until \"load\"\n","statusTrace":"Error: page.goto: Target page, context or browser has been closed\nCall log:\n - navigating to \"https://ssas.dev.rdcenter.ru/login/registration\", waiting until \"load\"\n\n at RegisterPage.goto (/Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/page-objects/RegisterPage.ts:81:21)\n at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.negative.spec.ts:30:24","steps":[{"name":"Before Hooks","time":{"start":1750252791920,"stop":1750252792767,"duration":847},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252791922,"stop":1750252792594,"duration":672},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252791923,"stop":1750252792594,"duration":671},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252792594,"stop":1750252792767,"duration":173},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252792595,"stop":1750252792766,"duration":171},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750252792768,"stop":1750252795301,"duration":2533},"status":"failed","statusMessage":"Error: page.goto: Target page, context or browser has been closed\nCall log:\n - navigating to \"https://ssas.dev.rdcenter.ru/login/registration\", waiting until \"load\"\n","statusTrace":"Error: page.goto: Target page, context or browser has been closed\nCall log:\n - navigating to \"https://ssas.dev.rdcenter.ru/login/registration\", waiting until \"load\"\n\n at RegisterPage.goto (/Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/page-objects/RegisterPage.ts:81:21)\n at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.negative.spec.ts:30:24","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":true,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"_error-context-0","time":{"start":1750252795326,"stop":1750252795326,"duration":0},"status":"unknown","steps":[],"attachments":[{"uid":"aa974eccc88088cd","name":"_error-context-0","source":"aa974eccc88088cd.md","type":"text/markdown","size":6805}],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":1,"hasContent":true,"attachmentStep":true},{"name":"After Hooks","time":{"start":1750252795291,"stop":1750252795308,"duration":17},"status":"failed","statusMessage":"Error: browserContext._wrapApiCall: Target page, context or browser has been closed","statusTrace":"Error: browserContext._wrapApiCall: Target page, context or browser has been closed","steps":[{"name":"fixture: page","time":{"start":1750252795292,"stop":1750252795292,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252795292,"stop":1750252795292,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":true,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":10,"shouldDisplayMessage":false,"attachmentsCount":1,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-57952-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"94ebae2625e07d27.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/94f1b1ff67f3d4b2.json b/allure-report/data/test-cases/94f1b1ff67f3d4b2.json new file mode 100644 index 0000000..43b5de3 --- /dev/null +++ b/allure-report/data/test-cases/94f1b1ff67f3d4b2.json @@ -0,0 +1 @@ +{"uid":"94f1b1ff67f3d4b2","name":"Пароли не совпадают","fullName":"ui/recovery/recover-negative.spec.ts:56:7","historyId":"a7eaebb1e41fbbf13bf61195120b3ce9:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750253601557,"stop":1750253604956,"duration":3399},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253601556,"stop":1750253601719,"duration":163},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253601557,"stop":1750253601562,"duration":5},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253601558,"stop":1750253601560,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253601563,"stop":1750253601719,"duration":156},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253601563,"stop":1750253601719,"duration":156},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750253601720,"stop":1750253604422,"duration":2702},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750253604424,"stop":1750253604473,"duration":49},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750253604474,"stop":1750253604578,"duration":104},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750253604579,"stop":1750253604587,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253604587,"stop":1750253604640,"duration":53},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253604640,"stop":1750253604662,"duration":22},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253604662,"stop":1750253604675,"duration":13},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253604676,"stop":1750253604690,"duration":14},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253604691,"stop":1750253604699,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253604699,"stop":1750253604709,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750253604709,"stop":1750253604759,"duration":50},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750253604759,"stop":1750253604849,"duration":90},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!OtherPass123)","time":{"start":1750253604849,"stop":1750253604857,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750253604858,"stop":1750253604906,"duration":48},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253604907,"stop":1750253604914,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253604914,"stop":1750253604957,"duration":43},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253604914,"stop":1750253604914,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253604914,"stop":1750253604914,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"97e7b68861a483dd","status":"passed","time":{"start":1750252847300,"stop":1750252849862,"duration":2562}},{"uid":"a4548e1be474a069","status":"passed","time":{"start":1750084502694,"stop":1750084504377,"duration":1683}},{"uid":"667929cd692b66c8","status":"passed","time":{"start":1750075559492,"stop":1750075561099,"duration":1607}}],"categories":[],"tags":[]},"source":"94f1b1ff67f3d4b2.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b714c3ef6b1955c5.json b/allure-report/data/test-cases/95928bbad84a71aa.json similarity index 91% rename from allure-report/data/test-cases/b714c3ef6b1955c5.json rename to allure-report/data/test-cases/95928bbad84a71aa.json index d66079d..6211e8b 100644 --- a/allure-report/data/test-cases/b714c3ef6b1955c5.json +++ b/allure-report/data/test-cases/95928bbad84a71aa.json @@ -1 +1 @@ -{"uid":"b714c3ef6b1955c5","name":"get started link","fullName":"example.spec.ts:10:5","historyId":"37e4aa066a5f6eac2e4d3b98a2ed98a7:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750084487579,"stop":1750084488883,"duration":1304},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084487574,"stop":1750084488228,"duration":654},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750084487581,"stop":1750084488054,"duration":473},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750084487583,"stop":1750084488054,"duration":471},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084488056,"stop":1750084488068,"duration":12},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084488057,"stop":1750084488066,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084488069,"stop":1750084488228,"duration":159},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084488072,"stop":1750084488227,"duration":155},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(https://playwright.dev/)","time":{"start":1750084488230,"stop":1750084489081,"duration":851},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('link', { name: 'Get started' }).click","time":{"start":1750084489087,"stop":1750084489200,"duration":113},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084489202,"stop":1750084489332,"duration":130},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084489333,"stop":1750084489359,"duration":26},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084489334,"stop":1750084489334,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084489334,"stop":1750084489334,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > chromium > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-1"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"example.spec.ts"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4fd497839b2e468f","status":"passed","time":{"start":1750075545978,"stop":1750075547391,"duration":1413}}],"categories":[],"tags":[]},"source":"b714c3ef6b1955c5.json","parameterValues":["chromium"]} \ No newline at end of file +{"uid":"95928bbad84a71aa","name":"get started link","fullName":"example.spec.ts:10:5","historyId":"37e4aa066a5f6eac2e4d3b98a2ed98a7:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750084487579,"stop":1750084488883,"duration":1304},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084487574,"stop":1750084488228,"duration":654},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750084487581,"stop":1750084488054,"duration":473},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750084487583,"stop":1750084488054,"duration":471},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084488056,"stop":1750084488068,"duration":12},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084488057,"stop":1750084488066,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084488069,"stop":1750084488228,"duration":159},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084488072,"stop":1750084488227,"duration":155},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(https://playwright.dev/)","time":{"start":1750084488230,"stop":1750084489081,"duration":851},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('link', { name: 'Get started' }).click","time":{"start":1750084489087,"stop":1750084489200,"duration":113},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084489202,"stop":1750084489332,"duration":130},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084489333,"stop":1750084489359,"duration":26},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084489334,"stop":1750084489334,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084489334,"stop":1750084489334,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > chromium > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-1"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"example.spec.ts"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"95928bbad84a71aa.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/88a8af1bf7652c0e.json b/allure-report/data/test-cases/95c73e558adaf781.json similarity index 92% rename from allure-report/data/test-cases/88a8af1bf7652c0e.json rename to allure-report/data/test-cases/95c73e558adaf781.json index 20a38dd..9e77705 100644 --- a/allure-report/data/test-cases/88a8af1bf7652c0e.json +++ b/allure-report/data/test-cases/95c73e558adaf781.json @@ -1 +1 @@ -{"uid":"88a8af1bf7652c0e","name":"Неверный пароль","fullName":"ui/login/login.negative.spec.ts:7:7","historyId":"500ad758ee2db2bb60aa832fb0abbb94:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750084497996,"stop":1750084499294,"duration":1298},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084497994,"stop":1750084498225,"duration":231},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084497996,"stop":1750084498043,"duration":47},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084497997,"stop":1750084498042,"duration":45},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084498044,"stop":1750084498225,"duration":181},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084498045,"stop":1750084498225,"duration":180},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084498227,"stop":1750084499000,"duration":773},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084499003,"stop":1750084499077,"duration":74},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(wrongpass)","time":{"start":1750084499078,"stop":1750084499099,"duration":21},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750084499101,"stop":1750084499167,"duration":66},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084499168,"stop":1750084499282,"duration":114},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084499282,"stop":1750084499296,"duration":14},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084499282,"stop":1750084499283,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084499283,"stop":1750084499283,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d9f77a3678ef9c68","status":"passed","time":{"start":1750075554154,"stop":1750075555529,"duration":1375}}],"categories":[],"tags":[]},"source":"88a8af1bf7652c0e.json","parameterValues":["firefox"]} \ No newline at end of file +{"uid":"95c73e558adaf781","name":"Неверный пароль","fullName":"ui/login/login.negative.spec.ts:7:7","historyId":"500ad758ee2db2bb60aa832fb0abbb94:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750084497996,"stop":1750084499294,"duration":1298},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084497994,"stop":1750084498225,"duration":231},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084497996,"stop":1750084498043,"duration":47},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084497997,"stop":1750084498042,"duration":45},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084498044,"stop":1750084498225,"duration":181},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084498045,"stop":1750084498225,"duration":180},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084498227,"stop":1750084499000,"duration":773},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084499003,"stop":1750084499077,"duration":74},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(wrongpass)","time":{"start":1750084499078,"stop":1750084499099,"duration":21},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750084499101,"stop":1750084499167,"duration":66},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084499168,"stop":1750084499282,"duration":114},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084499282,"stop":1750084499296,"duration":14},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084499282,"stop":1750084499283,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084499283,"stop":1750084499283,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"95c73e558adaf781.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9646ec918f04fcf4.json b/allure-report/data/test-cases/9646ec918f04fcf4.json new file mode 100644 index 0000000..2fd7e9b --- /dev/null +++ b/allure-report/data/test-cases/9646ec918f04fcf4.json @@ -0,0 +1 @@ +{"uid":"9646ec918f04fcf4","name":"Неверный пароль","fullName":"ui/login/login.negative.spec.ts:7:7","historyId":"500ad758ee2db2bb60aa832fb0abbb94:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253474171,"stop":1750253478765,"duration":4594},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253474170,"stop":1750253474209,"duration":39},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253474171,"stop":1750253474174,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253474171,"stop":1750253474172,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253474174,"stop":1750253474209,"duration":35},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253474174,"stop":1750253474209,"duration":35},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750253474211,"stop":1750253478077,"duration":3866},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750253478078,"stop":1750253478105,"duration":27},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(wrongpass)","time":{"start":1750253478106,"stop":1750253478162,"duration":56},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750253478163,"stop":1750253478239,"duration":76},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253478240,"stop":1750253478351,"duration":111},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253478351,"stop":1750253478766,"duration":415},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253478352,"stop":1750253478352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253478352,"stop":1750253478352,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-1"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"9646ec918f04fcf4.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/96736297720c2c0d.json b/allure-report/data/test-cases/96736297720c2c0d.json deleted file mode 100644 index 86b9d9a..0000000 --- a/allure-report/data/test-cases/96736297720c2c0d.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"96736297720c2c0d","name":"Пустое поле \"Повторите пароль\"","fullName":"ui/recovery/recover-negative.spec.ts:45:7","historyId":"e6d2fb91f0b85b95c3962ffc860dddd7:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750084492375,"stop":1750084493870,"duration":1495},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084492375,"stop":1750084492409,"duration":34},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084492376,"stop":1750084492377,"duration":1},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084492376,"stop":1750084492377,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084492377,"stop":1750084492409,"duration":32},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084492377,"stop":1750084492409,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750084492410,"stop":1750084493473,"duration":1063},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084493477,"stop":1750084493535,"duration":58},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750084493539,"stop":1750084493589,"duration":50},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750084493590,"stop":1750084493592,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084493592,"stop":1750084493678,"duration":86},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084493679,"stop":1750084493685,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084493685,"stop":1750084493689,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084493689,"stop":1750084493694,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084493695,"stop":1750084493700,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084493701,"stop":1750084493714,"duration":13},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084493715,"stop":1750084493754,"duration":39},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750084493755,"stop":1750084493832,"duration":77},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750084493833,"stop":1750084493836,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084493837,"stop":1750084493865,"duration":28},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084493865,"stop":1750084493868,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084493868,"stop":1750084493872,"duration":4},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084493868,"stop":1750084493868,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084493869,"stop":1750084493869,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d4f48ebfb1d34a45","status":"passed","time":{"start":1750075550062,"stop":1750075551012,"duration":950}}],"categories":[],"tags":[]},"source":"96736297720c2c0d.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/922c07477f21c047.json b/allure-report/data/test-cases/969ca192d0de91e9.json similarity index 95% rename from allure-report/data/test-cases/922c07477f21c047.json rename to allure-report/data/test-cases/969ca192d0de91e9.json index 172cfee..69e34b6 100644 --- a/allure-report/data/test-cases/922c07477f21c047.json +++ b/allure-report/data/test-cases/969ca192d0de91e9.json @@ -1 +1 @@ -{"uid":"922c07477f21c047","name":"Пользователь успешно восстанавливает пароль","fullName":"ui/recovery/recover-password.spec.ts:7:7","historyId":"1779c735aef9d62c071557455e74e57f:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750084503378,"stop":1750084505830,"duration":2452},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084503378,"stop":1750084503603,"duration":225},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084503379,"stop":1750084503393,"duration":14},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084503379,"stop":1750084503393,"duration":14},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084503393,"stop":1750084503603,"duration":210},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084503394,"stop":1750084503603,"duration":209},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750084503604,"stop":1750084504664,"duration":1060},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084504665,"stop":1750084504837,"duration":172},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750084504838,"stop":1750084504997,"duration":159},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750084504998,"stop":1750084505158,"duration":160},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750084505160,"stop":1750084505201,"duration":41},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084505202,"stop":1750084505272,"duration":70},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084505273,"stop":1750084505317,"duration":44},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084505318,"stop":1750084505401,"duration":83},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084505401,"stop":1750084505433,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084505433,"stop":1750084505439,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084505440,"stop":1750084505451,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084505451,"stop":1750084505508,"duration":57},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084505508,"stop":1750084505620,"duration":112},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750084505620,"stop":1750084505625,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750084505625,"stop":1750084505630,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084505631,"stop":1750084505689,"duration":58},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750084505689,"stop":1750084505820,"duration":131},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084505821,"stop":1750084505827,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084505827,"stop":1750084505832,"duration":5},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084505828,"stop":1750084505828,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084505828,"stop":1750084505828,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":26,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-password.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-password.spec.ts > Восстановление пароля — позитивные сценарии"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-password.spec.ts"},{"name":"subSuite","value":"Восстановление пароля — позитивные сценарии"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8590834e6f81fb1e","status":"passed","time":{"start":1750075560041,"stop":1750075561748,"duration":1707}}],"categories":[],"tags":[]},"source":"922c07477f21c047.json","parameterValues":["firefox"]} \ No newline at end of file +{"uid":"969ca192d0de91e9","name":"Пользователь успешно восстанавливает пароль","fullName":"ui/recovery/recover-password.spec.ts:7:7","historyId":"1779c735aef9d62c071557455e74e57f:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750084503378,"stop":1750084505830,"duration":2452},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084503378,"stop":1750084503603,"duration":225},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084503379,"stop":1750084503393,"duration":14},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084503379,"stop":1750084503393,"duration":14},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084503393,"stop":1750084503603,"duration":210},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084503394,"stop":1750084503603,"duration":209},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750084503604,"stop":1750084504664,"duration":1060},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084504665,"stop":1750084504837,"duration":172},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750084504838,"stop":1750084504997,"duration":159},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750084504998,"stop":1750084505158,"duration":160},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750084505160,"stop":1750084505201,"duration":41},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084505202,"stop":1750084505272,"duration":70},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084505273,"stop":1750084505317,"duration":44},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084505318,"stop":1750084505401,"duration":83},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084505401,"stop":1750084505433,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084505433,"stop":1750084505439,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084505440,"stop":1750084505451,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084505451,"stop":1750084505508,"duration":57},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084505508,"stop":1750084505620,"duration":112},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750084505620,"stop":1750084505625,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750084505625,"stop":1750084505630,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084505631,"stop":1750084505689,"duration":58},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750084505689,"stop":1750084505820,"duration":131},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084505821,"stop":1750084505827,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084505827,"stop":1750084505832,"duration":5},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084505828,"stop":1750084505828,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084505828,"stop":1750084505828,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":26,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-password.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-password.spec.ts > Восстановление пароля — позитивные сценарии"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-password.spec.ts"},{"name":"subSuite","value":"Восстановление пароля — позитивные сценарии"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"969ca192d0de91e9.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/969ce7fb67ee94cb.json b/allure-report/data/test-cases/969ce7fb67ee94cb.json new file mode 100644 index 0000000..808827e --- /dev/null +++ b/allure-report/data/test-cases/969ce7fb67ee94cb.json @@ -0,0 +1 @@ +{"uid":"969ce7fb67ee94cb","name":"Переход по ссылке \"Забыли пароль?\"","fullName":"ui/login/login.link.spec.ts:6:5","historyId":"91fcabcb669557e4ddb559c077420e45:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750253615927,"stop":1750253618481,"duration":2554},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253615927,"stop":1750253616055,"duration":128},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253615927,"stop":1750253615931,"duration":4},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253615928,"stop":1750253615930,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253615931,"stop":1750253616055,"duration":124},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253615932,"stop":1750253616055,"duration":123},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750253616057,"stop":1750253617322,"duration":1265},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByText('Забыли пароль?').click","time":{"start":1750253617323,"stop":1750253617436,"duration":113},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750253617437,"stop":1750253617444,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253617444,"stop":1750253617450,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253617450,"stop":1750253618483,"duration":1033},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253617451,"stop":1750253617451,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253617451,"stop":1750253617451,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-3"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"7904611e06419096","status":"passed","time":{"start":1750252855145,"stop":1750252857569,"duration":2424}},{"uid":"3e21dacf1ae2fb3a","status":"passed","time":{"start":1750084505493,"stop":1750084506516,"duration":1023}},{"uid":"18a269908d755a77","status":"passed","time":{"start":1750075562343,"stop":1750075563505,"duration":1162}}],"categories":[],"tags":[]},"source":"969ce7fb67ee94cb.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/97e7b68861a483dd.json b/allure-report/data/test-cases/97e7b68861a483dd.json new file mode 100644 index 0000000..3deed17 --- /dev/null +++ b/allure-report/data/test-cases/97e7b68861a483dd.json @@ -0,0 +1 @@ +{"uid":"97e7b68861a483dd","name":"Пароли не совпадают","fullName":"ui/recovery/recover-negative.spec.ts:56:7","historyId":"a7eaebb1e41fbbf13bf61195120b3ce9:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750252847300,"stop":1750252849862,"duration":2562},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252847300,"stop":1750252847550,"duration":250},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252847301,"stop":1750252847308,"duration":7},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252847301,"stop":1750252847307,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252847308,"stop":1750252847550,"duration":242},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252847309,"stop":1750252847550,"duration":241},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750252847551,"stop":1750252849355,"duration":1804},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750252849356,"stop":1750252849386,"duration":30},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750252849386,"stop":1750252849435,"duration":49},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750252849436,"stop":1750252849437,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252849438,"stop":1750252849534,"duration":96},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252849534,"stop":1750252849546,"duration":12},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252849546,"stop":1750252849554,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252849555,"stop":1750252849563,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252849564,"stop":1750252849569,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252849569,"stop":1750252849574,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750252849574,"stop":1750252849698,"duration":124},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750252849698,"stop":1750252849788,"duration":90},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!OtherPass123)","time":{"start":1750252849789,"stop":1750252849798,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750252849798,"stop":1750252849849,"duration":51},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252849850,"stop":1750252849856,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252849856,"stop":1750252849864,"duration":8},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252849856,"stop":1750252849856,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252849856,"stop":1750252849856,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-1"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"97e7b68861a483dd.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/995bb2612eda65c.json b/allure-report/data/test-cases/995bb2612eda65c.json deleted file mode 100644 index cc8a44b..0000000 --- a/allure-report/data/test-cases/995bb2612eda65c.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"995bb2612eda65c","name":"get started link","fullName":"example.spec.ts:10:5","historyId":"37e4aa066a5f6eac2e4d3b98a2ed98a7:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750084504688,"stop":1750084506422,"duration":1734},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084504690,"stop":1750084505581,"duration":891},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750084504697,"stop":1750084504941,"duration":244},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750084504700,"stop":1750084504941,"duration":241},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084504943,"stop":1750084505029,"duration":86},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084504944,"stop":1750084505026,"duration":82},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084505030,"stop":1750084505581,"duration":551},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084505033,"stop":1750084505581,"duration":548},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(https://playwright.dev/)","time":{"start":1750084505582,"stop":1750084506408,"duration":826},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('link', { name: 'Get started' }).click","time":{"start":1750084506411,"stop":1750084506502,"duration":91},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084506505,"stop":1750084506659,"duration":154},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084506660,"stop":1750084506676,"duration":16},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084506662,"stop":1750084506662,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084506662,"stop":1750084506662,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > webkit > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-0"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"example.spec.ts"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e109d1fc6f020451","status":"passed","time":{"start":1750075561747,"stop":1750075563488,"duration":1741}}],"categories":[],"tags":[]},"source":"995bb2612eda65c.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/99addb7b948ef30d.json b/allure-report/data/test-cases/99addb7b948ef30d.json new file mode 100644 index 0000000..9ee8e0c --- /dev/null +++ b/allure-report/data/test-cases/99addb7b948ef30d.json @@ -0,0 +1 @@ +{"uid":"99addb7b948ef30d","name":"Неверный код подтверждения","fullName":"ui/recovery/recover-negative.spec.ts:23:7","historyId":"31f03826b2a8da254be42b2d49bc35f3:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253484384,"stop":1750253490149,"duration":5765},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253484384,"stop":1750253484420,"duration":36},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253484385,"stop":1750253484387,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253484385,"stop":1750253484386,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253484387,"stop":1750253484420,"duration":33},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253484388,"stop":1750253484420,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750253484420,"stop":1750253489313,"duration":4893},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750253489315,"stop":1750253489337,"duration":22},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750253489338,"stop":1750253489370,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750253489370,"stop":1750253489477,"duration":107},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750253489477,"stop":1750253489479,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(6)","time":{"start":1750253489480,"stop":1750253489488,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(5)","time":{"start":1750253489488,"stop":1750253489492,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(4)","time":{"start":1750253489492,"stop":1750253489496,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(3)","time":{"start":1750253489496,"stop":1750253489502,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(2)","time":{"start":1750253489502,"stop":1750253489506,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(1)","time":{"start":1750253489507,"stop":1750253489512,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750253489513,"stop":1750253489554,"duration":41},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253489554,"stop":1750253489660,"duration":106},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253489660,"stop":1750253490150,"duration":490},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253489661,"stop":1750253489661,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253489661,"stop":1750253489661,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":21,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-1"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"99addb7b948ef30d.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9c064064dd63e9c4.json b/allure-report/data/test-cases/9c064064dd63e9c4.json new file mode 100644 index 0000000..991320d --- /dev/null +++ b/allure-report/data/test-cases/9c064064dd63e9c4.json @@ -0,0 +1 @@ +{"uid":"9c064064dd63e9c4","name":"Успешная регистрация нового пользователя","fullName":"ui/registration/register.spec.ts:6:7","historyId":"3562648cd3231e14b42a7151c17c62aa:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750252863247,"stop":1750252865838,"duration":2591},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252863247,"stop":1750252863356,"duration":109},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252863248,"stop":1750252863250,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252863248,"stop":1750252863250,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252863250,"stop":1750252863356,"duration":106},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252863250,"stop":1750252863356,"duration":106},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750252863357,"stop":1750252864414,"duration":1057},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Иван)","time":{"start":1750252864415,"stop":1750252864436,"duration":21},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Тестов)","time":{"start":1750252864437,"stop":1750252864442,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Александрович)","time":{"start":1750252864443,"stop":1750252864459,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёное звание*').click","time":{"start":1750252864461,"stop":1750252864542,"duration":81},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Доцент\"i)","time":{"start":1750252864543,"stop":1750252864947,"duration":404},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёная степень*').click","time":{"start":1750252864949,"stop":1750252865338,"duration":389},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Кандидат наук\"i)","time":{"start":1750252865339,"stop":1750252865371,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Преподаватель)","time":{"start":1750252865372,"stop":1750252865379,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(ЮФУ)","time":{"start":1750252865379,"stop":1750252865388,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest79738@example.com)","time":{"start":1750252865388,"stop":1750252865394,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(+79000079738)","time":{"start":1750252865395,"stop":1750252865402,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750252865402,"stop":1750252865409,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750252865410,"stop":1750252865419,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750252865420,"stop":1750252865468,"duration":48},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750252865468,"stop":1750252865828,"duration":360},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252865829,"stop":1750252865835,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252865835,"stop":1750252865840,"duration":5},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252865836,"stop":1750252865836,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252865836,"stop":1750252865836,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":25,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.spec.ts"},{"name":"titlePath","value":" > webkit > ui/registration/register.spec.ts > Позитивные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-0"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/registration/register.spec.ts"},{"name":"subSuite","value":"Позитивные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"9c064064dd63e9c4.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a2b4235c46265be0.json b/allure-report/data/test-cases/9d2d949772c4aa8c.json similarity index 91% rename from allure-report/data/test-cases/a2b4235c46265be0.json rename to allure-report/data/test-cases/9d2d949772c4aa8c.json index d5b88ea..ce83c9b 100644 --- a/allure-report/data/test-cases/a2b4235c46265be0.json +++ b/allure-report/data/test-cases/9d2d949772c4aa8c.json @@ -1 +1 @@ -{"uid":"a2b4235c46265be0","name":"Оба поля пустые","fullName":"ui/login/login.negative.spec.ts:27:7","historyId":"58990385f74407307e4ace7ad02abf05:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750084506701,"stop":1750084507952,"duration":1251},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084506701,"stop":1750084506836,"duration":135},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084506702,"stop":1750084506712,"duration":10},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084506702,"stop":1750084506711,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084506712,"stop":1750084506836,"duration":124},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084506714,"stop":1750084506836,"duration":122},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084506837,"stop":1750084507845,"duration":1008},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750084507846,"stop":1750084507878,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750084507878,"stop":1750084507901,"duration":23},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750084507902,"stop":1750084507943,"duration":41},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084507944,"stop":1750084507947,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084507948,"stop":1750084507951,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084507951,"stop":1750084507954,"duration":3},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084507951,"stop":1750084507951,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084507951,"stop":1750084507951,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-3"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5798cba72c59fd23","status":"passed","time":{"start":1750075563694,"stop":1750075564613,"duration":919}}],"categories":[],"tags":[]},"source":"a2b4235c46265be0.json","parameterValues":["webkit"]} \ No newline at end of file +{"uid":"9d2d949772c4aa8c","name":"Оба поля пустые","fullName":"ui/login/login.negative.spec.ts:27:7","historyId":"58990385f74407307e4ace7ad02abf05:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750084506701,"stop":1750084507952,"duration":1251},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084506701,"stop":1750084506836,"duration":135},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084506702,"stop":1750084506712,"duration":10},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084506702,"stop":1750084506711,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084506712,"stop":1750084506836,"duration":124},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084506714,"stop":1750084506836,"duration":122},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084506837,"stop":1750084507845,"duration":1008},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750084507846,"stop":1750084507878,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750084507878,"stop":1750084507901,"duration":23},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750084507902,"stop":1750084507943,"duration":41},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084507944,"stop":1750084507947,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084507948,"stop":1750084507951,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084507951,"stop":1750084507954,"duration":3},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084507951,"stop":1750084507951,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084507951,"stop":1750084507951,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-3"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"9d2d949772c4aa8c.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9dbd22211a852adb.json b/allure-report/data/test-cases/9dbd22211a852adb.json new file mode 100644 index 0000000..2f133ee --- /dev/null +++ b/allure-report/data/test-cases/9dbd22211a852adb.json @@ -0,0 +1 @@ +{"uid":"9dbd22211a852adb","name":"get started link","fullName":"example.spec.ts:10:5","historyId":"37e4aa066a5f6eac2e4d3b98a2ed98a7:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750253580470,"stop":1750253583690,"duration":3220},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253580471,"stop":1750253581716,"duration":1245},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750253580475,"stop":1750253581067,"duration":592},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750253580477,"stop":1750253581066,"duration":589},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253581067,"stop":1750253581205,"duration":138},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253581068,"stop":1750253581179,"duration":111},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253581205,"stop":1750253581716,"duration":511},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253581206,"stop":1750253581716,"duration":510},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(https://playwright.dev/)","time":{"start":1750253581717,"stop":1750253583677,"duration":1960},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('link', { name: 'Get started' }).click","time":{"start":1750253583680,"stop":1750253583788,"duration":108},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253583789,"stop":1750253584210,"duration":421},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253584210,"stop":1750253584286,"duration":76},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253584211,"stop":1750253584211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253584211,"stop":1750253584211,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > firefox > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-3"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"example.spec.ts"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"406d0a5ba56ef55e","status":"passed","time":{"start":1750252826950,"stop":1750252833537,"duration":6587}},{"uid":"75ec835b417a4298","status":"passed","time":{"start":1750084494460,"stop":1750084496622,"duration":2162}},{"uid":"73dda8034b26c38d","status":"passed","time":{"start":1750075551551,"stop":1750075553777,"duration":2226}}],"categories":[],"tags":[]},"source":"9dbd22211a852adb.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9e2f1dea9cfe0b65.json b/allure-report/data/test-cases/9e2f1dea9cfe0b65.json new file mode 100644 index 0000000..448821b --- /dev/null +++ b/allure-report/data/test-cases/9e2f1dea9cfe0b65.json @@ -0,0 +1 @@ +{"uid":"9e2f1dea9cfe0b65","name":"has title","fullName":"example.spec.ts:3:5","historyId":"3a2a809b453af4fd564578d1a27f3e45:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750253578127,"stop":1750253582408,"duration":4281},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253578128,"stop":1750253580524,"duration":2396},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750253578131,"stop":1750253579653,"duration":1522},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750253578133,"stop":1750253579652,"duration":1519},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253579654,"stop":1750253579888,"duration":234},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253579655,"stop":1750253579824,"duration":169},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253579888,"stop":1750253580524,"duration":636},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253579889,"stop":1750253580524,"duration":635},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(https://playwright.dev/)","time":{"start":1750253580525,"stop":1750253583796,"duration":3271},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveTitle","time":{"start":1750253583798,"stop":1750253583830,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253583831,"stop":1750253583934,"duration":103},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253583831,"stop":1750253583831,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253583832,"stop":1750253583832,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > firefox > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"example.spec.ts"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"2fe9fff62d8f0470","status":"passed","time":{"start":1750252826934,"stop":1750252835638,"duration":8704}},{"uid":"fcff193c697b73fc","status":"passed","time":{"start":1750084494460,"stop":1750084496600,"duration":2140}},{"uid":"779d683e0070d4ba","status":"passed","time":{"start":1750075551224,"stop":1750075553043,"duration":1819}}],"categories":[],"tags":[]},"source":"9e2f1dea9cfe0b65.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9f4a0fc97efc2aa.json b/allure-report/data/test-cases/9f4a0fc97efc2aa.json new file mode 100644 index 0000000..0885a38 --- /dev/null +++ b/allure-report/data/test-cases/9f4a0fc97efc2aa.json @@ -0,0 +1 @@ +{"uid":"9f4a0fc97efc2aa","name":"Переход по ссылке \"Зарегистрируйтесь\"","fullName":"ui/login/login.link.spec.ts:15:5","historyId":"62db9603623bba26b6305edb541ef4fa:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750075545992,"stop":1750075547267,"duration":1275},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075545993,"stop":1750075546573,"duration":580},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750075545998,"stop":1750075546322,"duration":324},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750075546001,"stop":1750075546322,"duration":321},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075546323,"stop":1750075546355,"duration":32},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075546326,"stop":1750075546345,"duration":19},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075546356,"stop":1750075546573,"duration":217},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075546357,"stop":1750075546572,"duration":215},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075546578,"stop":1750075547259,"duration":681},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByText('Зарегистрируйтесь').click","time":{"start":1750075547262,"stop":1750075547524,"duration":262},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750075547528,"stop":1750075547559,"duration":31},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075547561,"stop":1750075547572,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075547573,"stop":1750075547603,"duration":30},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075547573,"stop":1750075547573,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075547573,"stop":1750075547573,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"9f4a0fc97efc2aa.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9fa8644996023a26.json b/allure-report/data/test-cases/9fa8644996023a26.json new file mode 100644 index 0000000..8c0b29e --- /dev/null +++ b/allure-report/data/test-cases/9fa8644996023a26.json @@ -0,0 +1 @@ +{"uid":"9fa8644996023a26","name":"Неверный код подтверждения","fullName":"ui/recovery/recover-negative.spec.ts:23:7","historyId":"31f03826b2a8da254be42b2d49bc35f3:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750084501594,"stop":1750084503368,"duration":1774},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084501594,"stop":1750084501793,"duration":199},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084501595,"stop":1750084501604,"duration":9},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084501595,"stop":1750084501604,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084501604,"stop":1750084501793,"duration":189},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084501604,"stop":1750084501793,"duration":189},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750084501795,"stop":1750084502789,"duration":994},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084502789,"stop":1750084502884,"duration":95},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750084502885,"stop":1750084502970,"duration":85},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750084502972,"stop":1750084503085,"duration":113},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750084503086,"stop":1750084503087,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(6)","time":{"start":1750084503088,"stop":1750084503114,"duration":26},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(5)","time":{"start":1750084503115,"stop":1750084503142,"duration":27},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(4)","time":{"start":1750084503143,"stop":1750084503153,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(3)","time":{"start":1750084503154,"stop":1750084503158,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(2)","time":{"start":1750084503159,"stop":1750084503163,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(1)","time":{"start":1750084503163,"stop":1750084503177,"duration":14},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084503178,"stop":1750084503247,"duration":69},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084503247,"stop":1750084503362,"duration":115},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084503362,"stop":1750084503370,"duration":8},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084503362,"stop":1750084503362,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084503362,"stop":1750084503362,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":21,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"9fa8644996023a26.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3ceb71bd12870fa8.json b/allure-report/data/test-cases/a0344127a19e8e6d.json similarity index 98% rename from allure-report/data/test-cases/3ceb71bd12870fa8.json rename to allure-report/data/test-cases/a0344127a19e8e6d.json index 89ebcf7..a8edee1 100644 --- a/allure-report/data/test-cases/3ceb71bd12870fa8.json +++ b/allure-report/data/test-cases/a0344127a19e8e6d.json @@ -1 +1 @@ -{"uid":"3ceb71bd12870fa8","name":"Пользователь успешно восстанавливает пароль","fullName":"ui/recovery/recover-password.spec.ts:7:7","historyId":"1779c735aef9d62c071557455e74e57f:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750075550648,"stop":1750075551753,"duration":1105},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075550648,"stop":1750075550692,"duration":44},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075550649,"stop":1750075550651,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075550649,"stop":1750075550650,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075550651,"stop":1750075550692,"duration":41},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075550651,"stop":1750075550692,"duration":41},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750075550693,"stop":1750075551259,"duration":566},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075551260,"stop":1750075551293,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750075551294,"stop":1750075551319,"duration":25},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750075551320,"stop":1750075551424,"duration":104},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750075551424,"stop":1750075551425,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075551425,"stop":1750075551429,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075551429,"stop":1750075551435,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075551436,"stop":1750075551439,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075551440,"stop":1750075551443,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075551443,"stop":1750075551447,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075551447,"stop":1750075551454,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075551454,"stop":1750075551491,"duration":37},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075551491,"stop":1750075551595,"duration":104},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750075551595,"stop":1750075551602,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750075551602,"stop":1750075551607,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075551608,"stop":1750075551636,"duration":28},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750075551637,"stop":1750075551741,"duration":104},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075551742,"stop":1750075551745,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075551746,"stop":1750075551756,"duration":10},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075551746,"stop":1750075551746,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075551747,"stop":1750075551747,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":26,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-password.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-password.spec.ts > Восстановление пароля — позитивные сценарии"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-1"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-password.spec.ts"},{"name":"subSuite","value":"Восстановление пароля — позитивные сценарии"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"3ceb71bd12870fa8.json","parameterValues":["chromium"]} \ No newline at end of file +{"uid":"a0344127a19e8e6d","name":"Пользователь успешно восстанавливает пароль","fullName":"ui/recovery/recover-password.spec.ts:7:7","historyId":"1779c735aef9d62c071557455e74e57f:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750075550648,"stop":1750075551753,"duration":1105},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075550648,"stop":1750075550692,"duration":44},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075550649,"stop":1750075550651,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075550649,"stop":1750075550650,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075550651,"stop":1750075550692,"duration":41},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075550651,"stop":1750075550692,"duration":41},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750075550693,"stop":1750075551259,"duration":566},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075551260,"stop":1750075551293,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750075551294,"stop":1750075551319,"duration":25},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750075551320,"stop":1750075551424,"duration":104},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750075551424,"stop":1750075551425,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075551425,"stop":1750075551429,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075551429,"stop":1750075551435,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075551436,"stop":1750075551439,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075551440,"stop":1750075551443,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075551443,"stop":1750075551447,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075551447,"stop":1750075551454,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075551454,"stop":1750075551491,"duration":37},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075551491,"stop":1750075551595,"duration":104},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750075551595,"stop":1750075551602,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750075551602,"stop":1750075551607,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075551608,"stop":1750075551636,"duration":28},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750075551637,"stop":1750075551741,"duration":104},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075551742,"stop":1750075551745,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075551746,"stop":1750075551756,"duration":10},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075551746,"stop":1750075551746,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075551747,"stop":1750075551747,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":26,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-password.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-password.spec.ts > Восстановление пароля — позитивные сценарии"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-1"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-password.spec.ts"},{"name":"subSuite","value":"Восстановление пароля — позитивные сценарии"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"a0344127a19e8e6d.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a27adfbe837c297f.json b/allure-report/data/test-cases/a27adfbe837c297f.json new file mode 100644 index 0000000..d6d2d2c --- /dev/null +++ b/allure-report/data/test-cases/a27adfbe837c297f.json @@ -0,0 +1 @@ +{"uid":"a27adfbe837c297f","name":"Оба поля пустые","fullName":"ui/login/login.negative.spec.ts:27:7","historyId":"58990385f74407307e4ace7ad02abf05:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750252811790,"stop":1750252812688,"duration":898},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252811790,"stop":1750252811833,"duration":43},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252811790,"stop":1750252811792,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252811791,"stop":1750252811792,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252811792,"stop":1750252811833,"duration":41},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252811792,"stop":1750252811833,"duration":41},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750252811834,"stop":1750252812540,"duration":706},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750252812541,"stop":1750252812599,"duration":58},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750252812599,"stop":1750252812632,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750252812632,"stop":1750252812676,"duration":44},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252812677,"stop":1750252812682,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252812682,"stop":1750252812684,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252812684,"stop":1750252812689,"duration":5},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252812684,"stop":1750252812684,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252812685,"stop":1750252812685,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"a27adfbe837c297f.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/703a2301ffdc2da7.json b/allure-report/data/test-cases/a3b3ee60bb9135ec.json similarity index 94% rename from allure-report/data/test-cases/703a2301ffdc2da7.json rename to allure-report/data/test-cases/a3b3ee60bb9135ec.json index c5fc65c..b48d0cf 100644 --- a/allure-report/data/test-cases/703a2301ffdc2da7.json +++ b/allure-report/data/test-cases/a3b3ee60bb9135ec.json @@ -1 +1 @@ -{"uid":"703a2301ffdc2da7","name":"Неверный код подтверждения","fullName":"ui/recovery/recover-negative.spec.ts:23:7","historyId":"31f03826b2a8da254be42b2d49bc35f3:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750084509104,"stop":1750084510143,"duration":1039},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084509105,"stop":1750084509226,"duration":121},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084509105,"stop":1750084509108,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084509106,"stop":1750084509108,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084509108,"stop":1750084509226,"duration":118},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084509109,"stop":1750084509226,"duration":117},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750084509231,"stop":1750084509716,"duration":485},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084509717,"stop":1750084509790,"duration":73},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750084509791,"stop":1750084509828,"duration":37},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750084509828,"stop":1750084509938,"duration":110},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750084509939,"stop":1750084509941,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(6)","time":{"start":1750084509941,"stop":1750084509946,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(5)","time":{"start":1750084509948,"stop":1750084509960,"duration":12},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(4)","time":{"start":1750084509961,"stop":1750084509965,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(3)","time":{"start":1750084509966,"stop":1750084509973,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(2)","time":{"start":1750084509974,"stop":1750084509979,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(1)","time":{"start":1750084509979,"stop":1750084509987,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084509988,"stop":1750084510026,"duration":38},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084510026,"stop":1750084510137,"duration":111},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084510137,"stop":1750084510146,"duration":9},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084510137,"stop":1750084510137,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084510137,"stop":1750084510138,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":21,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-2"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9b993cf9e1dc548a","status":"passed","time":{"start":1750075565970,"stop":1750075567264,"duration":1294}}],"categories":[],"tags":[]},"source":"703a2301ffdc2da7.json","parameterValues":["webkit"]} \ No newline at end of file +{"uid":"a3b3ee60bb9135ec","name":"Неверный код подтверждения","fullName":"ui/recovery/recover-negative.spec.ts:23:7","historyId":"31f03826b2a8da254be42b2d49bc35f3:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750084509104,"stop":1750084510143,"duration":1039},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084509105,"stop":1750084509226,"duration":121},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084509105,"stop":1750084509108,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084509106,"stop":1750084509108,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084509108,"stop":1750084509226,"duration":118},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084509109,"stop":1750084509226,"duration":117},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750084509231,"stop":1750084509716,"duration":485},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084509717,"stop":1750084509790,"duration":73},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750084509791,"stop":1750084509828,"duration":37},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750084509828,"stop":1750084509938,"duration":110},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750084509939,"stop":1750084509941,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(6)","time":{"start":1750084509941,"stop":1750084509946,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(5)","time":{"start":1750084509948,"stop":1750084509960,"duration":12},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(4)","time":{"start":1750084509961,"stop":1750084509965,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(3)","time":{"start":1750084509966,"stop":1750084509973,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(2)","time":{"start":1750084509974,"stop":1750084509979,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(1)","time":{"start":1750084509979,"stop":1750084509987,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084509988,"stop":1750084510026,"duration":38},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084510026,"stop":1750084510137,"duration":111},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084510137,"stop":1750084510146,"duration":9},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084510137,"stop":1750084510137,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084510137,"stop":1750084510138,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":21,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-2"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"a3b3ee60bb9135ec.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/701a94631e81e6af.json b/allure-report/data/test-cases/a411f1fa33dcdf0b.json similarity index 91% rename from allure-report/data/test-cases/701a94631e81e6af.json rename to allure-report/data/test-cases/a411f1fa33dcdf0b.json index 38e2ebc..363c453 100644 --- a/allure-report/data/test-cases/701a94631e81e6af.json +++ b/allure-report/data/test-cases/a411f1fa33dcdf0b.json @@ -1 +1 @@ -{"uid":"701a94631e81e6af","name":"Некорректный email (формат)","fullName":"ui/recovery/recover-negative.spec.ts:7:7","historyId":"d776d5fb9c918a79827aea417bdc449a:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750084491646,"stop":1750084492211,"duration":565},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084491646,"stop":1750084491681,"duration":35},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084491647,"stop":1750084491648,"duration":1},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084491647,"stop":1750084491648,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084491648,"stop":1750084491681,"duration":33},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084491649,"stop":1750084491681,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750084491683,"stop":1750084492129,"duration":446},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(invalid-email)","time":{"start":1750084492131,"stop":1750084492165,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750084492166,"stop":1750084492199,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084492199,"stop":1750084492204,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084492204,"stop":1750084492213,"duration":9},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084492204,"stop":1750084492204,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084492204,"stop":1750084492204,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-1"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a03daf7c9a0d201b","status":"passed","time":{"start":1750075549148,"stop":1750075550058,"duration":910}}],"categories":[],"tags":[]},"source":"701a94631e81e6af.json","parameterValues":["chromium"]} \ No newline at end of file +{"uid":"a411f1fa33dcdf0b","name":"Некорректный email (формат)","fullName":"ui/recovery/recover-negative.spec.ts:7:7","historyId":"d776d5fb9c918a79827aea417bdc449a:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750084491646,"stop":1750084492211,"duration":565},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084491646,"stop":1750084491681,"duration":35},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084491647,"stop":1750084491648,"duration":1},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084491647,"stop":1750084491648,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084491648,"stop":1750084491681,"duration":33},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084491649,"stop":1750084491681,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750084491683,"stop":1750084492129,"duration":446},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(invalid-email)","time":{"start":1750084492131,"stop":1750084492165,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750084492166,"stop":1750084492199,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084492199,"stop":1750084492204,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084492204,"stop":1750084492213,"duration":9},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084492204,"stop":1750084492204,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084492204,"stop":1750084492204,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-1"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"a411f1fa33dcdf0b.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/159330e44b573ebb.json b/allure-report/data/test-cases/a4548e1be474a069.json similarity index 94% rename from allure-report/data/test-cases/159330e44b573ebb.json rename to allure-report/data/test-cases/a4548e1be474a069.json index 2856f5d..3ca2913 100644 --- a/allure-report/data/test-cases/159330e44b573ebb.json +++ b/allure-report/data/test-cases/a4548e1be474a069.json @@ -1 +1 @@ -{"uid":"159330e44b573ebb","name":"Пароли не совпадают","fullName":"ui/recovery/recover-negative.spec.ts:56:7","historyId":"a7eaebb1e41fbbf13bf61195120b3ce9:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750084502694,"stop":1750084504377,"duration":1683},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084502694,"stop":1750084502944,"duration":250},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084502696,"stop":1750084502709,"duration":13},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084502697,"stop":1750084502709,"duration":12},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084502709,"stop":1750084502944,"duration":235},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084502711,"stop":1750084502944,"duration":233},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750084502946,"stop":1750084503812,"duration":866},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084503814,"stop":1750084503886,"duration":72},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750084503886,"stop":1750084503940,"duration":54},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750084503941,"stop":1750084503943,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084503943,"stop":1750084504041,"duration":98},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084504042,"stop":1750084504051,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084504052,"stop":1750084504061,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084504062,"stop":1750084504075,"duration":13},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084504076,"stop":1750084504095,"duration":19},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084504096,"stop":1750084504105,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084504107,"stop":1750084504193,"duration":86},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750084504194,"stop":1750084504290,"duration":96},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!OtherPass123)","time":{"start":1750084504291,"stop":1750084504305,"duration":14},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084504307,"stop":1750084504365,"duration":58},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084504365,"stop":1750084504372,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084504372,"stop":1750084504380,"duration":8},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084504372,"stop":1750084504373,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084504373,"stop":1750084504373,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-3"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c97c618fecbcd5f8","status":"passed","time":{"start":1750075559492,"stop":1750075561099,"duration":1607}}],"categories":[],"tags":[]},"source":"159330e44b573ebb.json","parameterValues":["firefox"]} \ No newline at end of file +{"uid":"a4548e1be474a069","name":"Пароли не совпадают","fullName":"ui/recovery/recover-negative.spec.ts:56:7","historyId":"a7eaebb1e41fbbf13bf61195120b3ce9:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750084502694,"stop":1750084504377,"duration":1683},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084502694,"stop":1750084502944,"duration":250},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084502696,"stop":1750084502709,"duration":13},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084502697,"stop":1750084502709,"duration":12},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084502709,"stop":1750084502944,"duration":235},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084502711,"stop":1750084502944,"duration":233},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750084502946,"stop":1750084503812,"duration":866},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084503814,"stop":1750084503886,"duration":72},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750084503886,"stop":1750084503940,"duration":54},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750084503941,"stop":1750084503943,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084503943,"stop":1750084504041,"duration":98},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084504042,"stop":1750084504051,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084504052,"stop":1750084504061,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084504062,"stop":1750084504075,"duration":13},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084504076,"stop":1750084504095,"duration":19},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084504096,"stop":1750084504105,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084504107,"stop":1750084504193,"duration":86},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750084504194,"stop":1750084504290,"duration":96},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!OtherPass123)","time":{"start":1750084504291,"stop":1750084504305,"duration":14},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084504307,"stop":1750084504365,"duration":58},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084504365,"stop":1750084504372,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084504372,"stop":1750084504380,"duration":8},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084504372,"stop":1750084504373,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084504373,"stop":1750084504373,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-3"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"a4548e1be474a069.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a59360836ecd582e.json b/allure-report/data/test-cases/a59360836ecd582e.json new file mode 100644 index 0000000..8fa6b2f --- /dev/null +++ b/allure-report/data/test-cases/a59360836ecd582e.json @@ -0,0 +1 @@ +{"uid":"a59360836ecd582e","name":"Слишком длинное название организации","fullName":"ui/registration/register.negative.spec.ts:48:7","historyId":"26486147b8778ca2341563049d2a3728:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253577607,"stop":1750253579829,"duration":2222},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":5,"retriesStatusChange":true,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253577607,"stop":1750253577669,"duration":62},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253577608,"stop":1750253577616,"duration":8},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253577609,"stop":1750253577613,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253577617,"stop":1750253577669,"duration":52},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253577617,"stop":1750253577669,"duration":52},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750253577670,"stop":1750253578807,"duration":1137},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Иван)","time":{"start":1750253578809,"stop":1750253578834,"duration":25},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Иванов)","time":{"start":1750253578834,"stop":1750253578846,"duration":12},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёное звание*').click","time":{"start":1750253578846,"stop":1750253578889,"duration":43},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Доцент\"i)","time":{"start":1750253578889,"stop":1750253579053,"duration":164},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёная степень*').click","time":{"start":1750253579053,"stop":1750253579432,"duration":379},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Кандидат наук\"i)","time":{"start":1750253579433,"stop":1750253579468,"duration":35},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Преподаватель)","time":{"start":1750253579468,"stop":1750253579475,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(ООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООО)","time":{"start":1750253579476,"stop":1750253579487,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(test1750253578807@example.com)","time":{"start":1750253579488,"stop":1750253579501,"duration":13},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(+79990726629)","time":{"start":1750253579502,"stop":1750253579510,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123)","time":{"start":1750253579511,"stop":1750253579522,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123)","time":{"start":1750253579523,"stop":1750253579531,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750253579531,"stop":1750253579567,"duration":36},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253579567,"stop":1750253579674,"duration":107},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253579675,"stop":1750253579832,"duration":157},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253579675,"stop":1750253579675,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253579676,"stop":1750253579676,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"bb2df3efa4b7ab83","status":"passed","time":{"start":1750253498002,"stop":1750253504069,"duration":6067}},{"uid":"3ea164013749327","status":"passed","time":{"start":1750252825715,"stop":1750252827130,"duration":1415}},{"uid":"243bc97ccd4569b0","status":"passed","time":{"start":1750252762242,"stop":1750252780416,"duration":18174}},{"uid":"f4db4683dddde61e","status":"passed","time":{"start":1750252690590,"stop":1750252693284,"duration":2694}},{"uid":"48fb323eb8a5b80c","status":"failed","statusDetails":"Error: Timed out 5000ms waiting for expect(locator).toBeVisible()\n\nLocator: getByText('Некорректное название организации!')\nExpected: visible\nReceived: \nCall log:\n - expect.toBeVisible with timeout 5000ms\n - waiting for getByText('Некорректное название организации!')\n","time":{"start":1750252518180,"stop":1750252545048,"duration":26868}}],"categories":[],"tags":[]},"source":"a59360836ecd582e.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1f34f20dd4a0d9fd.json b/allure-report/data/test-cases/a636711aeaf16eff.json similarity index 92% rename from allure-report/data/test-cases/1f34f20dd4a0d9fd.json rename to allure-report/data/test-cases/a636711aeaf16eff.json index c6a5998..efa9576 100644 --- a/allure-report/data/test-cases/1f34f20dd4a0d9fd.json +++ b/allure-report/data/test-cases/a636711aeaf16eff.json @@ -1 +1 @@ -{"uid":"1f34f20dd4a0d9fd","name":"Неверный пароль","fullName":"ui/login/login.negative.spec.ts:7:7","historyId":"500ad758ee2db2bb60aa832fb0abbb94:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750084489259,"stop":1750084490492,"duration":1233},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084489259,"stop":1750084489303,"duration":44},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084489260,"stop":1750084489263,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084489261,"stop":1750084489263,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084489263,"stop":1750084489303,"duration":40},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084489264,"stop":1750084489303,"duration":39},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084489304,"stop":1750084490228,"duration":924},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084490229,"stop":1750084490278,"duration":49},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(wrongpass)","time":{"start":1750084490278,"stop":1750084490313,"duration":35},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750084490314,"stop":1750084490382,"duration":68},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084490382,"stop":1750084490487,"duration":105},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084490487,"stop":1750084490494,"duration":7},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084490487,"stop":1750084490487,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084490487,"stop":1750084490487,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3330f623917f41ea","status":"passed","time":{"start":1750075547550,"stop":1750075548445,"duration":895}}],"categories":[],"tags":[]},"source":"1f34f20dd4a0d9fd.json","parameterValues":["chromium"]} \ No newline at end of file +{"uid":"a636711aeaf16eff","name":"Неверный пароль","fullName":"ui/login/login.negative.spec.ts:7:7","historyId":"500ad758ee2db2bb60aa832fb0abbb94:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750084489259,"stop":1750084490492,"duration":1233},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084489259,"stop":1750084489303,"duration":44},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084489260,"stop":1750084489263,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084489261,"stop":1750084489263,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084489263,"stop":1750084489303,"duration":40},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084489264,"stop":1750084489303,"duration":39},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084489304,"stop":1750084490228,"duration":924},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084490229,"stop":1750084490278,"duration":49},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(wrongpass)","time":{"start":1750084490278,"stop":1750084490313,"duration":35},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750084490314,"stop":1750084490382,"duration":68},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084490382,"stop":1750084490487,"duration":105},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084490487,"stop":1750084490494,"duration":7},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084490487,"stop":1750084490487,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084490487,"stop":1750084490487,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"a636711aeaf16eff.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a64dad12f676d820.json b/allure-report/data/test-cases/a64dad12f676d820.json new file mode 100644 index 0000000..cb09ce3 --- /dev/null +++ b/allure-report/data/test-cases/a64dad12f676d820.json @@ -0,0 +1 @@ +{"uid":"a64dad12f676d820","name":"Регистр в email (User@test.com ≠ user@test.com)","fullName":"ui/login/login.negative.spec.ts:58:7","historyId":"cc4ad4b40ef726af11b2bd4f5523dbe0:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750253621861,"stop":1750253625596,"duration":3735},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253621876,"stop":1750253622339,"duration":463},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750253621910,"stop":1750253622060,"duration":150},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750253621913,"stop":1750253622060,"duration":147},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253622061,"stop":1750253622104,"duration":43},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253622062,"stop":1750253622101,"duration":39},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253622104,"stop":1750253622339,"duration":235},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253622105,"stop":1750253622338,"duration":233},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750253622340,"stop":1750253625133,"duration":2793},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Autotest@Example.com)","time":{"start":1750253625137,"stop":1750253625235,"duration":98},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750253625236,"stop":1750253625262,"duration":26},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750253625263,"stop":1750253625346,"duration":83},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253625348,"stop":1750253625490,"duration":142},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253625490,"stop":1750253625768,"duration":278},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253625491,"stop":1750253625491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253625491,"stop":1750253625491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":15,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"tag","value":"test.com"},{"name":"tag","value":"test.com)"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-2"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8ce9d5af31e95591","status":"passed","time":{"start":1750252857734,"stop":1750252858830,"duration":1096}},{"uid":"3775ae1136246cc1","status":"passed","time":{"start":1750084507958,"stop":1750084508862,"duration":904}},{"uid":"f082ae4d0fad0972","status":"passed","time":{"start":1750075564720,"stop":1750075566114,"duration":1394}}],"categories":[],"tags":["test.com","test.com)"]},"source":"a64dad12f676d820.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a85a3624497db5d.json b/allure-report/data/test-cases/a85a3624497db5d.json new file mode 100644 index 0000000..2a3f521 --- /dev/null +++ b/allure-report/data/test-cases/a85a3624497db5d.json @@ -0,0 +1 @@ +{"uid":"a85a3624497db5d","name":"Переход по ссылке \"Зарегистрируйтесь\"","fullName":"ui/login/login.link.spec.ts:15:5","historyId":"62db9603623bba26b6305edb541ef4fa:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750252854583,"stop":1750252856445,"duration":1862},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252854582,"stop":1750252854740,"duration":158},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252854585,"stop":1750252854590,"duration":5},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252854586,"stop":1750252854589,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252854590,"stop":1750252854740,"duration":150},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252854591,"stop":1750252854740,"duration":149},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750252854742,"stop":1750252856311,"duration":1569},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByText('Зарегистрируйтесь').click","time":{"start":1750252856313,"stop":1750252856425,"duration":112},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750252856425,"stop":1750252856435,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252856435,"stop":1750252856442,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252856442,"stop":1750252856447,"duration":5},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252856442,"stop":1750252856442,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252856443,"stop":1750252856443,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-1"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"a85a3624497db5d.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a90b7beaa711f52d.json b/allure-report/data/test-cases/a90b7beaa711f52d.json new file mode 100644 index 0000000..566280e --- /dev/null +++ b/allure-report/data/test-cases/a90b7beaa711f52d.json @@ -0,0 +1 @@ +{"uid":"a90b7beaa711f52d","name":"Неверный код подтверждения","fullName":"ui/recovery/recover-negative.spec.ts:23:7","historyId":"31f03826b2a8da254be42b2d49bc35f3:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750253627415,"stop":1750253629829,"duration":2414},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253627414,"stop":1750253627543,"duration":129},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253627415,"stop":1750253627420,"duration":5},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253627415,"stop":1750253627418,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253627420,"stop":1750253627543,"duration":123},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253627420,"stop":1750253627543,"duration":123},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750253627545,"stop":1750253629263,"duration":1718},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750253629263,"stop":1750253629291,"duration":28},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750253629292,"stop":1750253629348,"duration":56},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750253629349,"stop":1750253629477,"duration":128},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750253629478,"stop":1750253629492,"duration":14},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(6)","time":{"start":1750253629494,"stop":1750253629524,"duration":30},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(5)","time":{"start":1750253629525,"stop":1750253629535,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(4)","time":{"start":1750253629536,"stop":1750253629545,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(3)","time":{"start":1750253629545,"stop":1750253629555,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(2)","time":{"start":1750253629556,"stop":1750253629579,"duration":23},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(1)","time":{"start":1750253629581,"stop":1750253629598,"duration":17},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750253629599,"stop":1750253629653,"duration":54},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253629654,"stop":1750253629771,"duration":117},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253629772,"stop":1750253629829,"duration":57},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253629772,"stop":1750253629772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253629772,"stop":1750253629772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":21,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-3"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"2d652d7b26ea781f","status":"passed","time":{"start":1750252859258,"stop":1750252860871,"duration":1613}},{"uid":"a3b3ee60bb9135ec","status":"passed","time":{"start":1750084509104,"stop":1750084510143,"duration":1039}},{"uid":"af23cf42d42c22f0","status":"passed","time":{"start":1750075565970,"stop":1750075567264,"duration":1294}}],"categories":[],"tags":[]},"source":"a90b7beaa711f52d.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ab9c735b312a9f51.json b/allure-report/data/test-cases/ab9c735b312a9f51.json new file mode 100644 index 0000000..acd4365 --- /dev/null +++ b/allure-report/data/test-cases/ab9c735b312a9f51.json @@ -0,0 +1 @@ +{"uid":"ab9c735b312a9f51","name":"Неверный код подтверждения","fullName":"ui/recovery/recover-negative.spec.ts:23:7","historyId":"31f03826b2a8da254be42b2d49bc35f3:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750252845302,"stop":1750252847662,"duration":2360},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252845302,"stop":1750252845473,"duration":171},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252845302,"stop":1750252845309,"duration":7},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252845303,"stop":1750252845308,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252845309,"stop":1750252845473,"duration":164},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252845309,"stop":1750252845473,"duration":164},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750252845474,"stop":1750252847121,"duration":1647},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750252847123,"stop":1750252847153,"duration":30},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750252847155,"stop":1750252847232,"duration":77},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750252847233,"stop":1750252847340,"duration":107},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750252847340,"stop":1750252847342,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(6)","time":{"start":1750252847343,"stop":1750252847356,"duration":13},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(5)","time":{"start":1750252847356,"stop":1750252847367,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(4)","time":{"start":1750252847367,"stop":1750252847378,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(3)","time":{"start":1750252847380,"stop":1750252847401,"duration":21},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(2)","time":{"start":1750252847402,"stop":1750252847430,"duration":28},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(1)","time":{"start":1750252847431,"stop":1750252847474,"duration":43},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750252847475,"stop":1750252847540,"duration":65},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252847541,"stop":1750252847655,"duration":114},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252847656,"stop":1750252847663,"duration":7},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252847656,"stop":1750252847656,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252847656,"stop":1750252847656,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":21,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"ab9c735b312a9f51.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/abb74cf0ca506236.json b/allure-report/data/test-cases/abb74cf0ca506236.json new file mode 100644 index 0000000..c416cac --- /dev/null +++ b/allure-report/data/test-cases/abb74cf0ca506236.json @@ -0,0 +1 @@ +{"uid":"abb74cf0ca506236","name":"Некорректный email формат","fullName":"ui/registration/register.negative.spec.ts:28:7","historyId":"de8c598c53adc6e2133478f1b9141597:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750252861921,"stop":1750252863443,"duration":1522},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252861920,"stop":1750252862035,"duration":115},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252861921,"stop":1750252861924,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252861922,"stop":1750252861924,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252861924,"stop":1750252862035,"duration":111},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252861925,"stop":1750252862035,"duration":110},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750252862037,"stop":1750252863379,"duration":1342},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(invalid-email)","time":{"start":1750252863379,"stop":1750252863400,"duration":21},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750252863401,"stop":1750252863437,"duration":36},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252863438,"stop":1750252863441,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252863441,"stop":1750252863443,"duration":2},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252863441,"stop":1750252863441,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252863441,"stop":1750252863441,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-3"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"abb74cf0ca506236.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/abcac302f2be266d.json b/allure-report/data/test-cases/abcac302f2be266d.json new file mode 100644 index 0000000..b089eb7 --- /dev/null +++ b/allure-report/data/test-cases/abcac302f2be266d.json @@ -0,0 +1 @@ +{"uid":"abcac302f2be266d","name":"Некорректный формат email","fullName":"ui/login/login.negative.spec.ts:46:7","historyId":"e5764a911de0175f8f7118313ae14544:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750252811927,"stop":1750252813032,"duration":1105},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252811927,"stop":1750252811970,"duration":43},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252811928,"stop":1750252811930,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252811929,"stop":1750252811930,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252811930,"stop":1750252811970,"duration":40},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252811931,"stop":1750252811970,"duration":39},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750252811971,"stop":1750252812879,"duration":908},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(invalid-email)","time":{"start":1750252812880,"stop":1750252812933,"duration":53},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(anyPassword123)","time":{"start":1750252812933,"stop":1750252812964,"duration":31},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750252812965,"stop":1750252813027,"duration":62},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252813028,"stop":1750252813030,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252813030,"stop":1750252813033,"duration":3},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252813030,"stop":1750252813030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252813030,"stop":1750252813030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"abcac302f2be266d.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ac9a886d0798d1ed.json b/allure-report/data/test-cases/ac9a886d0798d1ed.json new file mode 100644 index 0000000..048c205 --- /dev/null +++ b/allure-report/data/test-cases/ac9a886d0798d1ed.json @@ -0,0 +1 @@ +{"uid":"ac9a886d0798d1ed","name":"Некорректное имя и фамилия (слишком длинные)","fullName":"ui/registration/register.negative.spec.ts:16:7","historyId":"7134a02a04b606099de5c920fb62990a:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750252747042,"stop":1750252750879,"duration":3837},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252747041,"stop":1750252748101,"duration":1060},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252747043,"stop":1750252747847,"duration":804},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252747044,"stop":1750252747847,"duration":803},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252747848,"stop":1750252748101,"duration":253},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252747848,"stop":1750252748101,"duration":253},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750252748102,"stop":1750252750678,"duration":2576},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(ААААААААААААААААААААААААААААААААААААААААААААААААААА)","time":{"start":1750252750680,"stop":1750252750748,"duration":68},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(БББББББББББББББББББББББББББББББББББББББББББББББББББ)","time":{"start":1750252750748,"stop":1750252750762,"duration":14},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750252750764,"stop":1750252750802,"duration":38},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252750803,"stop":1750252750811,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252750811,"stop":1750252750856,"duration":45},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252750856,"stop":1750252750880,"duration":24},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252750856,"stop":1750252750856,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252750857,"stop":1750252750857,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-57952-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"ac9a886d0798d1ed.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9e16f68655df37d3.json b/allure-report/data/test-cases/acbfe1456a4045d4.json similarity index 92% rename from allure-report/data/test-cases/9e16f68655df37d3.json rename to allure-report/data/test-cases/acbfe1456a4045d4.json index f0c3e96..dd6ebd2 100644 --- a/allure-report/data/test-cases/9e16f68655df37d3.json +++ b/allure-report/data/test-cases/acbfe1456a4045d4.json @@ -1 +1 @@ -{"uid":"9e16f68655df37d3","name":"Пользователь должен успешно залогиниться с валидными данными","fullName":"ui/login/login.spec.ts:7:7","historyId":"92a5ca35180a4cbe902714b987a6bf44:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750084508128,"stop":1750084509091,"duration":963},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084508128,"stop":1750084508264,"duration":136},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084508129,"stop":1750084508132,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084508129,"stop":1750084508132,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084508132,"stop":1750084508264,"duration":132},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084508133,"stop":1750084508263,"duration":130},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084508265,"stop":1750084508783,"duration":518},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084508784,"stop":1750084508868,"duration":84},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750084508873,"stop":1750084508894,"duration":21},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750084508896,"stop":1750084508975,"duration":79},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750084508975,"stop":1750084509082,"duration":107},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084509083,"stop":1750084509087,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084509088,"stop":1750084509097,"duration":9},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084509092,"stop":1750084509092,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084509092,"stop":1750084509092,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.spec.ts > Авторизация пользователя"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-2"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.spec.ts"},{"name":"subSuite","value":"Авторизация пользователя"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d6802166c179c1c","status":"passed","time":{"start":1750075564763,"stop":1750075565949,"duration":1186}}],"categories":[],"tags":[]},"source":"9e16f68655df37d3.json","parameterValues":["webkit"]} \ No newline at end of file +{"uid":"acbfe1456a4045d4","name":"Пользователь должен успешно залогиниться с валидными данными","fullName":"ui/login/login.spec.ts:7:7","historyId":"92a5ca35180a4cbe902714b987a6bf44:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750084508128,"stop":1750084509091,"duration":963},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084508128,"stop":1750084508264,"duration":136},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084508129,"stop":1750084508132,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084508129,"stop":1750084508132,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084508132,"stop":1750084508264,"duration":132},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084508133,"stop":1750084508263,"duration":130},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084508265,"stop":1750084508783,"duration":518},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084508784,"stop":1750084508868,"duration":84},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750084508873,"stop":1750084508894,"duration":21},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750084508896,"stop":1750084508975,"duration":79},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750084508975,"stop":1750084509082,"duration":107},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084509083,"stop":1750084509087,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084509088,"stop":1750084509097,"duration":9},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084509092,"stop":1750084509092,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084509092,"stop":1750084509092,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.spec.ts > Авторизация пользователя"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-2"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.spec.ts"},{"name":"subSuite","value":"Авторизация пользователя"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"acbfe1456a4045d4.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/accf5a2fef71e751.json b/allure-report/data/test-cases/accf5a2fef71e751.json deleted file mode 100644 index a9523e0..0000000 --- a/allure-report/data/test-cases/accf5a2fef71e751.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"accf5a2fef71e751","name":"Переход по ссылке \"Забыли пароль?\"","fullName":"ui/login/login.link.spec.ts:6:5","historyId":"91fcabcb669557e4ddb559c077420e45:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750084487578,"stop":1750084490119,"duration":2541},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084487574,"stop":1750084488227,"duration":653},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750084487582,"stop":1750084487985,"duration":403},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750084487584,"stop":1750084487984,"duration":400},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084487986,"stop":1750084487995,"duration":9},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084487989,"stop":1750084487994,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084487995,"stop":1750084488227,"duration":232},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084487996,"stop":1750084488227,"duration":231},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084488231,"stop":1750084490375,"duration":2144},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByText('Забыли пароль?').click","time":{"start":1750084490378,"stop":1750084490494,"duration":116},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750084490496,"stop":1750084490512,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084490512,"stop":1750084490517,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084490517,"stop":1750084490523,"duration":6},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084490517,"stop":1750084490517,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084490517,"stop":1750084490517,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"fa5b7df4c6ef2e35","status":"passed","time":{"start":1750075545986,"stop":1750075547264,"duration":1278}}],"categories":[],"tags":[]},"source":"accf5a2fef71e751.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9b993cf9e1dc548a.json b/allure-report/data/test-cases/af23cf42d42c22f0.json similarity index 98% rename from allure-report/data/test-cases/9b993cf9e1dc548a.json rename to allure-report/data/test-cases/af23cf42d42c22f0.json index 5aa17b4..c147208 100644 --- a/allure-report/data/test-cases/9b993cf9e1dc548a.json +++ b/allure-report/data/test-cases/af23cf42d42c22f0.json @@ -1 +1 @@ -{"uid":"9b993cf9e1dc548a","name":"Неверный код подтверждения","fullName":"ui/recovery/recover-negative.spec.ts:23:7","historyId":"31f03826b2a8da254be42b2d49bc35f3:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750075565970,"stop":1750075567264,"duration":1294},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075565972,"stop":1750075566091,"duration":119},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075565973,"stop":1750075565981,"duration":8},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075565974,"stop":1750075565980,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075565981,"stop":1750075566091,"duration":110},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075565982,"stop":1750075566091,"duration":109},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750075566093,"stop":1750075566826,"duration":733},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075566827,"stop":1750075566892,"duration":65},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750075566893,"stop":1750075566948,"duration":55},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750075566948,"stop":1750075567062,"duration":114},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750075567062,"stop":1750075567063,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(6)","time":{"start":1750075567064,"stop":1750075567069,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(5)","time":{"start":1750075567071,"stop":1750075567079,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(4)","time":{"start":1750075567080,"stop":1750075567090,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(3)","time":{"start":1750075567090,"stop":1750075567100,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(2)","time":{"start":1750075567101,"stop":1750075567108,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(1)","time":{"start":1750075567109,"stop":1750075567116,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075567117,"stop":1750075567159,"duration":42},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075567160,"stop":1750075567265,"duration":105},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075567265,"stop":1750075567269,"duration":4},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075567266,"stop":1750075567266,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075567266,"stop":1750075567266,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":21,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-1"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"9b993cf9e1dc548a.json","parameterValues":["webkit"]} \ No newline at end of file +{"uid":"af23cf42d42c22f0","name":"Неверный код подтверждения","fullName":"ui/recovery/recover-negative.spec.ts:23:7","historyId":"31f03826b2a8da254be42b2d49bc35f3:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750075565970,"stop":1750075567264,"duration":1294},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075565972,"stop":1750075566091,"duration":119},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075565973,"stop":1750075565981,"duration":8},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075565974,"stop":1750075565980,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075565981,"stop":1750075566091,"duration":110},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075565982,"stop":1750075566091,"duration":109},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750075566093,"stop":1750075566826,"duration":733},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075566827,"stop":1750075566892,"duration":65},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750075566893,"stop":1750075566948,"duration":55},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750075566948,"stop":1750075567062,"duration":114},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750075567062,"stop":1750075567063,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(6)","time":{"start":1750075567064,"stop":1750075567069,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(5)","time":{"start":1750075567071,"stop":1750075567079,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(4)","time":{"start":1750075567080,"stop":1750075567090,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(3)","time":{"start":1750075567090,"stop":1750075567100,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(2)","time":{"start":1750075567101,"stop":1750075567108,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(1)","time":{"start":1750075567109,"stop":1750075567116,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075567117,"stop":1750075567159,"duration":42},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075567160,"stop":1750075567265,"duration":105},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075567265,"stop":1750075567269,"duration":4},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075567266,"stop":1750075567266,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075567266,"stop":1750075567266,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":21,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-1"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"af23cf42d42c22f0.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b2e822e88eccaefd.json b/allure-report/data/test-cases/b2e822e88eccaefd.json new file mode 100644 index 0000000..dbc6b54 --- /dev/null +++ b/allure-report/data/test-cases/b2e822e88eccaefd.json @@ -0,0 +1 @@ +{"uid":"b2e822e88eccaefd","name":"Успешная регистрация нового пользователя","fullName":"ui/registration/register.spec.ts:6:7","historyId":"3562648cd3231e14b42a7151c17c62aa:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750175803854,"stop":1750175838015,"duration":34161},"status":"failed","statusMessage":"Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected)\n\nLocator: locator(':root')\nExpected pattern: /\\/login\\/confirmLogin/\nReceived string: \"https://ssas.dev.rdcenter.ru/login/registration\"\nCall log:\n - expect.toHaveURL with timeout 5000ms\n - waiting for locator(':root')\n 9 × locator resolved to …\n - unexpected value \"https://ssas.dev.rdcenter.ru/login/registration\"\n","statusTrace":"Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected)\n\nLocator: locator(':root')\nExpected pattern: /\\/login\\/confirmLogin/\nReceived string: \"https://ssas.dev.rdcenter.ru/login/registration\"\nCall log:\n - expect.toHaveURL with timeout 5000ms\n - waiting for locator(':root')\n 9 × locator resolved to …\n - unexpected value \"https://ssas.dev.rdcenter.ru/login/registration\"\n\n at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.spec.ts:30:24","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"failed","statusMessage":"Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected)\n\nLocator: locator(':root')\nExpected pattern: /\\/login\\/confirmLogin/\nReceived string: \"https://ssas.dev.rdcenter.ru/login/registration\"\nCall log:\n - expect.toHaveURL with timeout 5000ms\n - waiting for locator(':root')\n 9 × locator resolved to …\n - unexpected value \"https://ssas.dev.rdcenter.ru/login/registration\"\n","statusTrace":"Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected)\n\nLocator: locator(':root')\nExpected pattern: /\\/login\\/confirmLogin/\nReceived string: \"https://ssas.dev.rdcenter.ru/login/registration\"\nCall log:\n - expect.toHaveURL with timeout 5000ms\n - waiting for locator(':root')\n 9 × locator resolved to …\n - unexpected value \"https://ssas.dev.rdcenter.ru/login/registration\"\n\n at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.spec.ts:30:24","steps":[{"name":"Before Hooks","time":{"start":1750175803848,"stop":1750175806591,"duration":2743},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750175803851,"stop":1750175805130,"duration":1279},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750175803852,"stop":1750175805129,"duration":1277},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750175805131,"stop":1750175805991,"duration":860},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750175805132,"stop":1750175805990,"duration":858},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750175805992,"stop":1750175806591,"duration":599},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750175805992,"stop":1750175806591,"duration":599},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750175806595,"stop":1750175811250,"duration":4655},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Иван)","time":{"start":1750175811254,"stop":1750175812235,"duration":981},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Тестов)","time":{"start":1750175812237,"stop":1750175812839,"duration":602},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Александрович)","time":{"start":1750175812840,"stop":1750175813338,"duration":498},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёное звание*').click","time":{"start":1750175813341,"stop":1750175813827,"duration":486},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Доцент\"i)","time":{"start":1750175813830,"stop":1750175814326,"duration":496},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёная степень*').click","time":{"start":1750175814328,"stop":1750175814563,"duration":235},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Кандидат наук\"i)","time":{"start":1750175814566,"stop":1750175820848,"duration":6282},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Преподаватель)","time":{"start":1750175820849,"stop":1750175822257,"duration":1408},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(ЮФУ)","time":{"start":1750175822259,"stop":1750175822955,"duration":696},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest70036@example.com)","time":{"start":1750175822956,"stop":1750175823690,"duration":734},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(+7987070036)","time":{"start":1750175823691,"stop":1750175824311,"duration":620},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123)","time":{"start":1750175824312,"stop":1750175825289,"duration":977},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123)","time":{"start":1750175825291,"stop":1750175826522,"duration":1231},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750175826523,"stop":1750175829800,"duration":3277},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750175829803,"stop":1750175839233,"duration":9430},"status":"failed","statusMessage":"Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected)\n\nLocator: locator(':root')\nExpected pattern: /\\/login\\/confirmLogin/\nReceived string: \"https://ssas.dev.rdcenter.ru/login/registration\"\nCall log:\n - expect.toHaveURL with timeout 5000ms\n - waiting for locator(':root')\n 9 × locator resolved to …\n - unexpected value \"https://ssas.dev.rdcenter.ru/login/registration\"\n","statusTrace":"Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected)\n\nLocator: locator(':root')\nExpected pattern: /\\/login\\/confirmLogin/\nReceived string: \"https://ssas.dev.rdcenter.ru/login/registration\"\nCall log:\n - expect.toHaveURL with timeout 5000ms\n - waiting for locator(':root')\n 9 × locator resolved to …\n - unexpected value \"https://ssas.dev.rdcenter.ru/login/registration\"\n\n at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.spec.ts:30:24","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":true,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"_error-context-0","time":{"start":1750175839469,"stop":1750175839469,"duration":0},"status":"unknown","steps":[],"attachments":[{"uid":"d6c34e14eef6eba3","name":"_error-context-0","source":"d6c34e14eef6eba3.md","type":"text/markdown","size":5347}],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":1,"hasContent":true,"attachmentStep":true},{"name":"After Hooks","time":{"start":1750175839235,"stop":1750175839299,"duration":64},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750175839236,"stop":1750175839236,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750175839236,"stop":1750175839236,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":27,"shouldDisplayMessage":false,"attachmentsCount":1,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.spec.ts > Позитивные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-52528-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.spec.ts"},{"name":"subSuite","value":"Позитивные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"b2e822e88eccaefd.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b422c235cec2874a.json b/allure-report/data/test-cases/b422c235cec2874a.json new file mode 100644 index 0000000..eab8dc3 --- /dev/null +++ b/allure-report/data/test-cases/b422c235cec2874a.json @@ -0,0 +1 @@ +{"uid":"b422c235cec2874a","name":"Пароли не совпадают","fullName":"ui/recovery/recover-negative.spec.ts:56:7","historyId":"a7eaebb1e41fbbf13bf61195120b3ce9:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253490151,"stop":1750253491935,"duration":1784},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253490151,"stop":1750253490188,"duration":37},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253490152,"stop":1750253490156,"duration":4},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253490152,"stop":1750253490155,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253490156,"stop":1750253490188,"duration":32},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253490156,"stop":1750253490188,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750253490189,"stop":1750253491021,"duration":832},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750253491021,"stop":1750253491063,"duration":42},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750253491063,"stop":1750253491108,"duration":45},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750253491109,"stop":1750253491111,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253491112,"stop":1750253491180,"duration":68},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253491180,"stop":1750253491192,"duration":12},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253491192,"stop":1750253491197,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253491198,"stop":1750253491206,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253491207,"stop":1750253491218,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253491219,"stop":1750253491232,"duration":13},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750253491234,"stop":1750253491278,"duration":44},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750253491279,"stop":1750253491387,"duration":108},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!OtherPass123)","time":{"start":1750253491387,"stop":1750253491392,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750253491392,"stop":1750253491419,"duration":27},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253491419,"stop":1750253491423,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253491423,"stop":1750253491937,"duration":514},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253491423,"stop":1750253491423,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253491423,"stop":1750253491423,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-1"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"b422c235cec2874a.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b43137cb9a67fe72.json b/allure-report/data/test-cases/b43137cb9a67fe72.json new file mode 100644 index 0000000..da62a16 --- /dev/null +++ b/allure-report/data/test-cases/b43137cb9a67fe72.json @@ -0,0 +1 @@ +{"uid":"b43137cb9a67fe72","name":"Слишком длинное название организации","fullName":"ui/registration/register.negative.spec.ts:48:7","historyId":"26486147b8778ca2341563049d2a3728:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750252850889,"stop":1750252854138,"duration":3249},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252850889,"stop":1750252851098,"duration":209},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252850890,"stop":1750252850898,"duration":8},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252850890,"stop":1750252850897,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252850898,"stop":1750252851098,"duration":200},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252850898,"stop":1750252851098,"duration":200},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750252851099,"stop":1750252852544,"duration":1445},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Иван)","time":{"start":1750252852545,"stop":1750252852574,"duration":29},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Иванов)","time":{"start":1750252852575,"stop":1750252852585,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёное звание*').click","time":{"start":1750252852585,"stop":1750252852638,"duration":53},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Доцент\"i)","time":{"start":1750252852639,"stop":1750252852788,"duration":149},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёная степень*').click","time":{"start":1750252852790,"stop":1750252852936,"duration":146},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Кандидат наук\"i)","time":{"start":1750252852936,"stop":1750252853004,"duration":68},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Преподаватель)","time":{"start":1750252853005,"stop":1750252853025,"duration":20},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(ООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООО)","time":{"start":1750252853025,"stop":1750252853035,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(test1750252852545@example.com)","time":{"start":1750252853035,"stop":1750252853042,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(+79990646193)","time":{"start":1750252853043,"stop":1750252853052,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123)","time":{"start":1750252853053,"stop":1750252853060,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123)","time":{"start":1750252853061,"stop":1750252853067,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750252853067,"stop":1750252854018,"duration":951},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252854018,"stop":1750252854133,"duration":115},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252854134,"stop":1750252854139,"duration":5},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252854134,"stop":1750252854134,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252854134,"stop":1750252854134,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"b43137cb9a67fe72.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b47108b604f86692.json b/allure-report/data/test-cases/b47108b604f86692.json new file mode 100644 index 0000000..ca85037 --- /dev/null +++ b/allure-report/data/test-cases/b47108b604f86692.json @@ -0,0 +1 @@ +{"uid":"b47108b604f86692","name":"Неверный пароль","fullName":"ui/login/login.negative.spec.ts:7:7","historyId":"500ad758ee2db2bb60aa832fb0abbb94:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253541844,"stop":1750253543782,"duration":1938},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253541844,"stop":1750253541892,"duration":48},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253541845,"stop":1750253541847,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253541845,"stop":1750253541846,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253541847,"stop":1750253541892,"duration":45},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253541848,"stop":1750253541892,"duration":44},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750253541894,"stop":1750253542748,"duration":854},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750253542749,"stop":1750253542787,"duration":38},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(wrongpass)","time":{"start":1750253542788,"stop":1750253542828,"duration":40},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750253542829,"stop":1750253542868,"duration":39},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253542868,"stop":1750253542978,"duration":110},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253542978,"stop":1750253543783,"duration":805},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253542978,"stop":1750253542978,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253542979,"stop":1750253542979,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9646ec918f04fcf4","status":"passed","time":{"start":1750253474171,"stop":1750253478765,"duration":4594}},{"uid":"4217d835e952768e","status":"passed","time":{"start":1750252810863,"stop":1750252811922,"duration":1059}},{"uid":"a636711aeaf16eff","status":"passed","time":{"start":1750084489259,"stop":1750084490492,"duration":1233}},{"uid":"fa2d81f0904f0f1e","status":"passed","time":{"start":1750075547550,"stop":1750075548445,"duration":895}}],"categories":[],"tags":[]},"source":"b47108b604f86692.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b5a60ffd97b0ddc5.json b/allure-report/data/test-cases/b5a60ffd97b0ddc5.json new file mode 100644 index 0000000..3d20b2a --- /dev/null +++ b/allure-report/data/test-cases/b5a60ffd97b0ddc5.json @@ -0,0 +1 @@ +{"uid":"b5a60ffd97b0ddc5","name":"Оба поля пустые","fullName":"ui/login/login.negative.spec.ts:27:7","historyId":"58990385f74407307e4ace7ad02abf05:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253478299,"stop":1750253480150,"duration":1851},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253478299,"stop":1750253478345,"duration":46},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253478300,"stop":1750253478304,"duration":4},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253478300,"stop":1750253478302,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253478304,"stop":1750253478345,"duration":41},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253478304,"stop":1750253478345,"duration":41},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750253478346,"stop":1750253479275,"duration":929},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750253479277,"stop":1750253479301,"duration":24},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750253479301,"stop":1750253479343,"duration":42},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750253479344,"stop":1750253479389,"duration":45},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253479390,"stop":1750253479394,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253479395,"stop":1750253479397,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253479397,"stop":1750253480151,"duration":754},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253479397,"stop":1750253479397,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253479398,"stop":1750253479398,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"b5a60ffd97b0ddc5.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b60dd5ee0a1f44c8.json b/allure-report/data/test-cases/b60dd5ee0a1f44c8.json new file mode 100644 index 0000000..195fa12 --- /dev/null +++ b/allure-report/data/test-cases/b60dd5ee0a1f44c8.json @@ -0,0 +1 @@ +{"uid":"b60dd5ee0a1f44c8","name":"Некорректный email формат","fullName":"ui/registration/register.negative.spec.ts:28:7","historyId":"de8c598c53adc6e2133478f1b9141597:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253491941,"stop":1750253497999,"duration":6058},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253491941,"stop":1750253491979,"duration":38},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253491942,"stop":1750253491944,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253491942,"stop":1750253491943,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253491944,"stop":1750253491979,"duration":35},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253491944,"stop":1750253491979,"duration":35},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750253491981,"stop":1750253497271,"duration":5290},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(invalid-email)","time":{"start":1750253497271,"stop":1750253497292,"duration":21},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750253497293,"stop":1750253497342,"duration":49},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253497342,"stop":1750253497346,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253497346,"stop":1750253498001,"duration":655},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253497347,"stop":1750253497347,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253497347,"stop":1750253497347,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-1"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"b60dd5ee0a1f44c8.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b16b189690b6777f.json b/allure-report/data/test-cases/b60f6a0804ddbcf2.json similarity index 97% rename from allure-report/data/test-cases/b16b189690b6777f.json rename to allure-report/data/test-cases/b60f6a0804ddbcf2.json index 1d8fd20..226f2f4 100644 --- a/allure-report/data/test-cases/b16b189690b6777f.json +++ b/allure-report/data/test-cases/b60f6a0804ddbcf2.json @@ -1 +1 @@ -{"uid":"b16b189690b6777f","name":"Несуществующий email","fullName":"ui/login/login.negative.spec.ts:17:7","historyId":"69b9236bee03ff0034bfbd5addc25f93:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750075547613,"stop":1750075548776,"duration":1163},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075547613,"stop":1750075547672,"duration":59},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075547615,"stop":1750075547619,"duration":4},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075547615,"stop":1750075547617,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075547619,"stop":1750075547672,"duration":53},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075547620,"stop":1750075547671,"duration":51},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075547673,"stop":1750075548528,"duration":855},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(wrong@example.com)","time":{"start":1750075548529,"stop":1750075548583,"duration":54},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(anyPassword123)","time":{"start":1750075548584,"stop":1750075548625,"duration":41},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750075548626,"stop":1750075548671,"duration":45},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075548671,"stop":1750075548775,"duration":104},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075548776,"stop":1750075548779,"duration":3},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075548776,"stop":1750075548776,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075548776,"stop":1750075548776,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"b16b189690b6777f.json","parameterValues":["chromium"]} \ No newline at end of file +{"uid":"b60f6a0804ddbcf2","name":"Несуществующий email","fullName":"ui/login/login.negative.spec.ts:17:7","historyId":"69b9236bee03ff0034bfbd5addc25f93:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750075547613,"stop":1750075548776,"duration":1163},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075547613,"stop":1750075547672,"duration":59},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075547615,"stop":1750075547619,"duration":4},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075547615,"stop":1750075547617,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075547619,"stop":1750075547672,"duration":53},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075547620,"stop":1750075547671,"duration":51},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075547673,"stop":1750075548528,"duration":855},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(wrong@example.com)","time":{"start":1750075548529,"stop":1750075548583,"duration":54},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(anyPassword123)","time":{"start":1750075548584,"stop":1750075548625,"duration":41},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750075548626,"stop":1750075548671,"duration":45},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075548671,"stop":1750075548775,"duration":104},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075548776,"stop":1750075548779,"duration":3},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075548776,"stop":1750075548776,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075548776,"stop":1750075548776,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"b60f6a0804ddbcf2.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b69c438811cecbc2.json b/allure-report/data/test-cases/b69c438811cecbc2.json new file mode 100644 index 0000000..1ebf715 --- /dev/null +++ b/allure-report/data/test-cases/b69c438811cecbc2.json @@ -0,0 +1 @@ +{"uid":"b69c438811cecbc2","name":"Оба поля пустые","fullName":"ui/login/login.negative.spec.ts:27:7","historyId":"58990385f74407307e4ace7ad02abf05:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750252841468,"stop":1750252843449,"duration":1981},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252841464,"stop":1750252841711,"duration":247},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252841469,"stop":1750252841486,"duration":17},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252841469,"stop":1750252841486,"duration":17},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252841486,"stop":1750252841711,"duration":225},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252841486,"stop":1750252841710,"duration":224},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750252841711,"stop":1750252843342,"duration":1631},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750252843344,"stop":1750252843376,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750252843377,"stop":1750252843384,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750252843386,"stop":1750252843433,"duration":47},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252843434,"stop":1750252843439,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252843440,"stop":1750252843443,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252843443,"stop":1750252843450,"duration":7},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252843443,"stop":1750252843443,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252843443,"stop":1750252843443,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"b69c438811cecbc2.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b6cf932c7feaf975.json b/allure-report/data/test-cases/b6cf932c7feaf975.json new file mode 100644 index 0000000..4efdfca --- /dev/null +++ b/allure-report/data/test-cases/b6cf932c7feaf975.json @@ -0,0 +1 @@ +{"uid":"b6cf932c7feaf975","name":"Слишком длинная должность","fullName":"ui/registration/register.negative.spec.ts:38:7","historyId":"2214c0f917091cfcda832cd03e01bb76:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750253610248,"stop":1750253612680,"duration":2432},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253610247,"stop":1750253610437,"duration":190},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253610248,"stop":1750253610252,"duration":4},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253610248,"stop":1750253610250,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253610253,"stop":1750253610437,"duration":184},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253610253,"stop":1750253610437,"duration":184},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750253610438,"stop":1750253612520,"duration":2082},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX)","time":{"start":1750253612521,"stop":1750253612551,"duration":30},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750253612552,"stop":1750253612637,"duration":85},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253612637,"stop":1750253612645,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253612646,"stop":1750253612681,"duration":35},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253612646,"stop":1750253612646,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253612646,"stop":1750253612646,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"174c38dfb4172d0a","status":"passed","time":{"start":1750252849868,"stop":1750252851419,"duration":1551}}],"categories":[],"tags":[]},"source":"b6cf932c7feaf975.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ee7d99c2943f739e.json b/allure-report/data/test-cases/b713258d480550af.json similarity index 97% rename from allure-report/data/test-cases/ee7d99c2943f739e.json rename to allure-report/data/test-cases/b713258d480550af.json index 12c334e..122aad3 100644 --- a/allure-report/data/test-cases/ee7d99c2943f739e.json +++ b/allure-report/data/test-cases/b713258d480550af.json @@ -1 +1 @@ -{"uid":"ee7d99c2943f739e","name":"Несуществующий email","fullName":"ui/login/login.negative.spec.ts:17:7","historyId":"69b9236bee03ff0034bfbd5addc25f93:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750075555286,"stop":1750075556929,"duration":1643},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075555280,"stop":1750075555566,"duration":286},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075555288,"stop":1750075555318,"duration":30},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075555289,"stop":1750075555317,"duration":28},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075555318,"stop":1750075555566,"duration":248},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075555319,"stop":1750075555566,"duration":247},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075555567,"stop":1750075556628,"duration":1061},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(wrong@example.com)","time":{"start":1750075556637,"stop":1750075556676,"duration":39},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(anyPassword123)","time":{"start":1750075556677,"stop":1750075556707,"duration":30},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750075556708,"stop":1750075556791,"duration":83},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075556794,"stop":1750075556914,"duration":120},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075556914,"stop":1750075556932,"duration":18},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075556915,"stop":1750075556915,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075556915,"stop":1750075556915,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"ee7d99c2943f739e.json","parameterValues":["firefox"]} \ No newline at end of file +{"uid":"b713258d480550af","name":"Несуществующий email","fullName":"ui/login/login.negative.spec.ts:17:7","historyId":"69b9236bee03ff0034bfbd5addc25f93:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750075555286,"stop":1750075556929,"duration":1643},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075555280,"stop":1750075555566,"duration":286},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075555288,"stop":1750075555318,"duration":30},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075555289,"stop":1750075555317,"duration":28},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075555318,"stop":1750075555566,"duration":248},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075555319,"stop":1750075555566,"duration":247},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075555567,"stop":1750075556628,"duration":1061},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(wrong@example.com)","time":{"start":1750075556637,"stop":1750075556676,"duration":39},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(anyPassword123)","time":{"start":1750075556677,"stop":1750075556707,"duration":30},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750075556708,"stop":1750075556791,"duration":83},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075556794,"stop":1750075556914,"duration":120},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075556914,"stop":1750075556932,"duration":18},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075556915,"stop":1750075556915,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075556915,"stop":1750075556915,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"b713258d480550af.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b804adb591f93bce.json b/allure-report/data/test-cases/b804adb591f93bce.json new file mode 100644 index 0000000..79a07f0 --- /dev/null +++ b/allure-report/data/test-cases/b804adb591f93bce.json @@ -0,0 +1 @@ +{"uid":"b804adb591f93bce","name":"Переход по ссылке \"Забыли пароль?\"","fullName":"ui/login/login.link.spec.ts:6:5","historyId":"91fcabcb669557e4ddb559c077420e45:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750253580476,"stop":1750253584678,"duration":4202},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253580478,"stop":1750253582353,"duration":1875},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750253580483,"stop":1750253581462,"duration":979},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750253580485,"stop":1750253581462,"duration":977},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253581465,"stop":1750253581671,"duration":206},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253581469,"stop":1750253581639,"duration":170},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253581671,"stop":1750253582353,"duration":682},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253581672,"stop":1750253582352,"duration":680},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750253582355,"stop":1750253585543,"duration":3188},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByText('Забыли пароль?').click","time":{"start":1750253585545,"stop":1750253585599,"duration":54},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750253585602,"stop":1750253585611,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253585611,"stop":1750253585619,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253585619,"stop":1750253585665,"duration":46},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253585620,"stop":1750253585620,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253585620,"stop":1750253585620,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"26ac51230d86a7d3","status":"passed","time":{"start":1750252827699,"stop":1750252840712,"duration":13013}},{"uid":"56122822cca60081","status":"passed","time":{"start":1750084494465,"stop":1750084496561,"duration":2096}},{"uid":"1a4440aa0c72497a","status":"passed","time":{"start":1750075551914,"stop":1750075554459,"duration":2545}}],"categories":[],"tags":[]},"source":"b804adb591f93bce.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b8861ed3561357c1.json b/allure-report/data/test-cases/b8861ed3561357c1.json new file mode 100644 index 0000000..3f67788 --- /dev/null +++ b/allure-report/data/test-cases/b8861ed3561357c1.json @@ -0,0 +1 @@ +{"uid":"b8861ed3561357c1","name":"Некорректный формат email","fullName":"ui/login/login.negative.spec.ts:46:7","historyId":"e5764a911de0175f8f7118313ae14544:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253543980,"stop":1750253554437,"duration":10457},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253543980,"stop":1750253544025,"duration":45},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253543981,"stop":1750253543983,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253543981,"stop":1750253543982,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253543983,"stop":1750253544025,"duration":42},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253543984,"stop":1750253544025,"duration":41},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750253544026,"stop":1750253549025,"duration":4999},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(invalid-email)","time":{"start":1750253549027,"stop":1750253549081,"duration":54},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(anyPassword123)","time":{"start":1750253549082,"stop":1750253549143,"duration":61},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750253549145,"stop":1750253549219,"duration":74},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253549220,"stop":1750253549234,"duration":14},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253549234,"stop":1750253554439,"duration":5205},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253549235,"stop":1750253549235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253549235,"stop":1750253549235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6abfa6eb137629f5","status":"passed","time":{"start":1750253479799,"stop":1750253482986,"duration":3187}},{"uid":"abcac302f2be266d","status":"passed","time":{"start":1750252811927,"stop":1750252813032,"duration":1105}},{"uid":"f51af709c5965053","status":"passed","time":{"start":1750084490746,"stop":1750084491640,"duration":894}},{"uid":"d5e9b04c857dd621","status":"passed","time":{"start":1750075548464,"stop":1750075549142,"duration":678}}],"categories":[],"tags":[]},"source":"b8861ed3561357c1.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b8c734422c01553e.json b/allure-report/data/test-cases/b8c734422c01553e.json new file mode 100644 index 0000000..bf21ada --- /dev/null +++ b/allure-report/data/test-cases/b8c734422c01553e.json @@ -0,0 +1 @@ +{"uid":"b8c734422c01553e","name":"Успешная регистрация нового пользователя","fullName":"ui/registration/register.spec.ts:6:7","historyId":"3562648cd3231e14b42a7151c17c62aa:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750175892514,"stop":1750175942070,"duration":49556},"status":"failed","statusMessage":"Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected)\n\nLocator: locator(':root')\nExpected pattern: /\\/login\\/confirmLogin/\nReceived string: \"https://ssas.dev.rdcenter.ru/login/registration\"\nCall log:\n - expect.toHaveURL with timeout 5000ms\n - waiting for locator(':root')\n 9 × locator resolved to …\n - unexpected value \"https://ssas.dev.rdcenter.ru/login/registration\"\n","statusTrace":"Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected)\n\nLocator: locator(':root')\nExpected pattern: /\\/login\\/confirmLogin/\nReceived string: \"https://ssas.dev.rdcenter.ru/login/registration\"\nCall log:\n - expect.toHaveURL with timeout 5000ms\n - waiting for locator(':root')\n 9 × locator resolved to …\n - unexpected value \"https://ssas.dev.rdcenter.ru/login/registration\"\n\n at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.spec.ts:30:24","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"failed","statusMessage":"Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected)\n\nLocator: locator(':root')\nExpected pattern: /\\/login\\/confirmLogin/\nReceived string: \"https://ssas.dev.rdcenter.ru/login/registration\"\nCall log:\n - expect.toHaveURL with timeout 5000ms\n - waiting for locator(':root')\n 9 × locator resolved to …\n - unexpected value \"https://ssas.dev.rdcenter.ru/login/registration\"\n","statusTrace":"Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected)\n\nLocator: locator(':root')\nExpected pattern: /\\/login\\/confirmLogin/\nReceived string: \"https://ssas.dev.rdcenter.ru/login/registration\"\nCall log:\n - expect.toHaveURL with timeout 5000ms\n - waiting for locator(':root')\n 9 × locator resolved to …\n - unexpected value \"https://ssas.dev.rdcenter.ru/login/registration\"\n\n at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.spec.ts:30:24","steps":[{"name":"Before Hooks","time":{"start":1750175892509,"stop":1750175894583,"duration":2074},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750175892512,"stop":1750175893333,"duration":821},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750175892513,"stop":1750175893333,"duration":820},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750175893334,"stop":1750175894199,"duration":865},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750175893335,"stop":1750175894198,"duration":863},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750175894199,"stop":1750175894583,"duration":384},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750175894199,"stop":1750175894583,"duration":384},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750175894586,"stop":1750175906079,"duration":11493},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Иван)","time":{"start":1750175906082,"stop":1750175906649,"duration":567},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Тестов)","time":{"start":1750175906651,"stop":1750175907491,"duration":840},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Александрович)","time":{"start":1750175907493,"stop":1750175908173,"duration":680},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёное звание*').click","time":{"start":1750175908175,"stop":1750175908823,"duration":648},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Доцент\"i)","time":{"start":1750175908825,"stop":1750175910184,"duration":1359},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёная степень*').click","time":{"start":1750175910185,"stop":1750175910863,"duration":678},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Кандидат наук\"i)","time":{"start":1750175910866,"stop":1750175912078,"duration":1212},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Преподаватель)","time":{"start":1750175912079,"stop":1750175912692,"duration":613},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(ЮФУ)","time":{"start":1750175912693,"stop":1750175913307,"duration":614},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest30703@example.com)","time":{"start":1750175913308,"stop":1750175913956,"duration":648},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(+7987030703)","time":{"start":1750175913957,"stop":1750175914571,"duration":614},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123)","time":{"start":1750175914572,"stop":1750175915361,"duration":789},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123)","time":{"start":1750175915363,"stop":1750175916105,"duration":742},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750175916107,"stop":1750175917446,"duration":1339},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750175917451,"stop":1750175942840,"duration":25389},"status":"failed","statusMessage":"Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected)\n\nLocator: locator(':root')\nExpected pattern: /\\/login\\/confirmLogin/\nReceived string: \"https://ssas.dev.rdcenter.ru/login/registration\"\nCall log:\n - expect.toHaveURL with timeout 5000ms\n - waiting for locator(':root')\n 9 × locator resolved to …\n - unexpected value \"https://ssas.dev.rdcenter.ru/login/registration\"\n","statusTrace":"Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected)\n\nLocator: locator(':root')\nExpected pattern: /\\/login\\/confirmLogin/\nReceived string: \"https://ssas.dev.rdcenter.ru/login/registration\"\nCall log:\n - expect.toHaveURL with timeout 5000ms\n - waiting for locator(':root')\n 9 × locator resolved to …\n - unexpected value \"https://ssas.dev.rdcenter.ru/login/registration\"\n\n at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.spec.ts:30:24","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":true,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"_error-context-0","time":{"start":1750175943091,"stop":1750175943091,"duration":0},"status":"unknown","steps":[],"attachments":[{"uid":"12d528de2ce81b2b","name":"_error-context-0","source":"12d528de2ce81b2b.md","type":"text/markdown","size":5347}],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":1,"hasContent":true,"attachmentStep":true},{"name":"After Hooks","time":{"start":1750175942842,"stop":1750175942894,"duration":52},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750175942843,"stop":1750175942843,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750175942843,"stop":1750175942843,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":27,"shouldDisplayMessage":false,"attachmentsCount":1,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.spec.ts > Позитивные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-52773-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.spec.ts"},{"name":"subSuite","value":"Позитивные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"b8c734422c01553e.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/909368716fad6c28.json b/allure-report/data/test-cases/b90ee0e788535b2a.json similarity index 91% rename from allure-report/data/test-cases/909368716fad6c28.json rename to allure-report/data/test-cases/b90ee0e788535b2a.json index b89a1ba..068ff44 100644 --- a/allure-report/data/test-cases/909368716fad6c28.json +++ b/allure-report/data/test-cases/b90ee0e788535b2a.json @@ -1 +1 @@ -{"uid":"909368716fad6c28","name":"Пользователь должен успешно залогиниться с валидными данными","fullName":"ui/login/login.spec.ts:7:7","historyId":"92a5ca35180a4cbe902714b987a6bf44:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750084500146,"stop":1750084501725,"duration":1579},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084500147,"stop":1750084500343,"duration":196},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084500148,"stop":1750084500155,"duration":7},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084500149,"stop":1750084500155,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084500155,"stop":1750084500343,"duration":188},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084500156,"stop":1750084500343,"duration":187},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084500344,"stop":1750084501397,"duration":1053},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084501399,"stop":1750084501487,"duration":88},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750084501488,"stop":1750084501516,"duration":28},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750084501517,"stop":1750084501574,"duration":57},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750084501575,"stop":1750084501705,"duration":130},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084501706,"stop":1750084501710,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084501711,"stop":1750084501732,"duration":21},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084501712,"stop":1750084501712,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084501715,"stop":1750084501715,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.spec.ts > Авторизация пользователя"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-1"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.spec.ts"},{"name":"subSuite","value":"Авторизация пользователя"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d5f1f8610d1aa8a1","status":"passed","time":{"start":1750075556942,"stop":1750075558396,"duration":1454}}],"categories":[],"tags":[]},"source":"909368716fad6c28.json","parameterValues":["firefox"]} \ No newline at end of file +{"uid":"b90ee0e788535b2a","name":"Пользователь должен успешно залогиниться с валидными данными","fullName":"ui/login/login.spec.ts:7:7","historyId":"92a5ca35180a4cbe902714b987a6bf44:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750084500146,"stop":1750084501725,"duration":1579},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084500147,"stop":1750084500343,"duration":196},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084500148,"stop":1750084500155,"duration":7},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084500149,"stop":1750084500155,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084500155,"stop":1750084500343,"duration":188},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084500156,"stop":1750084500343,"duration":187},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084500344,"stop":1750084501397,"duration":1053},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084501399,"stop":1750084501487,"duration":88},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750084501488,"stop":1750084501516,"duration":28},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750084501517,"stop":1750084501574,"duration":57},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750084501575,"stop":1750084501705,"duration":130},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084501706,"stop":1750084501710,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084501711,"stop":1750084501732,"duration":21},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084501712,"stop":1750084501712,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084501715,"stop":1750084501715,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.spec.ts > Авторизация пользователя"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-1"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.spec.ts"},{"name":"subSuite","value":"Авторизация пользователя"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"b90ee0e788535b2a.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b91a2a6632c62b45.json b/allure-report/data/test-cases/b91a2a6632c62b45.json new file mode 100644 index 0000000..6f24904 --- /dev/null +++ b/allure-report/data/test-cases/b91a2a6632c62b45.json @@ -0,0 +1 @@ +{"uid":"b91a2a6632c62b45","name":"Переход по ссылке \"Зарегистрируйтесь\"","fullName":"ui/login/login.link.spec.ts:15:5","historyId":"62db9603623bba26b6305edb541ef4fa:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750252808952,"stop":1750252810556,"duration":1604},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252808946,"stop":1750252809507,"duration":561},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750252808950,"stop":1750252809253,"duration":303},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750252808951,"stop":1750252809252,"duration":301},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252809254,"stop":1750252809271,"duration":17},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252809255,"stop":1750252809269,"duration":14},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252809271,"stop":1750252809507,"duration":236},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252809274,"stop":1750252809507,"duration":233},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750252809511,"stop":1750252810655,"duration":1144},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByText('Зарегистрируйтесь').click","time":{"start":1750252810657,"stop":1750252810784,"duration":127},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750252810785,"stop":1750252810836,"duration":51},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252810838,"stop":1750252810847,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252810847,"stop":1750252810856,"duration":9},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252810848,"stop":1750252810848,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252810848,"stop":1750252810848,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"b91a2a6632c62b45.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e07c24690f801b74.json b/allure-report/data/test-cases/b9e74dca0abfc2a9.json similarity index 94% rename from allure-report/data/test-cases/e07c24690f801b74.json rename to allure-report/data/test-cases/b9e74dca0abfc2a9.json index 05807d3..e3dd68a 100644 --- a/allure-report/data/test-cases/e07c24690f801b74.json +++ b/allure-report/data/test-cases/b9e74dca0abfc2a9.json @@ -1 +1 @@ -{"uid":"e07c24690f801b74","name":"Некорректный новый пароль","fullName":"ui/recovery/recover-negative.spec.ts:34:7","historyId":"18246cf63350a71f5b46012e257bafcf:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750084492220,"stop":1750084493759,"duration":1539},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084492221,"stop":1750084492265,"duration":44},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084492224,"stop":1750084492226,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084492224,"stop":1750084492226,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084492227,"stop":1750084492265,"duration":38},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084492227,"stop":1750084492265,"duration":38},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750084492266,"stop":1750084493315,"duration":1049},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084493316,"stop":1750084493350,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750084493351,"stop":1750084493380,"duration":29},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750084493381,"stop":1750084493382,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084493382,"stop":1750084493487,"duration":105},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084493487,"stop":1750084493494,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084493497,"stop":1750084493520,"duration":23},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084493521,"stop":1750084493532,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084493537,"stop":1750084493552,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084493554,"stop":1750084493565,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084493567,"stop":1750084493617,"duration":50},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(123)","time":{"start":1750084493618,"stop":1750084493705,"duration":87},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(123)","time":{"start":1750084493706,"stop":1750084493714,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084493715,"stop":1750084493754,"duration":39},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084493754,"stop":1750084493757,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084493757,"stop":1750084493763,"duration":6},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084493758,"stop":1750084493758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084493758,"stop":1750084493758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-1"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"869d29ee93a3b194","status":"passed","time":{"start":1750075549657,"stop":1750075550644,"duration":987}}],"categories":[],"tags":[]},"source":"e07c24690f801b74.json","parameterValues":["chromium"]} \ No newline at end of file +{"uid":"b9e74dca0abfc2a9","name":"Некорректный новый пароль","fullName":"ui/recovery/recover-negative.spec.ts:34:7","historyId":"18246cf63350a71f5b46012e257bafcf:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750084492220,"stop":1750084493759,"duration":1539},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084492221,"stop":1750084492265,"duration":44},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084492224,"stop":1750084492226,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084492224,"stop":1750084492226,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084492227,"stop":1750084492265,"duration":38},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084492227,"stop":1750084492265,"duration":38},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750084492266,"stop":1750084493315,"duration":1049},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084493316,"stop":1750084493350,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750084493351,"stop":1750084493380,"duration":29},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750084493381,"stop":1750084493382,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084493382,"stop":1750084493487,"duration":105},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084493487,"stop":1750084493494,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084493497,"stop":1750084493520,"duration":23},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084493521,"stop":1750084493532,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084493537,"stop":1750084493552,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084493554,"stop":1750084493565,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084493567,"stop":1750084493617,"duration":50},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(123)","time":{"start":1750084493618,"stop":1750084493705,"duration":87},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(123)","time":{"start":1750084493706,"stop":1750084493714,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084493715,"stop":1750084493754,"duration":39},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084493754,"stop":1750084493757,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084493757,"stop":1750084493763,"duration":6},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084493758,"stop":1750084493758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084493758,"stop":1750084493758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-1"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"b9e74dca0abfc2a9.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ba9633d5087da82b.json b/allure-report/data/test-cases/ba9633d5087da82b.json new file mode 100644 index 0000000..9a532a5 --- /dev/null +++ b/allure-report/data/test-cases/ba9633d5087da82b.json @@ -0,0 +1 @@ +{"uid":"ba9633d5087da82b","name":"Слишком длинная должность","fullName":"ui/registration/register.negative.spec.ts:38:7","historyId":"2214c0f917091cfcda832cd03e01bb76:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253497296,"stop":1750253503798,"duration":6502},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253497296,"stop":1750253497341,"duration":45},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253497298,"stop":1750253497301,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253497298,"stop":1750253497300,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253497302,"stop":1750253497341,"duration":39},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253497302,"stop":1750253497341,"duration":39},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750253497344,"stop":1750253503021,"duration":5677},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX)","time":{"start":1750253503023,"stop":1750253503050,"duration":27},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750253503051,"stop":1750253503096,"duration":45},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253503097,"stop":1750253503155,"duration":58},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253503155,"stop":1750253503801,"duration":646},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253503156,"stop":1750253503156,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253503156,"stop":1750253503156,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"ba9633d5087da82b.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bb2df3efa4b7ab83.json b/allure-report/data/test-cases/bb2df3efa4b7ab83.json new file mode 100644 index 0000000..93e7e36 --- /dev/null +++ b/allure-report/data/test-cases/bb2df3efa4b7ab83.json @@ -0,0 +1 @@ +{"uid":"bb2df3efa4b7ab83","name":"Слишком длинное название организации","fullName":"ui/registration/register.negative.spec.ts:48:7","historyId":"26486147b8778ca2341563049d2a3728:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253498002,"stop":1750253504069,"duration":6067},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253498002,"stop":1750253498043,"duration":41},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253498003,"stop":1750253498006,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253498003,"stop":1750253498005,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253498006,"stop":1750253498043,"duration":37},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253498007,"stop":1750253498043,"duration":36},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750253498044,"stop":1750253503306,"duration":5262},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Иван)","time":{"start":1750253503311,"stop":1750253503351,"duration":40},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Иванов)","time":{"start":1750253503352,"stop":1750253503360,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёное звание*').click","time":{"start":1750253503361,"stop":1750253503409,"duration":48},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Доцент\"i)","time":{"start":1750253503410,"stop":1750253503476,"duration":66},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёная степень*').click","time":{"start":1750253503476,"stop":1750253503593,"duration":117},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Кандидат наук\"i)","time":{"start":1750253503594,"stop":1750253503641,"duration":47},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Преподаватель)","time":{"start":1750253503642,"stop":1750253503651,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(ООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООО)","time":{"start":1750253503652,"stop":1750253503658,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(test1750253503306@example.com)","time":{"start":1750253503659,"stop":1750253503668,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(+79990969196)","time":{"start":1750253503669,"stop":1750253503678,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123)","time":{"start":1750253503679,"stop":1750253503701,"duration":22},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123)","time":{"start":1750253503702,"stop":1750253503744,"duration":42},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750253503745,"stop":1750253503799,"duration":54},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253503799,"stop":1750253503906,"duration":107},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253503906,"stop":1750253504071,"duration":165},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253503906,"stop":1750253503906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253503906,"stop":1750253503906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-1"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"bb2df3efa4b7ab83.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4e6608570791e516.json b/allure-report/data/test-cases/bbdce211ee32ed80.json similarity index 97% rename from allure-report/data/test-cases/4e6608570791e516.json rename to allure-report/data/test-cases/bbdce211ee32ed80.json index b982637..7331dde 100644 --- a/allure-report/data/test-cases/4e6608570791e516.json +++ b/allure-report/data/test-cases/bbdce211ee32ed80.json @@ -1 +1 @@ -{"uid":"4e6608570791e516","name":"has title","fullName":"example.spec.ts:3:5","historyId":"3a2a809b453af4fd564578d1a27f3e45:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750075545967,"stop":1750075547168,"duration":1201},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075545959,"stop":1750075546572,"duration":613},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750075545964,"stop":1750075546322,"duration":358},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750075545965,"stop":1750075546322,"duration":357},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075546324,"stop":1750075546365,"duration":41},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075546333,"stop":1750075546362,"duration":29},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075546365,"stop":1750075546572,"duration":207},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075546366,"stop":1750075546572,"duration":206},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(https://playwright.dev/)","time":{"start":1750075546574,"stop":1750075547350,"duration":776},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveTitle","time":{"start":1750075547352,"stop":1750075547404,"duration":52},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075547405,"stop":1750075547525,"duration":120},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075547405,"stop":1750075547405,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075547405,"stop":1750075547405,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > chromium > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"example.spec.ts"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"4e6608570791e516.json","parameterValues":["chromium"]} \ No newline at end of file +{"uid":"bbdce211ee32ed80","name":"has title","fullName":"example.spec.ts:3:5","historyId":"3a2a809b453af4fd564578d1a27f3e45:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750075545967,"stop":1750075547168,"duration":1201},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075545959,"stop":1750075546572,"duration":613},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750075545964,"stop":1750075546322,"duration":358},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750075545965,"stop":1750075546322,"duration":357},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075546324,"stop":1750075546365,"duration":41},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075546333,"stop":1750075546362,"duration":29},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075546365,"stop":1750075546572,"duration":207},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075546366,"stop":1750075546572,"duration":206},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(https://playwright.dev/)","time":{"start":1750075546574,"stop":1750075547350,"duration":776},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveTitle","time":{"start":1750075547352,"stop":1750075547404,"duration":52},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075547405,"stop":1750075547525,"duration":120},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075547405,"stop":1750075547405,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075547405,"stop":1750075547405,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > chromium > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"example.spec.ts"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"bbdce211ee32ed80.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bdc4f898eab7c232.json b/allure-report/data/test-cases/bdc4f898eab7c232.json new file mode 100644 index 0000000..1fe63e0 --- /dev/null +++ b/allure-report/data/test-cases/bdc4f898eab7c232.json @@ -0,0 +1 @@ +{"uid":"bdc4f898eab7c232","name":"Успешная регистрация нового пользователя","fullName":"ui/registration/register.spec.ts:6:7","historyId":"3562648cd3231e14b42a7151c17c62aa:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750252851086,"stop":1750252854766,"duration":3680},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252851086,"stop":1750252851288,"duration":202},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252851087,"stop":1750252851094,"duration":7},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252851087,"stop":1750252851093,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252851094,"stop":1750252851288,"duration":194},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252851095,"stop":1750252851288,"duration":193},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750252851288,"stop":1750252853439,"duration":2151},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Иван)","time":{"start":1750252853440,"stop":1750252853481,"duration":41},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Тестов)","time":{"start":1750252853482,"stop":1750252853489,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Александрович)","time":{"start":1750252853489,"stop":1750252853497,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёное звание*').click","time":{"start":1750252853497,"stop":1750252853553,"duration":56},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Доцент\"i)","time":{"start":1750252853553,"stop":1750252853602,"duration":49},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёная степень*').click","time":{"start":1750252853603,"stop":1750252853732,"duration":129},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Кандидат наук\"i)","time":{"start":1750252853732,"stop":1750252854154,"duration":422},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Преподаватель)","time":{"start":1750252854155,"stop":1750252854164,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(ЮФУ)","time":{"start":1750252854164,"stop":1750252854175,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest17716@example.com)","time":{"start":1750252854176,"stop":1750252854184,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(+79000017716)","time":{"start":1750252854184,"stop":1750252854198,"duration":14},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750252854199,"stop":1750252854221,"duration":22},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750252854222,"stop":1750252854239,"duration":17},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750252854239,"stop":1750252854305,"duration":66},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750252854306,"stop":1750252854677,"duration":371},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252854678,"stop":1750252854754,"duration":76},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252854754,"stop":1750252854768,"duration":14},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252854754,"stop":1750252854754,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252854754,"stop":1750252854754,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":25,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.spec.ts"},{"name":"titlePath","value":" > firefox > ui/registration/register.spec.ts > Позитивные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-3"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/registration/register.spec.ts"},{"name":"subSuite","value":"Позитивные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"bdc4f898eab7c232.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bdc589133542e6a0.json b/allure-report/data/test-cases/bdc589133542e6a0.json new file mode 100644 index 0000000..49333d9 --- /dev/null +++ b/allure-report/data/test-cases/bdc589133542e6a0.json @@ -0,0 +1 @@ +{"uid":"bdc589133542e6a0","name":"Отправка пустой формы","fullName":"ui/registration/register.negative.spec.ts:6:7","historyId":"61b0fd9a6b9153c787b71ef3413cea92:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750252847824,"stop":1750252849508,"duration":1684},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252847824,"stop":1750252848034,"duration":210},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252847827,"stop":1750252847840,"duration":13},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252847828,"stop":1750252847839,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252847840,"stop":1750252848034,"duration":194},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252847840,"stop":1750252848034,"duration":194},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750252848036,"stop":1750252849406,"duration":1370},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750252849408,"stop":1750252849481,"duration":73},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.allTextContents(div[name=\"error\"] >> internal:has-text=\"Поле обязательно для заполнения\"i)","time":{"start":1750252849482,"stop":1750252849499,"duration":17},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeGreaterThan","time":{"start":1750252849500,"stop":1750252849500,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252849500,"stop":1750252849505,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252849505,"stop":1750252849511,"duration":6},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252849506,"stop":1750252849506,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252849506,"stop":1750252849506,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"bdc589133542e6a0.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bde11e0db442031c.json b/allure-report/data/test-cases/bde11e0db442031c.json new file mode 100644 index 0000000..bb54839 --- /dev/null +++ b/allure-report/data/test-cases/bde11e0db442031c.json @@ -0,0 +1 @@ +{"uid":"bde11e0db442031c","name":"has title","fullName":"example.spec.ts:3:5","historyId":"3a2a809b453af4fd564578d1a27f3e45:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750253612661,"stop":1750253615520,"duration":2859},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253612662,"stop":1750253613917,"duration":1255},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750253612665,"stop":1750253613063,"duration":398},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750253612666,"stop":1750253613063,"duration":397},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253613063,"stop":1750253613231,"duration":168},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253613064,"stop":1750253613228,"duration":164},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253613231,"stop":1750253613917,"duration":686},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253613232,"stop":1750253613916,"duration":684},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(https://playwright.dev/)","time":{"start":1750253613922,"stop":1750253615828,"duration":1906},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveTitle","time":{"start":1750253615830,"stop":1750253615849,"duration":19},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253615849,"stop":1750253615922,"duration":73},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253615849,"stop":1750253615849,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253615849,"stop":1750253615849,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > webkit > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-3"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"example.spec.ts"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1bb7e55e3db2d758","status":"passed","time":{"start":1750252852132,"stop":1750252854191,"duration":2059}},{"uid":"c2aa97da7624b285","status":"passed","time":{"start":1750084504438,"stop":1750084505941,"duration":1503}},{"uid":"730c428a5e2bd40e","status":"passed","time":{"start":1750075561393,"stop":1750075562947,"duration":1554}}],"categories":[],"tags":[]},"source":"bde11e0db442031c.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bdebd619900bc3fe.json b/allure-report/data/test-cases/bdebd619900bc3fe.json new file mode 100644 index 0000000..2b380ea --- /dev/null +++ b/allure-report/data/test-cases/bdebd619900bc3fe.json @@ -0,0 +1 @@ +{"uid":"bdebd619900bc3fe","name":"Пользователь успешно восстанавливает пароль","fullName":"ui/recovery/recover-password.spec.ts:7:7","historyId":"1779c735aef9d62c071557455e74e57f:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750253602246,"stop":1750253610240,"duration":7994},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253602246,"stop":1750253602411,"duration":165},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253602247,"stop":1750253602251,"duration":4},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253602247,"stop":1750253602249,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253602251,"stop":1750253602411,"duration":160},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253602252,"stop":1750253602411,"duration":159},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750253602411,"stop":1750253609578,"duration":7167},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750253609580,"stop":1750253609616,"duration":36},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750253609616,"stop":1750253609686,"duration":70},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750253609687,"stop":1750253609796,"duration":109},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750253609797,"stop":1750253609803,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253609804,"stop":1750253609813,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253609813,"stop":1750253609821,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253609822,"stop":1750253609828,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253609829,"stop":1750253609836,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253609837,"stop":1750253609844,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253609844,"stop":1750253609852,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750253609853,"stop":1750253609908,"duration":55},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253609909,"stop":1750253610016,"duration":107},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750253610016,"stop":1750253610025,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750253610026,"stop":1750253610033,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750253610034,"stop":1750253610090,"duration":56},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750253610090,"stop":1750253610202,"duration":112},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253610202,"stop":1750253610208,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253610208,"stop":1750253610242,"duration":34},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253610208,"stop":1750253610208,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253610208,"stop":1750253610208,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":26,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-password.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-password.spec.ts > Восстановление пароля — позитивные сценарии"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-password.spec.ts"},{"name":"subSuite","value":"Восстановление пароля — позитивные сценарии"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"edd25bdbd6ddf0ea","status":"passed","time":{"start":1750252847675,"stop":1750252850886,"duration":3211}},{"uid":"969ca192d0de91e9","status":"passed","time":{"start":1750084503378,"stop":1750084505830,"duration":2452}},{"uid":"d9eef4e67e689958","status":"passed","time":{"start":1750075560041,"stop":1750075561748,"duration":1707}}],"categories":[],"tags":[]},"source":"bdebd619900bc3fe.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bdfb8cd05c21f618.json b/allure-report/data/test-cases/bdfb8cd05c21f618.json new file mode 100644 index 0000000..8b3531c --- /dev/null +++ b/allure-report/data/test-cases/bdfb8cd05c21f618.json @@ -0,0 +1 @@ +{"uid":"bdfb8cd05c21f618","name":"Оба поля пустые","fullName":"ui/login/login.negative.spec.ts:27:7","historyId":"58990385f74407307e4ace7ad02abf05:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253542026,"stop":1750253543994,"duration":1968},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253542026,"stop":1750253542070,"duration":44},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253542027,"stop":1750253542031,"duration":4},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253542028,"stop":1750253542029,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253542032,"stop":1750253542070,"duration":38},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253542032,"stop":1750253542069,"duration":37},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750253542070,"stop":1750253543087,"duration":1017},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750253543087,"stop":1750253543119,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750253543119,"stop":1750253543154,"duration":35},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750253543155,"stop":1750253543187,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253543187,"stop":1750253543191,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253543191,"stop":1750253543193,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253543194,"stop":1750253543996,"duration":802},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253543194,"stop":1750253543194,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253543195,"stop":1750253543195,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b5a60ffd97b0ddc5","status":"passed","time":{"start":1750253478299,"stop":1750253480150,"duration":1851}},{"uid":"a27adfbe837c297f","status":"passed","time":{"start":1750252811790,"stop":1750252812688,"duration":898}},{"uid":"e7be0225bfc5fe60","status":"passed","time":{"start":1750084490497,"stop":1750084491239,"duration":742}},{"uid":"d6ca9443d65f6e59","status":"passed","time":{"start":1750075547614,"stop":1750075548586,"duration":972}}],"categories":[],"tags":[]},"source":"bdfb8cd05c21f618.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bfaa389e6b880a54.json b/allure-report/data/test-cases/bfaa389e6b880a54.json new file mode 100644 index 0000000..f80ae9c --- /dev/null +++ b/allure-report/data/test-cases/bfaa389e6b880a54.json @@ -0,0 +1 @@ +{"uid":"bfaa389e6b880a54","name":"Слишком длинная должность","fullName":"ui/registration/register.negative.spec.ts:38:7","historyId":"2214c0f917091cfcda832cd03e01bb76:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750253631638,"stop":1750253633505,"duration":1867},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253631638,"stop":1750253631754,"duration":116},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253631639,"stop":1750253631643,"duration":4},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253631639,"stop":1750253631641,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253631643,"stop":1750253631754,"duration":111},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253631643,"stop":1750253631754,"duration":111},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750253631755,"stop":1750253633321,"duration":1566},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX)","time":{"start":1750253633321,"stop":1750253633377,"duration":56},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750253633378,"stop":1750253633430,"duration":52},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253633430,"stop":1750253633437,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253633437,"stop":1750253633506,"duration":69},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253633437,"stop":1750253633437,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253633437,"stop":1750253633438,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-1"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"55c6c53c698ff383","status":"passed","time":{"start":1750252862644,"stop":1750252863718,"duration":1074}}],"categories":[],"tags":[]},"source":"bfaa389e6b880a54.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9c0b65beee8ee273.json b/allure-report/data/test-cases/c0b32ee9d692f94f.json similarity index 96% rename from allure-report/data/test-cases/9c0b65beee8ee273.json rename to allure-report/data/test-cases/c0b32ee9d692f94f.json index 9042f9b..7c31c51 100644 --- a/allure-report/data/test-cases/9c0b65beee8ee273.json +++ b/allure-report/data/test-cases/c0b32ee9d692f94f.json @@ -1 +1 @@ -{"uid":"9c0b65beee8ee273","name":"Регистр в email (User@test.com ≠ user@test.com)","fullName":"ui/login/login.negative.spec.ts:58:7","historyId":"cc4ad4b40ef726af11b2bd4f5523dbe0:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750075548592,"stop":1750075549589,"duration":997},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075548592,"stop":1750075548637,"duration":45},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075548593,"stop":1750075548594,"duration":1},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075548593,"stop":1750075548594,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075548594,"stop":1750075548637,"duration":43},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075548595,"stop":1750075548637,"duration":42},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075548638,"stop":1750075549334,"duration":696},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Autotest@Example.com)","time":{"start":1750075549335,"stop":1750075549387,"duration":52},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750075549387,"stop":1750075549431,"duration":44},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750075549432,"stop":1750075549473,"duration":41},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075549473,"stop":1750075549581,"duration":108},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075549581,"stop":1750075549591,"duration":10},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075549582,"stop":1750075549582,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075549582,"stop":1750075549582,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"tag","value":"test.com"},{"name":"tag","value":"test.com)"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["test.com","test.com)"]},"source":"9c0b65beee8ee273.json","parameterValues":["chromium"]} \ No newline at end of file +{"uid":"c0b32ee9d692f94f","name":"Регистр в email (User@test.com ≠ user@test.com)","fullName":"ui/login/login.negative.spec.ts:58:7","historyId":"cc4ad4b40ef726af11b2bd4f5523dbe0:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750075548592,"stop":1750075549589,"duration":997},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075548592,"stop":1750075548637,"duration":45},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075548593,"stop":1750075548594,"duration":1},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075548593,"stop":1750075548594,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075548594,"stop":1750075548637,"duration":43},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075548595,"stop":1750075548637,"duration":42},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075548638,"stop":1750075549334,"duration":696},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Autotest@Example.com)","time":{"start":1750075549335,"stop":1750075549387,"duration":52},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750075549387,"stop":1750075549431,"duration":44},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750075549432,"stop":1750075549473,"duration":41},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075549473,"stop":1750075549581,"duration":108},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075549581,"stop":1750075549591,"duration":10},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075549582,"stop":1750075549582,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075549582,"stop":1750075549582,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"tag","value":"test.com"},{"name":"tag","value":"test.com)"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["test.com","test.com)"]},"source":"c0b32ee9d692f94f.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c185014f0ec6ca57.json b/allure-report/data/test-cases/c185014f0ec6ca57.json new file mode 100644 index 0000000..3fbc8a8 --- /dev/null +++ b/allure-report/data/test-cases/c185014f0ec6ca57.json @@ -0,0 +1 @@ +{"uid":"c185014f0ec6ca57","name":"Некорректный email формат","fullName":"ui/registration/register.negative.spec.ts:28:7","historyId":"de8c598c53adc6e2133478f1b9141597:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750252849516,"stop":1750252851246,"duration":1730},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252849517,"stop":1750252849754,"duration":237},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252849518,"stop":1750252849523,"duration":5},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252849518,"stop":1750252849523,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252849524,"stop":1750252849753,"duration":229},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252849525,"stop":1750252849753,"duration":228},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750252849754,"stop":1750252851110,"duration":1356},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(invalid-email)","time":{"start":1750252851113,"stop":1750252851141,"duration":28},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750252851141,"stop":1750252851233,"duration":92},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252851233,"stop":1750252851239,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252851239,"stop":1750252851249,"duration":10},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252851239,"stop":1750252851239,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252851240,"stop":1750252851240,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"c185014f0ec6ca57.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c1ab22b3f9166450.json b/allure-report/data/test-cases/c1ab22b3f9166450.json new file mode 100644 index 0000000..55be248 --- /dev/null +++ b/allure-report/data/test-cases/c1ab22b3f9166450.json @@ -0,0 +1 @@ +{"uid":"c1ab22b3f9166450","name":"Неверный код подтверждения","fullName":"ui/recovery/recover-negative.spec.ts:23:7","historyId":"31f03826b2a8da254be42b2d49bc35f3:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253556666,"stop":1750253562794,"duration":6128},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":true,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253556666,"stop":1750253556712,"duration":46},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253556667,"stop":1750253556669,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253556667,"stop":1750253556668,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253556669,"stop":1750253556712,"duration":43},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253556670,"stop":1750253556712,"duration":42},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750253556715,"stop":1750253561882,"duration":5167},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750253561884,"stop":1750253561932,"duration":48},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750253561934,"stop":1750253562049,"duration":115},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750253562050,"stop":1750253562058,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750253562059,"stop":1750253562073,"duration":14},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(6)","time":{"start":1750253562074,"stop":1750253562095,"duration":21},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(5)","time":{"start":1750253562096,"stop":1750253562104,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(4)","time":{"start":1750253562104,"stop":1750253562119,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(3)","time":{"start":1750253562120,"stop":1750253562139,"duration":19},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(2)","time":{"start":1750253562142,"stop":1750253562166,"duration":24},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(1)","time":{"start":1750253562168,"stop":1750253562185,"duration":17},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750253562185,"stop":1750253562229,"duration":44},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253562230,"stop":1750253562337,"duration":107},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253562337,"stop":1750253562795,"duration":458},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253562338,"stop":1750253562338,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253562338,"stop":1750253562338,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":21,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"99addb7b948ef30d","status":"passed","time":{"start":1750253484384,"stop":1750253490149,"duration":5765}},{"uid":"3eb5a3d8be79245","status":"failed","statusDetails":"Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected)\n\nLocator: locator(':root')\nExpected pattern: /\\/recoverpassword\\/checkemail/\nReceived string: \"https://ssas.dev.rdcenter.ru/recoverpassword\"\nCall log:\n - expect.toHaveURL with timeout 5000ms\n - waiting for locator(':root')\n 9 × locator resolved to …\n - unexpected value \"https://ssas.dev.rdcenter.ru/recoverpassword\"\n","time":{"start":1750252814013,"stop":1750252819880,"duration":5867}},{"uid":"86f543b393f28fa","status":"passed","time":{"start":1750084492172,"stop":1750084493410,"duration":1238}},{"uid":"4dace988f27a41e3","status":"passed","time":{"start":1750075549609,"stop":1750075550703,"duration":1094}}],"categories":[],"tags":[]},"source":"c1ab22b3f9166450.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/13a3c47523dc168e.json b/allure-report/data/test-cases/c2aa97da7624b285.json similarity index 91% rename from allure-report/data/test-cases/13a3c47523dc168e.json rename to allure-report/data/test-cases/c2aa97da7624b285.json index 1cae3e0..26e6578 100644 --- a/allure-report/data/test-cases/13a3c47523dc168e.json +++ b/allure-report/data/test-cases/c2aa97da7624b285.json @@ -1 +1 @@ -{"uid":"13a3c47523dc168e","name":"has title","fullName":"example.spec.ts:3:5","historyId":"3a2a809b453af4fd564578d1a27f3e45:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750084504438,"stop":1750084505941,"duration":1503},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084504439,"stop":1750084505580,"duration":1141},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750084504442,"stop":1750084504942,"duration":500},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750084504445,"stop":1750084504941,"duration":496},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084504942,"stop":1750084505024,"duration":82},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084504943,"stop":1750084505023,"duration":80},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084505025,"stop":1750084505580,"duration":555},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084505030,"stop":1750084505580,"duration":550},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(https://playwright.dev/)","time":{"start":1750084505582,"stop":1750084506408,"duration":826},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveTitle","time":{"start":1750084506410,"stop":1750084506439,"duration":29},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084506439,"stop":1750084506446,"duration":7},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084506440,"stop":1750084506440,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084506440,"stop":1750084506440,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > webkit > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-1"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"example.spec.ts"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5b2dae25be621258","status":"passed","time":{"start":1750075561393,"stop":1750075562947,"duration":1554}}],"categories":[],"tags":[]},"source":"13a3c47523dc168e.json","parameterValues":["webkit"]} \ No newline at end of file +{"uid":"c2aa97da7624b285","name":"has title","fullName":"example.spec.ts:3:5","historyId":"3a2a809b453af4fd564578d1a27f3e45:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750084504438,"stop":1750084505941,"duration":1503},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084504439,"stop":1750084505580,"duration":1141},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750084504442,"stop":1750084504942,"duration":500},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750084504445,"stop":1750084504941,"duration":496},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084504942,"stop":1750084505024,"duration":82},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084504943,"stop":1750084505023,"duration":80},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084505025,"stop":1750084505580,"duration":555},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084505030,"stop":1750084505580,"duration":550},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(https://playwright.dev/)","time":{"start":1750084505582,"stop":1750084506408,"duration":826},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveTitle","time":{"start":1750084506410,"stop":1750084506439,"duration":29},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084506439,"stop":1750084506446,"duration":7},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084506440,"stop":1750084506440,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084506440,"stop":1750084506440,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > webkit > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-1"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"example.spec.ts"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"c2aa97da7624b285.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c2cda5efc44ad114.json b/allure-report/data/test-cases/c2cda5efc44ad114.json new file mode 100644 index 0000000..df6f2da --- /dev/null +++ b/allure-report/data/test-cases/c2cda5efc44ad114.json @@ -0,0 +1 @@ +{"uid":"c2cda5efc44ad114","name":"Отправка пустой формы","fullName":"ui/registration/register.negative.spec.ts:6:7","historyId":"61b0fd9a6b9153c787b71ef3413cea92:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253491472,"stop":1750253504132,"duration":12660},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253491472,"stop":1750253491516,"duration":44},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253491472,"stop":1750253491477,"duration":5},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253491473,"stop":1750253491475,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253491477,"stop":1750253491516,"duration":39},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253491477,"stop":1750253491515,"duration":38},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750253491517,"stop":1750253503130,"duration":11613},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750253503133,"stop":1750253503262,"duration":129},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.allTextContents(div[name=\"error\"] >> internal:has-text=\"Поле обязательно для заполнения\"i)","time":{"start":1750253503266,"stop":1750253503324,"duration":58},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeGreaterThan","time":{"start":1750253503325,"stop":1750253503330,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253503326,"stop":1750253503342,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253503343,"stop":1750253504133,"duration":790},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253503343,"stop":1750253503343,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253503343,"stop":1750253503343,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"c2cda5efc44ad114.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c49a8b85caadc9a6.json b/allure-report/data/test-cases/c49a8b85caadc9a6.json new file mode 100644 index 0000000..c1880c4 --- /dev/null +++ b/allure-report/data/test-cases/c49a8b85caadc9a6.json @@ -0,0 +1 @@ +{"uid":"c49a8b85caadc9a6","name":"Некорректный email формат","fullName":"ui/registration/register.negative.spec.ts:28:7","historyId":"de8c598c53adc6e2133478f1b9141597:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750252484903,"stop":1750252508228,"duration":23325},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252484903,"stop":1750252485950,"duration":1047},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252484904,"stop":1750252485691,"duration":787},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252484905,"stop":1750252485690,"duration":785},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252485691,"stop":1750252485950,"duration":259},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252485691,"stop":1750252485950,"duration":259},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750252485951,"stop":1750252489880,"duration":3929},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(invalid-email)","time":{"start":1750252489884,"stop":1750252490917,"duration":1033},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750252490920,"stop":1750252501964,"duration":11044},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252501966,"stop":1750252508201,"duration":6235},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252508202,"stop":1750252508236,"duration":34},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252508202,"stop":1750252508202,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252508202,"stop":1750252508203,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-57209-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"c49a8b85caadc9a6.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c5782f52a87f0420.json b/allure-report/data/test-cases/c5782f52a87f0420.json new file mode 100644 index 0000000..812f8a1 --- /dev/null +++ b/allure-report/data/test-cases/c5782f52a87f0420.json @@ -0,0 +1 @@ +{"uid":"c5782f52a87f0420","name":"Некорректное имя и фамилия (слишком длинные)","fullName":"ui/registration/register.negative.spec.ts:16:7","historyId":"7134a02a04b606099de5c920fb62990a:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253491650,"stop":1750253502879,"duration":11229},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253491649,"stop":1750253491693,"duration":44},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253491650,"stop":1750253491657,"duration":7},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253491650,"stop":1750253491652,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253491658,"stop":1750253491693,"duration":35},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253491658,"stop":1750253491692,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750253491695,"stop":1750253497574,"duration":5879},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(ААААААААААААААААААААААААААААААААААААААААААААААААААА)","time":{"start":1750253497575,"stop":1750253497599,"duration":24},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(БББББББББББББББББББББББББББББББББББББББББББББББББББ)","time":{"start":1750253497600,"stop":1750253497609,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750253497609,"stop":1750253497656,"duration":47},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253497657,"stop":1750253497660,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253497661,"stop":1750253497695,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253497695,"stop":1750253502881,"duration":5186},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253497695,"stop":1750253497695,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253497696,"stop":1750253497696,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"c5782f52a87f0420.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c5a5985d074991f8.json b/allure-report/data/test-cases/c5a5985d074991f8.json new file mode 100644 index 0000000..a9e978d --- /dev/null +++ b/allure-report/data/test-cases/c5a5985d074991f8.json @@ -0,0 +1 @@ +{"uid":"c5a5985d074991f8","name":"Пустое поле \"Повторите пароль\"","fullName":"ui/recovery/recover-negative.spec.ts:45:7","historyId":"e6d2fb91f0b85b95c3962ffc860dddd7:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750253600779,"stop":1750253603897,"duration":3118},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253600779,"stop":1750253600935,"duration":156},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253600780,"stop":1750253600785,"duration":5},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253600780,"stop":1750253600782,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253600786,"stop":1750253600935,"duration":149},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253600786,"stop":1750253600935,"duration":149},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750253600936,"stop":1750253603296,"duration":2360},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750253603297,"stop":1750253603328,"duration":31},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750253603328,"stop":1750253603399,"duration":71},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750253603400,"stop":1750253603407,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253603407,"stop":1750253603504,"duration":97},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253603504,"stop":1750253603527,"duration":23},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253603527,"stop":1750253603546,"duration":19},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253603547,"stop":1750253603559,"duration":12},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253603560,"stop":1750253603574,"duration":14},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253603575,"stop":1750253603586,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750253603587,"stop":1750253603646,"duration":59},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750253603647,"stop":1750253603773,"duration":126},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750253603774,"stop":1750253603785,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750253603786,"stop":1750253603856,"duration":70},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253603856,"stop":1750253603865,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253603865,"stop":1750253603898,"duration":33},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253603865,"stop":1750253603865,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253603865,"stop":1750253603865,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-1"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1c00b342119d156f","status":"passed","time":{"start":1750252845854,"stop":1750252847920,"duration":2066}},{"uid":"fe24f987bb94a7ce","status":"passed","time":{"start":1750084502343,"stop":1750084503756,"duration":1413}},{"uid":"6fd2aa1e54397b07","status":"passed","time":{"start":1750075558622,"stop":1750075560743,"duration":2121}}],"categories":[],"tags":[]},"source":"c5a5985d074991f8.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c6765b274dbb81fb.json b/allure-report/data/test-cases/c6765b274dbb81fb.json new file mode 100644 index 0000000..8740ba6 --- /dev/null +++ b/allure-report/data/test-cases/c6765b274dbb81fb.json @@ -0,0 +1 @@ +{"uid":"c6765b274dbb81fb","name":"Пользователь должен успешно залогиниться с валидными данными","fullName":"ui/login/login.spec.ts:7:7","historyId":"92a5ca35180a4cbe902714b987a6bf44:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750252843456,"stop":1750252845296,"duration":1840},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252843456,"stop":1750252843626,"duration":170},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252843457,"stop":1750252843464,"duration":7},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252843458,"stop":1750252843463,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252843465,"stop":1750252843626,"duration":161},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252843465,"stop":1750252843626,"duration":161},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750252843627,"stop":1750252845066,"duration":1439},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750252845069,"stop":1750252845101,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750252845102,"stop":1750252845114,"duration":12},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750252845117,"stop":1750252845169,"duration":52},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750252845170,"stop":1750252845285,"duration":115},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252845286,"stop":1750252845289,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252845289,"stop":1750252845297,"duration":8},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252845290,"stop":1750252845290,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252845290,"stop":1750252845290,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.spec.ts > Авторизация пользователя"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.spec.ts"},{"name":"subSuite","value":"Авторизация пользователя"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"c6765b274dbb81fb.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bf45d49e3153cac1.json b/allure-report/data/test-cases/c722785b3141ca2f.json similarity index 97% rename from allure-report/data/test-cases/bf45d49e3153cac1.json rename to allure-report/data/test-cases/c722785b3141ca2f.json index a099ef6..da72575 100644 --- a/allure-report/data/test-cases/bf45d49e3153cac1.json +++ b/allure-report/data/test-cases/c722785b3141ca2f.json @@ -1 +1 @@ -{"uid":"bf45d49e3153cac1","name":"Некорректный формат email","fullName":"ui/login/login.negative.spec.ts:46:7","historyId":"e5764a911de0175f8f7118313ae14544:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750075564621,"stop":1750075565733,"duration":1112},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075564621,"stop":1750075564749,"duration":128},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075564622,"stop":1750075564626,"duration":4},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075564622,"stop":1750075564625,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075564626,"stop":1750075564749,"duration":123},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075564627,"stop":1750075564749,"duration":122},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075564750,"stop":1750075565518,"duration":768},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(invalid-email)","time":{"start":1750075565518,"stop":1750075565611,"duration":93},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(anyPassword123)","time":{"start":1750075565612,"stop":1750075565625,"duration":13},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750075565626,"stop":1750075565717,"duration":91},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075565719,"stop":1750075565725,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075565725,"stop":1750075565735,"duration":10},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075565725,"stop":1750075565725,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075565725,"stop":1750075565725,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-0"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"bf45d49e3153cac1.json","parameterValues":["webkit"]} \ No newline at end of file +{"uid":"c722785b3141ca2f","name":"Некорректный формат email","fullName":"ui/login/login.negative.spec.ts:46:7","historyId":"e5764a911de0175f8f7118313ae14544:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750075564621,"stop":1750075565733,"duration":1112},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075564621,"stop":1750075564749,"duration":128},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075564622,"stop":1750075564626,"duration":4},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075564622,"stop":1750075564625,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075564626,"stop":1750075564749,"duration":123},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075564627,"stop":1750075564749,"duration":122},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075564750,"stop":1750075565518,"duration":768},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(invalid-email)","time":{"start":1750075565518,"stop":1750075565611,"duration":93},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(anyPassword123)","time":{"start":1750075565612,"stop":1750075565625,"duration":13},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750075565626,"stop":1750075565717,"duration":91},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075565719,"stop":1750075565725,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075565725,"stop":1750075565735,"duration":10},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075565725,"stop":1750075565725,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075565725,"stop":1750075565725,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-0"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"c722785b3141ca2f.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a1fd8ee0914c6a57.json b/allure-report/data/test-cases/c765f18eca292609.json similarity index 91% rename from allure-report/data/test-cases/a1fd8ee0914c6a57.json rename to allure-report/data/test-cases/c765f18eca292609.json index 9a41853..dbbbba4 100644 --- a/allure-report/data/test-cases/a1fd8ee0914c6a57.json +++ b/allure-report/data/test-cases/c765f18eca292609.json @@ -1 +1 @@ -{"uid":"a1fd8ee0914c6a57","name":"Несуществующий email","fullName":"ui/recovery/recover-negative.spec.ts:15:7","historyId":"c118be77fa2af6f0e0052ec7489ba66c:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750084492074,"stop":1750084492970,"duration":896},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084492074,"stop":1750084492116,"duration":42},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084492075,"stop":1750084492077,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084492075,"stop":1750084492077,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084492077,"stop":1750084492116,"duration":39},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084492078,"stop":1750084492116,"duration":38},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750084492118,"stop":1750084492800,"duration":682},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(nobody@example.com)","time":{"start":1750084492800,"stop":1750084492842,"duration":42},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750084492843,"stop":1750084492963,"duration":120},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084492965,"stop":1750084492967,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084492967,"stop":1750084492971,"duration":4},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084492968,"stop":1750084492968,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084492968,"stop":1750084492968,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a819326431f0ed05","status":"passed","time":{"start":1750075549597,"stop":1750075550468,"duration":871}}],"categories":[],"tags":[]},"source":"a1fd8ee0914c6a57.json","parameterValues":["chromium"]} \ No newline at end of file +{"uid":"c765f18eca292609","name":"Несуществующий email","fullName":"ui/recovery/recover-negative.spec.ts:15:7","historyId":"c118be77fa2af6f0e0052ec7489ba66c:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750084492074,"stop":1750084492970,"duration":896},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084492074,"stop":1750084492116,"duration":42},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084492075,"stop":1750084492077,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084492075,"stop":1750084492077,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084492077,"stop":1750084492116,"duration":39},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084492078,"stop":1750084492116,"duration":38},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750084492118,"stop":1750084492800,"duration":682},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(nobody@example.com)","time":{"start":1750084492800,"stop":1750084492842,"duration":42},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750084492843,"stop":1750084492963,"duration":120},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084492965,"stop":1750084492967,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084492967,"stop":1750084492971,"duration":4},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084492968,"stop":1750084492968,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084492968,"stop":1750084492968,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"c765f18eca292609.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c7cd56bdce8656af.json b/allure-report/data/test-cases/c7cd56bdce8656af.json new file mode 100644 index 0000000..72c91cc --- /dev/null +++ b/allure-report/data/test-cases/c7cd56bdce8656af.json @@ -0,0 +1 @@ +{"uid":"c7cd56bdce8656af","name":"has title","fullName":"example.spec.ts:3:5","historyId":"3a2a809b453af4fd564578d1a27f3e45:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253539581,"stop":1750253541528,"duration":1947},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253539580,"stop":1750253540164,"duration":584},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750253539587,"stop":1750253539894,"duration":307},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750253539588,"stop":1750253539894,"duration":306},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253539895,"stop":1750253539973,"duration":78},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253539900,"stop":1750253539926,"duration":26},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253539973,"stop":1750253540164,"duration":191},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253539982,"stop":1750253540164,"duration":182},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(https://playwright.dev/)","time":{"start":1750253540167,"stop":1750253541729,"duration":1562},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveTitle","time":{"start":1750253541731,"stop":1750253541765,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253541765,"stop":1750253541838,"duration":73},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253541766,"stop":1750253541766,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253541766,"stop":1750253541766,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > chromium > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"example.spec.ts"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"132f4ab6d9074007","status":"passed","time":{"start":1750253470947,"stop":1750253485298,"duration":14351}},{"uid":"e41cf65ceae660f9","status":"passed","time":{"start":1750252808950,"stop":1750252811481,"duration":2531}},{"uid":"2318eb083d7e242a","status":"passed","time":{"start":1750084487580,"stop":1750084490628,"duration":3048}},{"uid":"bbdce211ee32ed80","status":"passed","time":{"start":1750075545967,"stop":1750075547168,"duration":1201}}],"categories":[],"tags":[]},"source":"c7cd56bdce8656af.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c837cbd8e20dc069.json b/allure-report/data/test-cases/c837cbd8e20dc069.json new file mode 100644 index 0000000..5f06c11 --- /dev/null +++ b/allure-report/data/test-cases/c837cbd8e20dc069.json @@ -0,0 +1 @@ +{"uid":"c837cbd8e20dc069","name":"Неверный пароль","fullName":"ui/login/login.negative.spec.ts:7:7","historyId":"500ad758ee2db2bb60aa832fb0abbb94:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750252835856,"stop":1750252841676,"duration":5820},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252835855,"stop":1750252835949,"duration":94},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252835857,"stop":1750252835877,"duration":20},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252835857,"stop":1750252835877,"duration":20},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252835877,"stop":1750252835949,"duration":72},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252835878,"stop":1750252835949,"duration":71},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750252835950,"stop":1750252841424,"duration":5474},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750252841426,"stop":1750252841465,"duration":39},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(wrongpass)","time":{"start":1750252841467,"stop":1750252841483,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750252841484,"stop":1750252841555,"duration":71},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252841556,"stop":1750252841670,"duration":114},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252841671,"stop":1750252841678,"duration":7},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252841671,"stop":1750252841671,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252841671,"stop":1750252841671,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"c837cbd8e20dc069.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c9725be2aa9236a5.json b/allure-report/data/test-cases/c9725be2aa9236a5.json new file mode 100644 index 0000000..b76e8d7 --- /dev/null +++ b/allure-report/data/test-cases/c9725be2aa9236a5.json @@ -0,0 +1 @@ +{"uid":"c9725be2aa9236a5","name":"Пустое поле \"Повторите пароль\"","fullName":"ui/recovery/recover-negative.spec.ts:45:7","historyId":"e6d2fb91f0b85b95c3962ffc860dddd7:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750252860235,"stop":1750252861771,"duration":1536},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252860235,"stop":1750252860364,"duration":129},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252860236,"stop":1750252860239,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252860236,"stop":1750252860238,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252860239,"stop":1750252860364,"duration":125},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252860239,"stop":1750252860364,"duration":125},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750252860365,"stop":1750252861414,"duration":1049},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750252861414,"stop":1750252861437,"duration":23},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750252861437,"stop":1750252861485,"duration":48},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750252861486,"stop":1750252861487,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252861488,"stop":1750252861567,"duration":79},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252861568,"stop":1750252861574,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252861574,"stop":1750252861579,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252861579,"stop":1750252861583,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252861584,"stop":1750252861592,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252861593,"stop":1750252861599,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750252861600,"stop":1750252861638,"duration":38},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750252861638,"stop":1750252861725,"duration":87},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750252861725,"stop":1750252861733,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750252861733,"stop":1750252861767,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252861768,"stop":1750252861770,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252861771,"stop":1750252861773,"duration":2},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252861771,"stop":1750252861771,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252861771,"stop":1750252861771,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-0"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"c9725be2aa9236a5.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c989d1690bcfa46f.json b/allure-report/data/test-cases/c989d1690bcfa46f.json new file mode 100644 index 0000000..fa5faff --- /dev/null +++ b/allure-report/data/test-cases/c989d1690bcfa46f.json @@ -0,0 +1 @@ +{"uid":"c989d1690bcfa46f","name":"Некорректный новый пароль","fullName":"ui/recovery/recover-negative.spec.ts:34:7","historyId":"18246cf63350a71f5b46012e257bafcf:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253556746,"stop":1750253562562,"duration":5816},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253556746,"stop":1750253556781,"duration":35},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253556746,"stop":1750253556749,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253556747,"stop":1750253556748,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253556749,"stop":1750253556781,"duration":32},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253556749,"stop":1750253556780,"duration":31},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750253556781,"stop":1750253561786,"duration":5005},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750253561787,"stop":1750253561817,"duration":30},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750253561817,"stop":1750253561924,"duration":107},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750253561925,"stop":1750253561938,"duration":13},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253561938,"stop":1750253561992,"duration":54},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253561992,"stop":1750253562013,"duration":21},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253562013,"stop":1750253562025,"duration":12},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253562025,"stop":1750253562042,"duration":17},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253562045,"stop":1750253562057,"duration":12},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253562057,"stop":1750253562081,"duration":24},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750253562082,"stop":1750253562125,"duration":43},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(123)","time":{"start":1750253562126,"stop":1750253562183,"duration":57},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(123)","time":{"start":1750253562184,"stop":1750253562197,"duration":13},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750253562200,"stop":1750253562251,"duration":51},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253562252,"stop":1750253562256,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253562256,"stop":1750253562563,"duration":307},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253562256,"stop":1750253562256,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253562256,"stop":1750253562256,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"fc4729bcf77444f4","status":"passed","time":{"start":1750253485706,"stop":1750253491464,"duration":5758}},{"uid":"380d6f4e96430ef8","status":"passed","time":{"start":1750252814582,"stop":1750252824686,"duration":10104}},{"uid":"b9e74dca0abfc2a9","status":"passed","time":{"start":1750084492220,"stop":1750084493759,"duration":1539}},{"uid":"d46de6aefcc41697","status":"passed","time":{"start":1750075549657,"stop":1750075550644,"duration":987}}],"categories":[],"tags":[]},"source":"c989d1690bcfa46f.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cb2666f6af0f0d4a.json b/allure-report/data/test-cases/cb2666f6af0f0d4a.json new file mode 100644 index 0000000..9719218 --- /dev/null +++ b/allure-report/data/test-cases/cb2666f6af0f0d4a.json @@ -0,0 +1 @@ +{"uid":"cb2666f6af0f0d4a","name":"Некорректное имя и фамилия (слишком длинные)","fullName":"ui/registration/register.negative.spec.ts:16:7","historyId":"7134a02a04b606099de5c920fb62990a:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750252824657,"stop":1750252826030,"duration":1373},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252824657,"stop":1750252824709,"duration":52},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252824658,"stop":1750252824659,"duration":1},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252824658,"stop":1750252824659,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252824659,"stop":1750252824709,"duration":50},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252824660,"stop":1750252824709,"duration":49},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750252824711,"stop":1750252825939,"duration":1228},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(ААААААААААААААААААААААААААААААААААААААААААААААААААА)","time":{"start":1750252825939,"stop":1750252825990,"duration":51},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(БББББББББББББББББББББББББББББББББББББББББББББББББББ)","time":{"start":1750252825990,"stop":1750252825994,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750252825995,"stop":1750252826024,"duration":29},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252826024,"stop":1750252826026,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252826026,"stop":1750252826028,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252826028,"stop":1750252826032,"duration":4},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252826028,"stop":1750252826028,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252826028,"stop":1750252826028,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"cb2666f6af0f0d4a.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ce94b9aa72086b4e.json b/allure-report/data/test-cases/cd8f5ff233116d8e.json similarity index 92% rename from allure-report/data/test-cases/ce94b9aa72086b4e.json rename to allure-report/data/test-cases/cd8f5ff233116d8e.json index e21b044..af15860 100644 --- a/allure-report/data/test-cases/ce94b9aa72086b4e.json +++ b/allure-report/data/test-cases/cd8f5ff233116d8e.json @@ -1 +1 @@ -{"uid":"ce94b9aa72086b4e","name":"Несуществующий email","fullName":"ui/login/login.negative.spec.ts:17:7","historyId":"69b9236bee03ff0034bfbd5addc25f93:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750084506686,"stop":1750084507723,"duration":1037},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084506686,"stop":1750084506822,"duration":136},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084506688,"stop":1750084506692,"duration":4},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084506688,"stop":1750084506692,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084506693,"stop":1750084506822,"duration":129},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084506694,"stop":1750084506822,"duration":128},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084506825,"stop":1750084507438,"duration":613},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(wrong@example.com)","time":{"start":1750084507443,"stop":1750084507543,"duration":100},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(anyPassword123)","time":{"start":1750084507544,"stop":1750084507555,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750084507555,"stop":1750084507607,"duration":52},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084507607,"stop":1750084507717,"duration":110},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084507718,"stop":1750084507726,"duration":8},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084507718,"stop":1750084507718,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084507718,"stop":1750084507718,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-0"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"85cece840380f1a2","status":"passed","time":{"start":1750075563691,"stop":1750075564756,"duration":1065}}],"categories":[],"tags":[]},"source":"ce94b9aa72086b4e.json","parameterValues":["webkit"]} \ No newline at end of file +{"uid":"cd8f5ff233116d8e","name":"Несуществующий email","fullName":"ui/login/login.negative.spec.ts:17:7","historyId":"69b9236bee03ff0034bfbd5addc25f93:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750084506686,"stop":1750084507723,"duration":1037},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084506686,"stop":1750084506822,"duration":136},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084506688,"stop":1750084506692,"duration":4},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084506688,"stop":1750084506692,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084506693,"stop":1750084506822,"duration":129},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084506694,"stop":1750084506822,"duration":128},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084506825,"stop":1750084507438,"duration":613},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(wrong@example.com)","time":{"start":1750084507443,"stop":1750084507543,"duration":100},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(anyPassword123)","time":{"start":1750084507544,"stop":1750084507555,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750084507555,"stop":1750084507607,"duration":52},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084507607,"stop":1750084507717,"duration":110},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084507718,"stop":1750084507726,"duration":8},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084507718,"stop":1750084507718,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084507718,"stop":1750084507718,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-0"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"cd8f5ff233116d8e.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9c1576c7213cf7a9.json b/allure-report/data/test-cases/cf37024cd921d433.json similarity index 94% rename from allure-report/data/test-cases/9c1576c7213cf7a9.json rename to allure-report/data/test-cases/cf37024cd921d433.json index 21f202a..f5da572 100644 --- a/allure-report/data/test-cases/9c1576c7213cf7a9.json +++ b/allure-report/data/test-cases/cf37024cd921d433.json @@ -1 +1 @@ -{"uid":"9c1576c7213cf7a9","name":"Пользователь успешно восстанавливает пароль","fullName":"ui/recovery/recover-password.spec.ts:7:7","historyId":"1779c735aef9d62c071557455e74e57f:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750084493416,"stop":1750084494507,"duration":1091},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084493416,"stop":1750084493466,"duration":50},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084493416,"stop":1750084493418,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084493416,"stop":1750084493418,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084493418,"stop":1750084493466,"duration":48},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084493418,"stop":1750084493466,"duration":48},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750084493467,"stop":1750084494006,"duration":539},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084494006,"stop":1750084494041,"duration":35},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750084494042,"stop":1750084494082,"duration":40},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750084494082,"stop":1750084494188,"duration":106},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750084494188,"stop":1750084494189,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084494190,"stop":1750084494195,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084494196,"stop":1750084494200,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084494201,"stop":1750084494209,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084494210,"stop":1750084494214,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084494215,"stop":1750084494218,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084494218,"stop":1750084494221,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084494222,"stop":1750084494249,"duration":27},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084494250,"stop":1750084494353,"duration":103},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750084494353,"stop":1750084494358,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750084494359,"stop":1750084494365,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084494366,"stop":1750084494398,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750084494398,"stop":1750084494502,"duration":104},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084494502,"stop":1750084494504,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084494504,"stop":1750084494508,"duration":4},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084494504,"stop":1750084494504,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084494504,"stop":1750084494504,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":26,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-password.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-password.spec.ts > Восстановление пароля — позитивные сценарии"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-password.spec.ts"},{"name":"subSuite","value":"Восстановление пароля — позитивные сценарии"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3ceb71bd12870fa8","status":"passed","time":{"start":1750075550648,"stop":1750075551753,"duration":1105}}],"categories":[],"tags":[]},"source":"9c1576c7213cf7a9.json","parameterValues":["chromium"]} \ No newline at end of file +{"uid":"cf37024cd921d433","name":"Пользователь успешно восстанавливает пароль","fullName":"ui/recovery/recover-password.spec.ts:7:7","historyId":"1779c735aef9d62c071557455e74e57f:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750084493416,"stop":1750084494507,"duration":1091},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084493416,"stop":1750084493466,"duration":50},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084493416,"stop":1750084493418,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084493416,"stop":1750084493418,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084493418,"stop":1750084493466,"duration":48},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084493418,"stop":1750084493466,"duration":48},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750084493467,"stop":1750084494006,"duration":539},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084494006,"stop":1750084494041,"duration":35},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750084494042,"stop":1750084494082,"duration":40},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750084494082,"stop":1750084494188,"duration":106},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750084494188,"stop":1750084494189,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084494190,"stop":1750084494195,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084494196,"stop":1750084494200,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084494201,"stop":1750084494209,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084494210,"stop":1750084494214,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084494215,"stop":1750084494218,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084494218,"stop":1750084494221,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084494222,"stop":1750084494249,"duration":27},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084494250,"stop":1750084494353,"duration":103},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750084494353,"stop":1750084494358,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750084494359,"stop":1750084494365,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084494366,"stop":1750084494398,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750084494398,"stop":1750084494502,"duration":104},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084494502,"stop":1750084494504,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084494504,"stop":1750084494508,"duration":4},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084494504,"stop":1750084494504,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084494504,"stop":1750084494504,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":26,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-password.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-password.spec.ts > Восстановление пароля — позитивные сценарии"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-password.spec.ts"},{"name":"subSuite","value":"Восстановление пароля — позитивные сценарии"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"cf37024cd921d433.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cf49efa2bb547af4.json b/allure-report/data/test-cases/cf49efa2bb547af4.json new file mode 100644 index 0000000..1462e4f --- /dev/null +++ b/allure-report/data/test-cases/cf49efa2bb547af4.json @@ -0,0 +1 @@ +{"uid":"cf49efa2bb547af4","name":"Слишком длинная должность","fullName":"ui/registration/register.negative.spec.ts:38:7","historyId":"2214c0f917091cfcda832cd03e01bb76:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750252754595,"stop":1750252762232,"duration":7637},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252754595,"stop":1750252755519,"duration":924},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252754595,"stop":1750252755254,"duration":659},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252754596,"stop":1750252755253,"duration":657},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252755254,"stop":1750252755519,"duration":265},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252755254,"stop":1750252755519,"duration":265},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750252755520,"stop":1750252758654,"duration":3134},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX)","time":{"start":1750252758655,"stop":1750252759759,"duration":1104},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750252759760,"stop":1750252760961,"duration":1201},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252760963,"stop":1750252762203,"duration":1240},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252762204,"stop":1750252762235,"duration":31},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252762204,"stop":1750252762204,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252762204,"stop":1750252762204,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-57952-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"cf49efa2bb547af4.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d30e1a8a947541fc.json b/allure-report/data/test-cases/cfb5224ecb2b1b54.json similarity index 92% rename from allure-report/data/test-cases/d30e1a8a947541fc.json rename to allure-report/data/test-cases/cfb5224ecb2b1b54.json index 27f1d34..d7b1599 100644 --- a/allure-report/data/test-cases/d30e1a8a947541fc.json +++ b/allure-report/data/test-cases/cfb5224ecb2b1b54.json @@ -1 +1 @@ -{"uid":"d30e1a8a947541fc","name":"Неверный пароль","fullName":"ui/login/login.negative.spec.ts:7:7","historyId":"500ad758ee2db2bb60aa832fb0abbb94:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750084506454,"stop":1750084507609,"duration":1155},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084506454,"stop":1750084506629,"duration":175},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084506457,"stop":1750084506469,"duration":12},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084506458,"stop":1750084506469,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084506470,"stop":1750084506628,"duration":158},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084506470,"stop":1750084506628,"duration":158},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084506635,"stop":1750084507146,"duration":511},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084507147,"stop":1750084507361,"duration":214},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(wrongpass)","time":{"start":1750084507366,"stop":1750084507428,"duration":62},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750084507430,"stop":1750084507488,"duration":58},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084507490,"stop":1750084507610,"duration":120},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084507610,"stop":1750084507613,"duration":3},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084507610,"stop":1750084507610,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084507611,"stop":1750084507611,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-1"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"20cbd51974e2c4a","status":"passed","time":{"start":1750075563427,"stop":1750075564713,"duration":1286}}],"categories":[],"tags":[]},"source":"d30e1a8a947541fc.json","parameterValues":["webkit"]} \ No newline at end of file +{"uid":"cfb5224ecb2b1b54","name":"Неверный пароль","fullName":"ui/login/login.negative.spec.ts:7:7","historyId":"500ad758ee2db2bb60aa832fb0abbb94:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750084506454,"stop":1750084507609,"duration":1155},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084506454,"stop":1750084506629,"duration":175},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084506457,"stop":1750084506469,"duration":12},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084506458,"stop":1750084506469,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084506470,"stop":1750084506628,"duration":158},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084506470,"stop":1750084506628,"duration":158},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084506635,"stop":1750084507146,"duration":511},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084507147,"stop":1750084507361,"duration":214},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(wrongpass)","time":{"start":1750084507366,"stop":1750084507428,"duration":62},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750084507430,"stop":1750084507488,"duration":58},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084507490,"stop":1750084507610,"duration":120},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084507610,"stop":1750084507613,"duration":3},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084507610,"stop":1750084507610,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084507611,"stop":1750084507611,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-1"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"cfb5224ecb2b1b54.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d202e4c572649d08.json b/allure-report/data/test-cases/d202e4c572649d08.json new file mode 100644 index 0000000..78be498 --- /dev/null +++ b/allure-report/data/test-cases/d202e4c572649d08.json @@ -0,0 +1 @@ +{"uid":"d202e4c572649d08","name":"Неверный код подтверждения","fullName":"ui/recovery/recover-negative.spec.ts:23:7","historyId":"31f03826b2a8da254be42b2d49bc35f3:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750253599029,"stop":1750253601554,"duration":2525},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253599029,"stop":1750253599205,"duration":176},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253599029,"stop":1750253599035,"duration":6},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253599030,"stop":1750253599031,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253599035,"stop":1750253599205,"duration":170},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253599036,"stop":1750253599205,"duration":169},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750253599206,"stop":1750253601081,"duration":1875},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750253601082,"stop":1750253601111,"duration":29},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750253601112,"stop":1750253601182,"duration":70},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750253601182,"stop":1750253601292,"duration":110},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750253601292,"stop":1750253601296,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(6)","time":{"start":1750253601296,"stop":1750253601306,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(5)","time":{"start":1750253601306,"stop":1750253601314,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(4)","time":{"start":1750253601315,"stop":1750253601325,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(3)","time":{"start":1750253601325,"stop":1750253601331,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(2)","time":{"start":1750253601332,"stop":1750253601339,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(1)","time":{"start":1750253601340,"stop":1750253601346,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750253601347,"stop":1750253601410,"duration":63},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253601410,"stop":1750253601527,"duration":117},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253601527,"stop":1750253601555,"duration":28},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253601527,"stop":1750253601527,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253601527,"stop":1750253601527,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":21,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ab9c735b312a9f51","status":"passed","time":{"start":1750252845302,"stop":1750252847662,"duration":2360}},{"uid":"9fa8644996023a26","status":"passed","time":{"start":1750084501594,"stop":1750084503368,"duration":1774}},{"uid":"4f817cd0642eaed2","status":"passed","time":{"start":1750075558336,"stop":1750075560026,"duration":1690}}],"categories":[],"tags":[]},"source":"d202e4c572649d08.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9059b807844ecd29.json b/allure-report/data/test-cases/d40ee6760071bcef.json similarity index 91% rename from allure-report/data/test-cases/9059b807844ecd29.json rename to allure-report/data/test-cases/d40ee6760071bcef.json index 27eec80..49104fe 100644 --- a/allure-report/data/test-cases/9059b807844ecd29.json +++ b/allure-report/data/test-cases/d40ee6760071bcef.json @@ -1 +1 @@ -{"uid":"9059b807844ecd29","name":"Только email без пароля","fullName":"ui/login/login.negative.spec.ts:37:7","historyId":"8c67bb2f4fb916157fb6191bbb5e4267:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750084507616,"stop":1750084508347,"duration":731},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084507616,"stop":1750084507734,"duration":118},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084507617,"stop":1750084507620,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084507618,"stop":1750084507619,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084507620,"stop":1750084507734,"duration":114},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084507620,"stop":1750084507734,"duration":114},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084507735,"stop":1750084508226,"duration":491},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084508227,"stop":1750084508290,"duration":63},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750084508291,"stop":1750084508296,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750084508297,"stop":1750084508342,"duration":45},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084508342,"stop":1750084508346,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084508346,"stop":1750084508349,"duration":3},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084508346,"stop":1750084508346,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084508346,"stop":1750084508346,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-1"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f30f5da0d9b0eada","status":"passed","time":{"start":1750075564160,"stop":1750075565015,"duration":855}}],"categories":[],"tags":[]},"source":"9059b807844ecd29.json","parameterValues":["webkit"]} \ No newline at end of file +{"uid":"d40ee6760071bcef","name":"Только email без пароля","fullName":"ui/login/login.negative.spec.ts:37:7","historyId":"8c67bb2f4fb916157fb6191bbb5e4267:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750084507616,"stop":1750084508347,"duration":731},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084507616,"stop":1750084507734,"duration":118},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084507617,"stop":1750084507620,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084507618,"stop":1750084507619,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084507620,"stop":1750084507734,"duration":114},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084507620,"stop":1750084507734,"duration":114},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084507735,"stop":1750084508226,"duration":491},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084508227,"stop":1750084508290,"duration":63},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750084508291,"stop":1750084508296,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750084508297,"stop":1750084508342,"duration":45},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084508342,"stop":1750084508346,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084508346,"stop":1750084508349,"duration":3},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084508346,"stop":1750084508346,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084508346,"stop":1750084508346,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-1"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"d40ee6760071bcef.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d449fe499514742d.json b/allure-report/data/test-cases/d449fe499514742d.json new file mode 100644 index 0000000..786ca81 --- /dev/null +++ b/allure-report/data/test-cases/d449fe499514742d.json @@ -0,0 +1 @@ +{"uid":"d449fe499514742d","name":"Некорректное имя и фамилия (слишком длинные)","fullName":"ui/registration/register.negative.spec.ts:16:7","historyId":"7134a02a04b606099de5c920fb62990a:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253569409,"stop":1750253577616,"duration":8207},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253569409,"stop":1750253569450,"duration":41},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253569410,"stop":1750253569412,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253569410,"stop":1750253569411,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253569412,"stop":1750253569450,"duration":38},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253569413,"stop":1750253569450,"duration":37},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750253569452,"stop":1750253575330,"duration":5878},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(ААААААААААААААААААААААААААААААААААААААААААААААААААА)","time":{"start":1750253575337,"stop":1750253575380,"duration":43},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(БББББББББББББББББББББББББББББББББББББББББББББББББББ)","time":{"start":1750253575386,"stop":1750253575420,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750253575421,"stop":1750253575538,"duration":117},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253575539,"stop":1750253575578,"duration":39},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253575579,"stop":1750253575585,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253575585,"stop":1750253577617,"duration":2032},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253575585,"stop":1750253575585,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253575585,"stop":1750253575585,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c5782f52a87f0420","status":"passed","time":{"start":1750253491650,"stop":1750253502879,"duration":11229}},{"uid":"cb2666f6af0f0d4a","status":"passed","time":{"start":1750252824657,"stop":1750252826030,"duration":1373}},{"uid":"ac9a886d0798d1ed","status":"passed","time":{"start":1750252747042,"stop":1750252750879,"duration":3837}},{"uid":"18bfd216e0cfac69","status":"passed","time":{"start":1750252463071,"stop":1750252484871,"duration":21800}}],"categories":[],"tags":[]},"source":"d449fe499514742d.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c7a1902ba1108ba2.json b/allure-report/data/test-cases/d44d54d4fba10f7b.json similarity index 91% rename from allure-report/data/test-cases/c7a1902ba1108ba2.json rename to allure-report/data/test-cases/d44d54d4fba10f7b.json index d5f8f2e..436cdf2 100644 --- a/allure-report/data/test-cases/c7a1902ba1108ba2.json +++ b/allure-report/data/test-cases/d44d54d4fba10f7b.json @@ -1 +1 @@ -{"uid":"c7a1902ba1108ba2","name":"Некорректный email (формат)","fullName":"ui/recovery/recover-negative.spec.ts:7:7","historyId":"d776d5fb9c918a79827aea417bdc449a:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750084501326,"stop":1750084502338,"duration":1012},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084501325,"stop":1750084501555,"duration":230},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084501327,"stop":1750084501337,"duration":10},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084501327,"stop":1750084501336,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084501337,"stop":1750084501555,"duration":218},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084501338,"stop":1750084501555,"duration":217},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750084501557,"stop":1750084502217,"duration":660},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(invalid-email)","time":{"start":1750084502218,"stop":1750084502252,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750084502253,"stop":1750084502328,"duration":75},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084502328,"stop":1750084502334,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084502334,"stop":1750084502340,"duration":6},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084502334,"stop":1750084502334,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084502334,"stop":1750084502334,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f5b8eff89fd823f5","status":"passed","time":{"start":1750075557377,"stop":1750075558616,"duration":1239}}],"categories":[],"tags":[]},"source":"c7a1902ba1108ba2.json","parameterValues":["firefox"]} \ No newline at end of file +{"uid":"d44d54d4fba10f7b","name":"Некорректный email (формат)","fullName":"ui/recovery/recover-negative.spec.ts:7:7","historyId":"d776d5fb9c918a79827aea417bdc449a:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750084501326,"stop":1750084502338,"duration":1012},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084501325,"stop":1750084501555,"duration":230},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084501327,"stop":1750084501337,"duration":10},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084501327,"stop":1750084501336,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084501337,"stop":1750084501555,"duration":218},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084501338,"stop":1750084501555,"duration":217},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750084501557,"stop":1750084502217,"duration":660},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(invalid-email)","time":{"start":1750084502218,"stop":1750084502252,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750084502253,"stop":1750084502328,"duration":75},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084502328,"stop":1750084502334,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084502334,"stop":1750084502340,"duration":6},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084502334,"stop":1750084502334,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084502334,"stop":1750084502334,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"d44d54d4fba10f7b.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/869d29ee93a3b194.json b/allure-report/data/test-cases/d46de6aefcc41697.json similarity index 98% rename from allure-report/data/test-cases/869d29ee93a3b194.json rename to allure-report/data/test-cases/d46de6aefcc41697.json index 24e1350..c6665a6 100644 --- a/allure-report/data/test-cases/869d29ee93a3b194.json +++ b/allure-report/data/test-cases/d46de6aefcc41697.json @@ -1 +1 @@ -{"uid":"869d29ee93a3b194","name":"Некорректный новый пароль","fullName":"ui/recovery/recover-negative.spec.ts:34:7","historyId":"18246cf63350a71f5b46012e257bafcf:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750075549657,"stop":1750075550644,"duration":987},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075549657,"stop":1750075549694,"duration":37},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075549658,"stop":1750075549661,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075549658,"stop":1750075549660,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075549661,"stop":1750075549694,"duration":33},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075549661,"stop":1750075549694,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750075549695,"stop":1750075550244,"duration":549},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075550245,"stop":1750075550278,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750075550278,"stop":1750075550320,"duration":42},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750075550321,"stop":1750075550322,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075550323,"stop":1750075550440,"duration":117},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075550440,"stop":1750075550444,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075550444,"stop":1750075550448,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075550451,"stop":1750075550456,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075550456,"stop":1750075550461,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075550462,"stop":1750075550473,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075550474,"stop":1750075550506,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(123)","time":{"start":1750075550506,"stop":1750075550588,"duration":82},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(123)","time":{"start":1750075550588,"stop":1750075550595,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075550598,"stop":1750075550639,"duration":41},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075550640,"stop":1750075550641,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075550642,"stop":1750075550645,"duration":3},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075550642,"stop":1750075550642,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075550642,"stop":1750075550642,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-1"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"869d29ee93a3b194.json","parameterValues":["chromium"]} \ No newline at end of file +{"uid":"d46de6aefcc41697","name":"Некорректный новый пароль","fullName":"ui/recovery/recover-negative.spec.ts:34:7","historyId":"18246cf63350a71f5b46012e257bafcf:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750075549657,"stop":1750075550644,"duration":987},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075549657,"stop":1750075549694,"duration":37},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075549658,"stop":1750075549661,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075549658,"stop":1750075549660,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075549661,"stop":1750075549694,"duration":33},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075549661,"stop":1750075549694,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750075549695,"stop":1750075550244,"duration":549},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075550245,"stop":1750075550278,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750075550278,"stop":1750075550320,"duration":42},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750075550321,"stop":1750075550322,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075550323,"stop":1750075550440,"duration":117},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075550440,"stop":1750075550444,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075550444,"stop":1750075550448,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075550451,"stop":1750075550456,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075550456,"stop":1750075550461,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075550462,"stop":1750075550473,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075550474,"stop":1750075550506,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(123)","time":{"start":1750075550506,"stop":1750075550588,"duration":82},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(123)","time":{"start":1750075550588,"stop":1750075550595,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075550598,"stop":1750075550639,"duration":41},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075550640,"stop":1750075550641,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075550642,"stop":1750075550645,"duration":3},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075550642,"stop":1750075550642,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075550642,"stop":1750075550642,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-1"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"d46de6aefcc41697.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d47716dc365fadfc.json b/allure-report/data/test-cases/d47716dc365fadfc.json new file mode 100644 index 0000000..425fe05 --- /dev/null +++ b/allure-report/data/test-cases/d47716dc365fadfc.json @@ -0,0 +1 @@ +{"uid":"d47716dc365fadfc","name":"Отправка пустой формы","fullName":"ui/registration/register.negative.spec.ts:6:7","historyId":"61b0fd9a6b9153c787b71ef3413cea92:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750252781050,"stop":1750252787606,"duration":6556},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252781051,"stop":1750252782933,"duration":1882},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750252781054,"stop":1750252781711,"duration":657},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750252781055,"stop":1750252781711,"duration":656},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252781711,"stop":1750252782423,"duration":712},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252781712,"stop":1750252782422,"duration":710},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252782424,"stop":1750252782933,"duration":509},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252782424,"stop":1750252782933,"duration":509},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750252782937,"stop":1750252788110,"duration":5173},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750252788117,"stop":1750252788228,"duration":111},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.allTextContents(div[name=\"error\"] >> internal:has-text=\"Поле обязательно для заполнения\"i)","time":{"start":1750252788229,"stop":1750252788238,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeGreaterThan","time":{"start":1750252788240,"stop":1750252788240,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252788241,"stop":1750252788253,"duration":12},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252788253,"stop":1750252788269,"duration":16},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252788254,"stop":1750252788254,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252788254,"stop":1750252788254,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":15,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-57952-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"d47716dc365fadfc.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d47772f91ef32fc.json b/allure-report/data/test-cases/d47772f91ef32fc.json new file mode 100644 index 0000000..8d54c6f --- /dev/null +++ b/allure-report/data/test-cases/d47772f91ef32fc.json @@ -0,0 +1 @@ +{"uid":"d47772f91ef32fc","name":"Пользователь успешно восстанавливает пароль","fullName":"ui/recovery/recover-password.spec.ts:7:7","historyId":"1779c735aef9d62c071557455e74e57f:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253490553,"stop":1750253497291,"duration":6738},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253490553,"stop":1750253490593,"duration":40},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253490553,"stop":1750253490556,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253490554,"stop":1750253490555,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253490556,"stop":1750253490593,"duration":37},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253490556,"stop":1750253490593,"duration":37},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750253490594,"stop":1750253491561,"duration":967},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750253491561,"stop":1750253491582,"duration":21},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750253491583,"stop":1750253491620,"duration":37},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750253491620,"stop":1750253491731,"duration":111},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750253491732,"stop":1750253491734,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253491735,"stop":1750253491741,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253491742,"stop":1750253491745,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253491746,"stop":1750253491752,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253491753,"stop":1750253491758,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253491759,"stop":1750253491762,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253491762,"stop":1750253491769,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750253491770,"stop":1750253491805,"duration":35},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253491805,"stop":1750253491910,"duration":105},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750253491911,"stop":1750253491918,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750253491919,"stop":1750253491929,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750253491929,"stop":1750253491969,"duration":40},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750253491970,"stop":1750253492074,"duration":104},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253492075,"stop":1750253492078,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253492078,"stop":1750253497292,"duration":5214},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253492078,"stop":1750253492078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253492078,"stop":1750253492078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":26,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-password.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-password.spec.ts > Восстановление пароля — позитивные сценарии"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-password.spec.ts"},{"name":"subSuite","value":"Восстановление пароля — позитивные сценарии"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"d47772f91ef32fc.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d56dbab5fcead289.json b/allure-report/data/test-cases/d56dbab5fcead289.json new file mode 100644 index 0000000..e2b6ec5 --- /dev/null +++ b/allure-report/data/test-cases/d56dbab5fcead289.json @@ -0,0 +1 @@ +{"uid":"d56dbab5fcead289","name":"Слишком длинная должность","fullName":"ui/registration/register.negative.spec.ts:38:7","historyId":"2214c0f917091cfcda832cd03e01bb76:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750252825519,"stop":1750252826364,"duration":845},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252825518,"stop":1750252825563,"duration":45},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252825519,"stop":1750252825522,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252825519,"stop":1750252825521,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252825522,"stop":1750252825563,"duration":41},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252825522,"stop":1750252825563,"duration":41},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750252825563,"stop":1750252826274,"duration":711},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX)","time":{"start":1750252826274,"stop":1750252826330,"duration":56},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750252826331,"stop":1750252826358,"duration":27},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252826358,"stop":1750252826361,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252826361,"stop":1750252826365,"duration":4},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252826361,"stop":1750252826361,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252826361,"stop":1750252826361,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"d56dbab5fcead289.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e52a54484d42ab27.json b/allure-report/data/test-cases/d5e9b04c857dd621.json similarity index 97% rename from allure-report/data/test-cases/e52a54484d42ab27.json rename to allure-report/data/test-cases/d5e9b04c857dd621.json index 1d68f2c..52fdf80 100644 --- a/allure-report/data/test-cases/e52a54484d42ab27.json +++ b/allure-report/data/test-cases/d5e9b04c857dd621.json @@ -1 +1 @@ -{"uid":"e52a54484d42ab27","name":"Некорректный формат email","fullName":"ui/login/login.negative.spec.ts:46:7","historyId":"e5764a911de0175f8f7118313ae14544:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750075548464,"stop":1750075549142,"duration":678},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075548464,"stop":1750075548506,"duration":42},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075548465,"stop":1750075548468,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075548466,"stop":1750075548467,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075548468,"stop":1750075548506,"duration":38},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075548468,"stop":1750075548506,"duration":38},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075548507,"stop":1750075548989,"duration":482},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(invalid-email)","time":{"start":1750075548989,"stop":1750075549036,"duration":47},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(anyPassword123)","time":{"start":1750075549037,"stop":1750075549072,"duration":35},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750075549073,"stop":1750075549137,"duration":64},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075549138,"stop":1750075549140,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075549140,"stop":1750075549144,"duration":4},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075549140,"stop":1750075549140,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075549140,"stop":1750075549140,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"e52a54484d42ab27.json","parameterValues":["chromium"]} \ No newline at end of file +{"uid":"d5e9b04c857dd621","name":"Некорректный формат email","fullName":"ui/login/login.negative.spec.ts:46:7","historyId":"e5764a911de0175f8f7118313ae14544:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750075548464,"stop":1750075549142,"duration":678},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075548464,"stop":1750075548506,"duration":42},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075548465,"stop":1750075548468,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075548466,"stop":1750075548467,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075548468,"stop":1750075548506,"duration":38},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075548468,"stop":1750075548506,"duration":38},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075548507,"stop":1750075548989,"duration":482},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(invalid-email)","time":{"start":1750075548989,"stop":1750075549036,"duration":47},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(anyPassword123)","time":{"start":1750075549037,"stop":1750075549072,"duration":35},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750075549073,"stop":1750075549137,"duration":64},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075549138,"stop":1750075549140,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075549140,"stop":1750075549144,"duration":4},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075549140,"stop":1750075549140,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075549140,"stop":1750075549140,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"d5e9b04c857dd621.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a46ddeec16f556fe.json b/allure-report/data/test-cases/d6ca9443d65f6e59.json similarity index 97% rename from allure-report/data/test-cases/a46ddeec16f556fe.json rename to allure-report/data/test-cases/d6ca9443d65f6e59.json index f613746..aa4f4cd 100644 --- a/allure-report/data/test-cases/a46ddeec16f556fe.json +++ b/allure-report/data/test-cases/d6ca9443d65f6e59.json @@ -1 +1 @@ -{"uid":"a46ddeec16f556fe","name":"Оба поля пустые","fullName":"ui/login/login.negative.spec.ts:27:7","historyId":"58990385f74407307e4ace7ad02abf05:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750075547614,"stop":1750075548586,"duration":972},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075547613,"stop":1750075547672,"duration":59},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075547615,"stop":1750075547620,"duration":5},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075547616,"stop":1750075547618,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075547620,"stop":1750075547672,"duration":52},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075547622,"stop":1750075547672,"duration":50},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075547673,"stop":1750075548414,"duration":741},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750075548414,"stop":1750075548467,"duration":53},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750075548468,"stop":1750075548505,"duration":37},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750075548506,"stop":1750075548572,"duration":66},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075548572,"stop":1750075548575,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075548576,"stop":1750075548583,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075548583,"stop":1750075548588,"duration":5},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075548583,"stop":1750075548583,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075548584,"stop":1750075548584,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"a46ddeec16f556fe.json","parameterValues":["chromium"]} \ No newline at end of file +{"uid":"d6ca9443d65f6e59","name":"Оба поля пустые","fullName":"ui/login/login.negative.spec.ts:27:7","historyId":"58990385f74407307e4ace7ad02abf05:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750075547614,"stop":1750075548586,"duration":972},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075547613,"stop":1750075547672,"duration":59},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075547615,"stop":1750075547620,"duration":5},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075547616,"stop":1750075547618,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075547620,"stop":1750075547672,"duration":52},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075547622,"stop":1750075547672,"duration":50},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075547673,"stop":1750075548414,"duration":741},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750075548414,"stop":1750075548467,"duration":53},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750075548468,"stop":1750075548505,"duration":37},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750075548506,"stop":1750075548572,"duration":66},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075548572,"stop":1750075548575,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075548576,"stop":1750075548583,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075548583,"stop":1750075548588,"duration":5},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075548583,"stop":1750075548583,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075548584,"stop":1750075548584,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"d6ca9443d65f6e59.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d6ec22530a71c4d6.json b/allure-report/data/test-cases/d6ec22530a71c4d6.json new file mode 100644 index 0000000..ed4929e --- /dev/null +++ b/allure-report/data/test-cases/d6ec22530a71c4d6.json @@ -0,0 +1 @@ +{"uid":"d6ec22530a71c4d6","name":"Слишком длинное название организации","fullName":"ui/registration/register.negative.spec.ts:48:7","historyId":"26486147b8778ca2341563049d2a3728:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750253611365,"stop":1750253620996,"duration":9631},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253611365,"stop":1750253611647,"duration":282},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253611366,"stop":1750253611371,"duration":5},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253611366,"stop":1750253611369,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253611371,"stop":1750253611647,"duration":276},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253611372,"stop":1750253611647,"duration":275},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750253611648,"stop":1750253618930,"duration":7282},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Иван)","time":{"start":1750253618932,"stop":1750253618965,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Иванов)","time":{"start":1750253618966,"stop":1750253618977,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёное звание*').click","time":{"start":1750253618978,"stop":1750253619029,"duration":51},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Доцент\"i)","time":{"start":1750253619030,"stop":1750253619109,"duration":79},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёная степень*').click","time":{"start":1750253619109,"stop":1750253620124,"duration":1015},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Кандидат наук\"i)","time":{"start":1750253620125,"stop":1750253620622,"duration":497},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Преподаватель)","time":{"start":1750253620622,"stop":1750253620638,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(ООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООО)","time":{"start":1750253620638,"stop":1750253620649,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(test1750253618931@example.com)","time":{"start":1750253620649,"stop":1750253620669,"duration":20},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(+79990630171)","time":{"start":1750253620670,"stop":1750253620694,"duration":24},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123)","time":{"start":1750253620695,"stop":1750253620721,"duration":26},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123)","time":{"start":1750253620722,"stop":1750253620745,"duration":23},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750253620745,"stop":1750253620810,"duration":65},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253620811,"stop":1750253620932,"duration":121},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253620932,"stop":1750253620998,"duration":66},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253620933,"stop":1750253620933,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253620933,"stop":1750253620933,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b43137cb9a67fe72","status":"passed","time":{"start":1750252850889,"stop":1750252854138,"duration":3249}},{"uid":"2412675bc79a8b74","status":"passed","time":{"start":1750252690588,"stop":1750252695791,"duration":5203}}],"categories":[],"tags":[]},"source":"d6ec22530a71c4d6.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9ff2d401b597dd93.json b/allure-report/data/test-cases/d7c5bc357fa3c7c0.json similarity index 97% rename from allure-report/data/test-cases/9ff2d401b597dd93.json rename to allure-report/data/test-cases/d7c5bc357fa3c7c0.json index c5762a9..3c38ec1 100644 --- a/allure-report/data/test-cases/9ff2d401b597dd93.json +++ b/allure-report/data/test-cases/d7c5bc357fa3c7c0.json @@ -1 +1 @@ -{"uid":"9ff2d401b597dd93","name":"Переключатель видимости пароля показывает и скрывает ввод","fullName":"ui/login/login.ui.spec.ts:7:7","historyId":"b1726395bd827a3a21fe3c829a098be4:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750075548938,"stop":1750075549652,"duration":714},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075548938,"stop":1750075548975,"duration":37},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075548939,"stop":1750075548940,"duration":1},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075548939,"stop":1750075548940,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075548940,"stop":1750075548975,"duration":35},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075548941,"stop":1750075548975,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075548976,"stop":1750075549470,"duration":494},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750075549472,"stop":1750075549554,"duration":82},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750075549557,"stop":1750075549559,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750075549559,"stop":1750075549559,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByAltText('показать пароль').click","time":{"start":1750075549560,"stop":1750075549594,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750075549594,"stop":1750075549596,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750075549596,"stop":1750075549597,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByAltText('показать пароль').click","time":{"start":1750075549597,"stop":1750075549638,"duration":41},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750075549640,"stop":1750075549647,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750075549648,"stop":1750075549648,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075549648,"stop":1750075549654,"duration":6},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075549649,"stop":1750075549649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075549649,"stop":1750075549649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":18,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.ui.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.ui.spec.ts > UI сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-1"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.ui.spec.ts"},{"name":"subSuite","value":"UI сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"9ff2d401b597dd93.json","parameterValues":["chromium"]} \ No newline at end of file +{"uid":"d7c5bc357fa3c7c0","name":"Переключатель видимости пароля показывает и скрывает ввод","fullName":"ui/login/login.ui.spec.ts:7:7","historyId":"b1726395bd827a3a21fe3c829a098be4:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750075548938,"stop":1750075549652,"duration":714},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075548938,"stop":1750075548975,"duration":37},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075548939,"stop":1750075548940,"duration":1},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075548939,"stop":1750075548940,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075548940,"stop":1750075548975,"duration":35},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075548941,"stop":1750075548975,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075548976,"stop":1750075549470,"duration":494},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750075549472,"stop":1750075549554,"duration":82},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750075549557,"stop":1750075549559,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750075549559,"stop":1750075549559,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByAltText('показать пароль').click","time":{"start":1750075549560,"stop":1750075549594,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750075549594,"stop":1750075549596,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750075549596,"stop":1750075549597,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByAltText('показать пароль').click","time":{"start":1750075549597,"stop":1750075549638,"duration":41},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750075549640,"stop":1750075549647,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750075549648,"stop":1750075549648,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075549648,"stop":1750075549654,"duration":6},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075549649,"stop":1750075549649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075549649,"stop":1750075549649,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":18,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.ui.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.ui.spec.ts > UI сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-1"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.ui.spec.ts"},{"name":"subSuite","value":"UI сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"d7c5bc357fa3c7c0.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d8233d7d84131656.json b/allure-report/data/test-cases/d8233d7d84131656.json new file mode 100644 index 0000000..a46ba6a --- /dev/null +++ b/allure-report/data/test-cases/d8233d7d84131656.json @@ -0,0 +1 @@ +{"uid":"d8233d7d84131656","name":"Некорректный формат email","fullName":"ui/login/login.negative.spec.ts:46:7","historyId":"e5764a911de0175f8f7118313ae14544:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750253621559,"stop":1750253626826,"duration":5267},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253621560,"stop":1750253622062,"duration":502},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750253621563,"stop":1750253621765,"duration":202},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750253621566,"stop":1750253621765,"duration":199},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253621765,"stop":1750253621807,"duration":42},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253621766,"stop":1750253621803,"duration":37},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253621807,"stop":1750253622062,"duration":255},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253621808,"stop":1750253622062,"duration":254},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750253622064,"stop":1750253626601,"duration":4537},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(invalid-email)","time":{"start":1750253626603,"stop":1750253626687,"duration":84},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(anyPassword123)","time":{"start":1750253626688,"stop":1750253626726,"duration":38},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750253626727,"stop":1750253626800,"duration":73},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253626801,"stop":1750253626829,"duration":28},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253626829,"stop":1750253627032,"duration":203},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253626830,"stop":1750253626830,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253626830,"stop":1750253626830,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":15,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-1"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6befecf75ebe5622","status":"passed","time":{"start":1750252857696,"stop":1750252858941,"duration":1245}},{"uid":"40015fc1b0be3163","status":"passed","time":{"start":1750084507730,"stop":1750084508673,"duration":943}},{"uid":"c722785b3141ca2f","status":"passed","time":{"start":1750075564621,"stop":1750075565733,"duration":1112}}],"categories":[],"tags":[]},"source":"d8233d7d84131656.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d8391b9ff99a6ce0.json b/allure-report/data/test-cases/d8391b9ff99a6ce0.json new file mode 100644 index 0000000..8ab0977 --- /dev/null +++ b/allure-report/data/test-cases/d8391b9ff99a6ce0.json @@ -0,0 +1 @@ +{"uid":"d8391b9ff99a6ce0","name":"get started link","fullName":"example.spec.ts:10:5","historyId":"37e4aa066a5f6eac2e4d3b98a2ed98a7:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750084504688,"stop":1750084506422,"duration":1734},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084504690,"stop":1750084505581,"duration":891},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750084504697,"stop":1750084504941,"duration":244},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750084504700,"stop":1750084504941,"duration":241},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084504943,"stop":1750084505029,"duration":86},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084504944,"stop":1750084505026,"duration":82},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084505030,"stop":1750084505581,"duration":551},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084505033,"stop":1750084505581,"duration":548},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(https://playwright.dev/)","time":{"start":1750084505582,"stop":1750084506408,"duration":826},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('link', { name: 'Get started' }).click","time":{"start":1750084506411,"stop":1750084506502,"duration":91},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084506505,"stop":1750084506659,"duration":154},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084506660,"stop":1750084506676,"duration":16},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084506662,"stop":1750084506662,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084506662,"stop":1750084506662,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > webkit > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-0"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"example.spec.ts"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"d8391b9ff99a6ce0.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d84d93cab9b2d9bf.json b/allure-report/data/test-cases/d84d93cab9b2d9bf.json new file mode 100644 index 0000000..86f9265 --- /dev/null +++ b/allure-report/data/test-cases/d84d93cab9b2d9bf.json @@ -0,0 +1 @@ +{"uid":"d84d93cab9b2d9bf","name":"Регистр в email (User@test.com ≠ user@test.com)","fullName":"ui/login/login.negative.spec.ts:58:7","historyId":"cc4ad4b40ef726af11b2bd4f5523dbe0:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253543998,"stop":1750253554549,"duration":10551},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253543998,"stop":1750253544038,"duration":40},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253543998,"stop":1750253544001,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253543999,"stop":1750253544000,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253544001,"stop":1750253544038,"duration":37},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253544001,"stop":1750253544038,"duration":37},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750253544039,"stop":1750253549083,"duration":5044},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Autotest@Example.com)","time":{"start":1750253549084,"stop":1750253549132,"duration":48},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750253549135,"stop":1750253549201,"duration":66},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750253549206,"stop":1750253549251,"duration":45},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253549251,"stop":1750253549357,"duration":106},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253549357,"stop":1750253554550,"duration":5193},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253549357,"stop":1750253549358,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253549358,"stop":1750253549358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"tag","value":"test.com"},{"name":"tag","value":"test.com)"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"217f9cb526214946","status":"passed","time":{"start":1750253480153,"stop":1750253482552,"duration":2399}},{"uid":"5fcc72a8b93c73ca","status":"passed","time":{"start":1750252812691,"stop":1750252813752,"duration":1061}},{"uid":"ddca81f303e19280","status":"passed","time":{"start":1750084491115,"stop":1750084492165,"duration":1050}},{"uid":"c0b32ee9d692f94f","status":"passed","time":{"start":1750075548592,"stop":1750075549589,"duration":997}}],"categories":[],"tags":["test.com","test.com)"]},"source":"d84d93cab9b2d9bf.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d99021bc0bd45ce9.json b/allure-report/data/test-cases/d99021bc0bd45ce9.json new file mode 100644 index 0000000..cfe35a8 --- /dev/null +++ b/allure-report/data/test-cases/d99021bc0bd45ce9.json @@ -0,0 +1 @@ +{"uid":"d99021bc0bd45ce9","name":"Неверный пароль","fullName":"ui/login/login.negative.spec.ts:7:7","historyId":"500ad758ee2db2bb60aa832fb0abbb94:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750253618438,"stop":1750253620369,"duration":1931},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253618438,"stop":1750253618559,"duration":121},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253618438,"stop":1750253618442,"duration":4},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253618439,"stop":1750253618440,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253618442,"stop":1750253618559,"duration":117},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253618442,"stop":1750253618559,"duration":117},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750253618559,"stop":1750253619897,"duration":1338},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750253619898,"stop":1750253619981,"duration":83},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(wrongpass)","time":{"start":1750253619983,"stop":1750253620049,"duration":66},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750253620050,"stop":1750253620122,"duration":72},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253620124,"stop":1750253620247,"duration":123},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253620247,"stop":1750253620370,"duration":123},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253620247,"stop":1750253620247,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253620247,"stop":1750253620247,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-0"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"49ebdbe06de4baa5","status":"passed","time":{"start":1750252854648,"stop":1750252856137,"duration":1489}},{"uid":"cfb5224ecb2b1b54","status":"passed","time":{"start":1750084506454,"stop":1750084507609,"duration":1155}},{"uid":"ec532b7769a516a2","status":"passed","time":{"start":1750075563427,"stop":1750075564713,"duration":1286}}],"categories":[],"tags":[]},"source":"d99021bc0bd45ce9.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8590834e6f81fb1e.json b/allure-report/data/test-cases/d9eef4e67e689958.json similarity index 98% rename from allure-report/data/test-cases/8590834e6f81fb1e.json rename to allure-report/data/test-cases/d9eef4e67e689958.json index bb15113..8a0effb 100644 --- a/allure-report/data/test-cases/8590834e6f81fb1e.json +++ b/allure-report/data/test-cases/d9eef4e67e689958.json @@ -1 +1 @@ -{"uid":"8590834e6f81fb1e","name":"Пользователь успешно восстанавливает пароль","fullName":"ui/recovery/recover-password.spec.ts:7:7","historyId":"1779c735aef9d62c071557455e74e57f:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750075560041,"stop":1750075561748,"duration":1707},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075560040,"stop":1750075560363,"duration":323},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075560042,"stop":1750075560057,"duration":15},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075560042,"stop":1750075560057,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075560057,"stop":1750075560363,"duration":306},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075560058,"stop":1750075560363,"duration":305},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750075560364,"stop":1750075561055,"duration":691},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075561056,"stop":1750075561106,"duration":50},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750075561106,"stop":1750075561175,"duration":69},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750075561176,"stop":1750075561288,"duration":112},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750075561288,"stop":1750075561290,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075561290,"stop":1750075561305,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075561306,"stop":1750075561311,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075561312,"stop":1750075561320,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075561321,"stop":1750075561326,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075561327,"stop":1750075561335,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075561336,"stop":1750075561341,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075561341,"stop":1750075561410,"duration":69},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075561410,"stop":1750075561521,"duration":111},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750075561522,"stop":1750075561538,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750075561539,"stop":1750075561550,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075561551,"stop":1750075561610,"duration":59},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750075561611,"stop":1750075561727,"duration":116},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075561727,"stop":1750075561741,"duration":14},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075561741,"stop":1750075561750,"duration":9},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075561741,"stop":1750075561741,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075561742,"stop":1750075561742,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":26,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-password.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-password.spec.ts > Восстановление пароля — позитивные сценарии"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-1"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-password.spec.ts"},{"name":"subSuite","value":"Восстановление пароля — позитивные сценарии"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"8590834e6f81fb1e.json","parameterValues":["firefox"]} \ No newline at end of file +{"uid":"d9eef4e67e689958","name":"Пользователь успешно восстанавливает пароль","fullName":"ui/recovery/recover-password.spec.ts:7:7","historyId":"1779c735aef9d62c071557455e74e57f:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750075560041,"stop":1750075561748,"duration":1707},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075560040,"stop":1750075560363,"duration":323},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075560042,"stop":1750075560057,"duration":15},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075560042,"stop":1750075560057,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075560057,"stop":1750075560363,"duration":306},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075560058,"stop":1750075560363,"duration":305},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750075560364,"stop":1750075561055,"duration":691},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075561056,"stop":1750075561106,"duration":50},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750075561106,"stop":1750075561175,"duration":69},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750075561176,"stop":1750075561288,"duration":112},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750075561288,"stop":1750075561290,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075561290,"stop":1750075561305,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075561306,"stop":1750075561311,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075561312,"stop":1750075561320,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075561321,"stop":1750075561326,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075561327,"stop":1750075561335,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075561336,"stop":1750075561341,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075561341,"stop":1750075561410,"duration":69},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075561410,"stop":1750075561521,"duration":111},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750075561522,"stop":1750075561538,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750075561539,"stop":1750075561550,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075561551,"stop":1750075561610,"duration":59},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750075561611,"stop":1750075561727,"duration":116},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075561727,"stop":1750075561741,"duration":14},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075561741,"stop":1750075561750,"duration":9},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075561741,"stop":1750075561741,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075561742,"stop":1750075561742,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":26,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-password.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-password.spec.ts > Восстановление пароля — позитивные сценарии"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-1"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-password.spec.ts"},{"name":"subSuite","value":"Восстановление пароля — позитивные сценарии"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"d9eef4e67e689958.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/db03043b9622459e.json b/allure-report/data/test-cases/db03043b9622459e.json new file mode 100644 index 0000000..fd70ddc --- /dev/null +++ b/allure-report/data/test-cases/db03043b9622459e.json @@ -0,0 +1 @@ +{"uid":"db03043b9622459e","name":"Слишком длинное название организации","fullName":"ui/registration/register.negative.spec.ts:48:7","historyId":"26486147b8778ca2341563049d2a3728:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750252862686,"stop":1750252865131,"duration":2445},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252862687,"stop":1750252862830,"duration":143},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252862689,"stop":1750252862695,"duration":6},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252862689,"stop":1750252862693,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252862695,"stop":1750252862829,"duration":134},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252862696,"stop":1750252862829,"duration":133},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750252862831,"stop":1750252863593,"duration":762},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Иван)","time":{"start":1750252863594,"stop":1750252863670,"duration":76},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Иванов)","time":{"start":1750252863671,"stop":1750252863682,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёное звание*').click","time":{"start":1750252863684,"stop":1750252863753,"duration":69},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Доцент\"i)","time":{"start":1750252863753,"stop":1750252864154,"duration":401},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёная степень*').click","time":{"start":1750252864155,"stop":1750252864536,"duration":381},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Кандидат наук\"i)","time":{"start":1750252864537,"stop":1750252864923,"duration":386},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Преподаватель)","time":{"start":1750252864924,"stop":1750252864937,"duration":13},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(ООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООО)","time":{"start":1750252864938,"stop":1750252864951,"duration":13},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(test1750252863593@example.com)","time":{"start":1750252864952,"stop":1750252864962,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(+79990819927)","time":{"start":1750252864963,"stop":1750252864972,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123)","time":{"start":1750252864973,"stop":1750252864979,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123)","time":{"start":1750252864980,"stop":1750252864987,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750252864987,"stop":1750252865023,"duration":36},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252865024,"stop":1750252865132,"duration":108},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252865132,"stop":1750252865135,"duration":3},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252865132,"stop":1750252865132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252865132,"stop":1750252865132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-1"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"db03043b9622459e.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/dcb78836f324219b.json b/allure-report/data/test-cases/dcb78836f324219b.json new file mode 100644 index 0000000..425c242 --- /dev/null +++ b/allure-report/data/test-cases/dcb78836f324219b.json @@ -0,0 +1 @@ +{"uid":"dcb78836f324219b","name":"Пользователь успешно восстанавливает пароль","fullName":"ui/recovery/recover-password.spec.ts:7:7","historyId":"1779c735aef9d62c071557455e74e57f:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750252822512,"stop":1750252826279,"duration":3767},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252822512,"stop":1750252822567,"duration":55},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252822514,"stop":1750252822522,"duration":8},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252822515,"stop":1750252822519,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252822524,"stop":1750252822567,"duration":43},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252822525,"stop":1750252822567,"duration":42},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750252822570,"stop":1750252823986,"duration":1416},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750252823987,"stop":1750252824031,"duration":44},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750252824032,"stop":1750252824073,"duration":41},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750252824074,"stop":1750252824192,"duration":118},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750252824192,"stop":1750252824196,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252824197,"stop":1750252824203,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252824204,"stop":1750252824208,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252824208,"stop":1750252824212,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252824213,"stop":1750252824218,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252824219,"stop":1750252824223,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252824224,"stop":1750252824227,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750252824228,"stop":1750252824259,"duration":31},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252824260,"stop":1750252824364,"duration":104},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750252824365,"stop":1750252824369,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750252824370,"stop":1750252824374,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750252824375,"stop":1750252824407,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750252824408,"stop":1750252826270,"duration":1862},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252826271,"stop":1750252826276,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252826277,"stop":1750252826283,"duration":6},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252826277,"stop":1750252826277,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252826277,"stop":1750252826277,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":26,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-password.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-password.spec.ts > Восстановление пароля — позитивные сценарии"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-1"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-password.spec.ts"},{"name":"subSuite","value":"Восстановление пароля — позитивные сценарии"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"dcb78836f324219b.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/dd3b057d4871238c.json b/allure-report/data/test-cases/dd3b057d4871238c.json new file mode 100644 index 0000000..3853af8 --- /dev/null +++ b/allure-report/data/test-cases/dd3b057d4871238c.json @@ -0,0 +1 @@ +{"uid":"dd3b057d4871238c","name":"Переключатель видимости пароля показывает и скрывает ввод","fullName":"ui/login/login.ui.spec.ts:7:7","historyId":"b1726395bd827a3a21fe3c829a098be4:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750253597973,"stop":1750253599889,"duration":1916},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253597972,"stop":1750253598139,"duration":167},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253597973,"stop":1750253597977,"duration":4},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253597973,"stop":1750253597975,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253597977,"stop":1750253598139,"duration":162},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253597977,"stop":1750253598139,"duration":162},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750253598139,"stop":1750253599710,"duration":1571},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750253599710,"stop":1750253599737,"duration":27},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750253599737,"stop":1750253599740,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750253599740,"stop":1750253599741,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByAltText('показать пароль').click","time":{"start":1750253599741,"stop":1750253599793,"duration":52},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750253599793,"stop":1750253599796,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750253599796,"stop":1750253599797,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByAltText('показать пароль').click","time":{"start":1750253599797,"stop":1750253599857,"duration":60},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750253599858,"stop":1750253599862,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750253599862,"stop":1750253599862,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253599862,"stop":1750253599889,"duration":27},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253599862,"stop":1750253599862,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253599862,"stop":1750253599862,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":18,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.ui.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.ui.spec.ts > UI сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.ui.spec.ts"},{"name":"subSuite","value":"UI сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"141a9f8f69b1de16","status":"passed","time":{"start":1750252843667,"stop":1750252845672,"duration":2005}},{"uid":"2d67f9006c444cfa","status":"passed","time":{"start":1750084500466,"stop":1750084501581,"duration":1115}},{"uid":"2e7cc0fca9db6e6d","status":"passed","time":{"start":1750075557078,"stop":1750075558320,"duration":1242}}],"categories":[],"tags":[]},"source":"dd3b057d4871238c.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ddb409ab42c11aa9.json b/allure-report/data/test-cases/ddb409ab42c11aa9.json new file mode 100644 index 0000000..0f6ae12 --- /dev/null +++ b/allure-report/data/test-cases/ddb409ab42c11aa9.json @@ -0,0 +1 @@ +{"uid":"ddb409ab42c11aa9","name":"Переход по ссылке \"Зарегистрируйтесь\"","fullName":"ui/login/login.link.spec.ts:15:5","historyId":"62db9603623bba26b6305edb541ef4fa:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750253616847,"stop":1750253618431,"duration":1584},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253616847,"stop":1750253616962,"duration":115},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253616848,"stop":1750253616852,"duration":4},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253616848,"stop":1750253616850,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253616852,"stop":1750253616962,"duration":110},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253616852,"stop":1750253616962,"duration":110},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750253616964,"stop":1750253618295,"duration":1331},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByText('Зарегистрируйтесь').click","time":{"start":1750253618296,"stop":1750253618351,"duration":55},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750253618352,"stop":1750253618360,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253618361,"stop":1750253618365,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253618366,"stop":1750253618432,"duration":66},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253618366,"stop":1750253618366,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253618366,"stop":1750253618366,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-0"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a85a3624497db5d","status":"passed","time":{"start":1750252854583,"stop":1750252856445,"duration":1862}},{"uid":"6e21e8919ef7ab74","status":"passed","time":{"start":1750084506996,"stop":1750084507961,"duration":965}},{"uid":"46bf7e5dbbd44a73","status":"passed","time":{"start":1750075562963,"stop":1750075563995,"duration":1032}}],"categories":[],"tags":[]},"source":"ddb409ab42c11aa9.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/287ea007721245b5.json b/allure-report/data/test-cases/ddca81f303e19280.json similarity index 91% rename from allure-report/data/test-cases/287ea007721245b5.json rename to allure-report/data/test-cases/ddca81f303e19280.json index be7383e..6bc32e1 100644 --- a/allure-report/data/test-cases/287ea007721245b5.json +++ b/allure-report/data/test-cases/ddca81f303e19280.json @@ -1 +1 @@ -{"uid":"287ea007721245b5","name":"Регистр в email (User@test.com ≠ user@test.com)","fullName":"ui/login/login.negative.spec.ts:58:7","historyId":"cc4ad4b40ef726af11b2bd4f5523dbe0:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750084491115,"stop":1750084492165,"duration":1050},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084491117,"stop":1750084491160,"duration":43},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084491118,"stop":1750084491121,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084491118,"stop":1750084491120,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084491121,"stop":1750084491160,"duration":39},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084491121,"stop":1750084491160,"duration":39},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084491162,"stop":1750084491920,"duration":758},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Autotest@Example.com)","time":{"start":1750084491921,"stop":1750084491982,"duration":61},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750084491983,"stop":1750084492017,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750084492018,"stop":1750084492050,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084492050,"stop":1750084492163,"duration":113},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084492163,"stop":1750084492168,"duration":5},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084492164,"stop":1750084492164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084492164,"stop":1750084492164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"tag","value":"test.com"},{"name":"tag","value":"test.com)"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9c0b65beee8ee273","status":"passed","time":{"start":1750075548592,"stop":1750075549589,"duration":997}}],"categories":[],"tags":["test.com","test.com)"]},"source":"287ea007721245b5.json","parameterValues":["chromium"]} \ No newline at end of file +{"uid":"ddca81f303e19280","name":"Регистр в email (User@test.com ≠ user@test.com)","fullName":"ui/login/login.negative.spec.ts:58:7","historyId":"cc4ad4b40ef726af11b2bd4f5523dbe0:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750084491115,"stop":1750084492165,"duration":1050},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084491117,"stop":1750084491160,"duration":43},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084491118,"stop":1750084491121,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084491118,"stop":1750084491120,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084491121,"stop":1750084491160,"duration":39},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084491121,"stop":1750084491160,"duration":39},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084491162,"stop":1750084491920,"duration":758},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Autotest@Example.com)","time":{"start":1750084491921,"stop":1750084491982,"duration":61},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750084491983,"stop":1750084492017,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750084492018,"stop":1750084492050,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084492050,"stop":1750084492163,"duration":113},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084492163,"stop":1750084492168,"duration":5},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084492164,"stop":1750084492164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084492164,"stop":1750084492164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"tag","value":"test.com"},{"name":"tag","value":"test.com)"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["test.com","test.com)"]},"source":"ddca81f303e19280.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/219f17571c2d2715.json b/allure-report/data/test-cases/dde43ba131ff753b.json similarity index 92% rename from allure-report/data/test-cases/219f17571c2d2715.json rename to allure-report/data/test-cases/dde43ba131ff753b.json index cd7949d..b28d8c6 100644 --- a/allure-report/data/test-cases/219f17571c2d2715.json +++ b/allure-report/data/test-cases/dde43ba131ff753b.json @@ -1 +1 @@ -{"uid":"219f17571c2d2715","name":"Только email без пароля","fullName":"ui/login/login.negative.spec.ts:37:7","historyId":"8c67bb2f4fb916157fb6191bbb5e4267:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750084490528,"stop":1750084491353,"duration":825},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084490528,"stop":1750084490582,"duration":54},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084490529,"stop":1750084490532,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084490529,"stop":1750084490531,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084490532,"stop":1750084490582,"duration":50},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084490533,"stop":1750084490582,"duration":49},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084490583,"stop":1750084491228,"duration":645},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084491230,"stop":1750084491281,"duration":51},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750084491282,"stop":1750084491315,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750084491315,"stop":1750084491347,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084491347,"stop":1750084491350,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084491350,"stop":1750084491355,"duration":5},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084491350,"stop":1750084491350,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084491350,"stop":1750084491350,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"897a3ca2fcb0baae","status":"passed","time":{"start":1750075547738,"stop":1750075548931,"duration":1193}}],"categories":[],"tags":[]},"source":"219f17571c2d2715.json","parameterValues":["chromium"]} \ No newline at end of file +{"uid":"dde43ba131ff753b","name":"Только email без пароля","fullName":"ui/login/login.negative.spec.ts:37:7","historyId":"8c67bb2f4fb916157fb6191bbb5e4267:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750084490528,"stop":1750084491353,"duration":825},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084490528,"stop":1750084490582,"duration":54},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084490529,"stop":1750084490532,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084490529,"stop":1750084490531,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084490532,"stop":1750084490582,"duration":50},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084490533,"stop":1750084490582,"duration":49},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084490583,"stop":1750084491228,"duration":645},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084491230,"stop":1750084491281,"duration":51},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750084491282,"stop":1750084491315,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750084491315,"stop":1750084491347,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084491347,"stop":1750084491350,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084491350,"stop":1750084491355,"duration":5},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084491350,"stop":1750084491350,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084491350,"stop":1750084491350,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"dde43ba131ff753b.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/de38ce213e0340ea.json b/allure-report/data/test-cases/de38ce213e0340ea.json new file mode 100644 index 0000000..08e2faf --- /dev/null +++ b/allure-report/data/test-cases/de38ce213e0340ea.json @@ -0,0 +1 @@ +{"uid":"de38ce213e0340ea","name":"Переход по ссылке \"Забыли пароль?\"","fullName":"ui/login/login.link.spec.ts:6:5","historyId":"91fcabcb669557e4ddb559c077420e45:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253539582,"stop":1750253541712,"duration":2130},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253539581,"stop":1750253540163,"duration":582},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750253539589,"stop":1750253539892,"duration":303},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750253539590,"stop":1750253539892,"duration":302},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253539893,"stop":1750253539949,"duration":56},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253539894,"stop":1750253539928,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253539952,"stop":1750253540163,"duration":211},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253539955,"stop":1750253540163,"duration":208},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750253540171,"stop":1750253541275,"duration":1104},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByText('Забыли пароль?').click","time":{"start":1750253541281,"stop":1750253541401,"duration":120},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750253541402,"stop":1750253541408,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253541409,"stop":1750253541415,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253541415,"stop":1750253542020,"duration":605},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253541416,"stop":1750253541416,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253541416,"stop":1750253541416,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f4d7a2aa751ac498","status":"passed","time":{"start":1750253470949,"stop":1750253477644,"duration":6695}},{"uid":"6abeabb3c0c9bfb8","status":"passed","time":{"start":1750252808951,"stop":1750252810557,"duration":1606}},{"uid":"5179e2557b0c956","status":"passed","time":{"start":1750084487578,"stop":1750084490119,"duration":2541}},{"uid":"fdee20ced16e0968","status":"passed","time":{"start":1750075545986,"stop":1750075547264,"duration":1278}}],"categories":[],"tags":[]},"source":"de38ce213e0340ea.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/de659773fd4e5c6e.json b/allure-report/data/test-cases/de659773fd4e5c6e.json new file mode 100644 index 0000000..da63c19 --- /dev/null +++ b/allure-report/data/test-cases/de659773fd4e5c6e.json @@ -0,0 +1 @@ +{"uid":"de659773fd4e5c6e","name":"Оба поля пустые","fullName":"ui/login/login.negative.spec.ts:27:7","historyId":"58990385f74407307e4ace7ad02abf05:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750253585670,"stop":1750253592130,"duration":6460},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253585670,"stop":1750253585823,"duration":153},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253585671,"stop":1750253585676,"duration":5},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253585671,"stop":1750253585674,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253585676,"stop":1750253585823,"duration":147},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253585677,"stop":1750253585823,"duration":146},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750253585824,"stop":1750253591960,"duration":6136},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750253591961,"stop":1750253591999,"duration":38},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750253591999,"stop":1750253592011,"duration":12},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750253592012,"stop":1750253592079,"duration":67},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253592080,"stop":1750253592087,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253592088,"stop":1750253592091,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253592092,"stop":1750253592132,"duration":40},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253592092,"stop":1750253592092,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253592092,"stop":1750253592092,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b69c438811cecbc2","status":"passed","time":{"start":1750252841468,"stop":1750252843449,"duration":1981}},{"uid":"87bb628f8970a7fd","status":"passed","time":{"start":1750084498792,"stop":1750084500139,"duration":1347}},{"uid":"8bca28d2be9013b8","status":"passed","time":{"start":1750075555537,"stop":1750075556816,"duration":1279}}],"categories":[],"tags":[]},"source":"de659773fd4e5c6e.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e0fff7aa214911e5.json b/allure-report/data/test-cases/e0fff7aa214911e5.json new file mode 100644 index 0000000..9418379 --- /dev/null +++ b/allure-report/data/test-cases/e0fff7aa214911e5.json @@ -0,0 +1 @@ +{"uid":"e0fff7aa214911e5","name":"Некорректный email (формат)","fullName":"ui/recovery/recover-negative.spec.ts:7:7","historyId":"d776d5fb9c918a79827aea417bdc449a:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750252858841,"stop":1750252860230,"duration":1389},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252858841,"stop":1750252858965,"duration":124},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252858842,"stop":1750252858845,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252858842,"stop":1750252858844,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252858845,"stop":1750252858965,"duration":120},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252858845,"stop":1750252858965,"duration":120},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750252858967,"stop":1750252860147,"duration":1180},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(invalid-email)","time":{"start":1750252860148,"stop":1750252860171,"duration":23},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750252860172,"stop":1750252860225,"duration":53},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252860225,"stop":1750252860229,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252860229,"stop":1750252860232,"duration":3},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252860229,"stop":1750252860229,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252860229,"stop":1750252860230,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-0"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"e0fff7aa214911e5.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d7fcf8f4f91e5813.json b/allure-report/data/test-cases/e1da2cec69164fbb.json similarity index 97% rename from allure-report/data/test-cases/d7fcf8f4f91e5813.json rename to allure-report/data/test-cases/e1da2cec69164fbb.json index 6b16d52..e52405b 100644 --- a/allure-report/data/test-cases/d7fcf8f4f91e5813.json +++ b/allure-report/data/test-cases/e1da2cec69164fbb.json @@ -1 +1 @@ -{"uid":"d7fcf8f4f91e5813","name":"Переход по ссылке \"Зарегистрируйтесь\"","fullName":"ui/login/login.link.spec.ts:15:5","historyId":"62db9603623bba26b6305edb541ef4fa:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750075552248,"stop":1750075554739,"duration":2491},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075552251,"stop":1750075554381,"duration":2130},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750075552256,"stop":1750075553220,"duration":964},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750075552257,"stop":1750075553219,"duration":962},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075553222,"stop":1750075553429,"duration":207},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075553224,"stop":1750075553427,"duration":203},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075553430,"stop":1750075554381,"duration":951},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075553431,"stop":1750075554380,"duration":949},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075554396,"stop":1750075555492,"duration":1096},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByText('Зарегистрируйтесь').click","time":{"start":1750075555495,"stop":1750075555640,"duration":145},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750075555642,"stop":1750075555653,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075555654,"stop":1750075555690,"duration":36},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075555690,"stop":1750075555716,"duration":26},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075555692,"stop":1750075555692,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075555693,"stop":1750075555693,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-1"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"d7fcf8f4f91e5813.json","parameterValues":["firefox"]} \ No newline at end of file +{"uid":"e1da2cec69164fbb","name":"Переход по ссылке \"Зарегистрируйтесь\"","fullName":"ui/login/login.link.spec.ts:15:5","historyId":"62db9603623bba26b6305edb541ef4fa:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750075552248,"stop":1750075554739,"duration":2491},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075552251,"stop":1750075554381,"duration":2130},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750075552256,"stop":1750075553220,"duration":964},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750075552257,"stop":1750075553219,"duration":962},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075553222,"stop":1750075553429,"duration":207},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075553224,"stop":1750075553427,"duration":203},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075553430,"stop":1750075554381,"duration":951},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075553431,"stop":1750075554380,"duration":949},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075554396,"stop":1750075555492,"duration":1096},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByText('Зарегистрируйтесь').click","time":{"start":1750075555495,"stop":1750075555640,"duration":145},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750075555642,"stop":1750075555653,"duration":11},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075555654,"stop":1750075555690,"duration":36},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075555690,"stop":1750075555716,"duration":26},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075555692,"stop":1750075555692,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075555693,"stop":1750075555693,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-1"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"e1da2cec69164fbb.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/85cece840380f1a2.json b/allure-report/data/test-cases/e1e480cf17fbc35b.json similarity index 97% rename from allure-report/data/test-cases/85cece840380f1a2.json rename to allure-report/data/test-cases/e1e480cf17fbc35b.json index f19b246..baceac4 100644 --- a/allure-report/data/test-cases/85cece840380f1a2.json +++ b/allure-report/data/test-cases/e1e480cf17fbc35b.json @@ -1 +1 @@ -{"uid":"85cece840380f1a2","name":"Несуществующий email","fullName":"ui/login/login.negative.spec.ts:17:7","historyId":"69b9236bee03ff0034bfbd5addc25f93:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750075563691,"stop":1750075564756,"duration":1065},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075563692,"stop":1750075563819,"duration":127},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075563693,"stop":1750075563698,"duration":5},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075563693,"stop":1750075563697,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075563698,"stop":1750075563819,"duration":121},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075563699,"stop":1750075563818,"duration":119},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075563820,"stop":1750075564437,"duration":617},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(wrong@example.com)","time":{"start":1750075564439,"stop":1750075564560,"duration":121},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(anyPassword123)","time":{"start":1750075564561,"stop":1750075564580,"duration":19},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750075564583,"stop":1750075564638,"duration":55},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075564639,"stop":1750075564750,"duration":111},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075564750,"stop":1750075564758,"duration":8},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075564750,"stop":1750075564750,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075564750,"stop":1750075564750,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-3"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"85cece840380f1a2.json","parameterValues":["webkit"]} \ No newline at end of file +{"uid":"e1e480cf17fbc35b","name":"Несуществующий email","fullName":"ui/login/login.negative.spec.ts:17:7","historyId":"69b9236bee03ff0034bfbd5addc25f93:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750075563691,"stop":1750075564756,"duration":1065},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075563692,"stop":1750075563819,"duration":127},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075563693,"stop":1750075563698,"duration":5},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075563693,"stop":1750075563697,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075563698,"stop":1750075563819,"duration":121},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075563699,"stop":1750075563818,"duration":119},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075563820,"stop":1750075564437,"duration":617},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(wrong@example.com)","time":{"start":1750075564439,"stop":1750075564560,"duration":121},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(anyPassword123)","time":{"start":1750075564561,"stop":1750075564580,"duration":19},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750075564583,"stop":1750075564638,"duration":55},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075564639,"stop":1750075564750,"duration":111},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075564750,"stop":1750075564758,"duration":8},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075564750,"stop":1750075564750,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075564750,"stop":1750075564750,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-3"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"e1e480cf17fbc35b.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e30d72eec270a5f2.json b/allure-report/data/test-cases/e30d72eec270a5f2.json new file mode 100644 index 0000000..2417e20 --- /dev/null +++ b/allure-report/data/test-cases/e30d72eec270a5f2.json @@ -0,0 +1 @@ +{"uid":"e30d72eec270a5f2","name":"Успешная регистрация нового пользователя","fullName":"ui/registration/register.spec.ts:6:7","historyId":"3562648cd3231e14b42a7151c17c62aa:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750169801429,"stop":1750169895816,"duration":94387},"status":"failed","statusMessage":"Error: locator.fill: Target page, context or browser has been closed\nCall log:\n - waiting for getByPlaceholder('Учёное звание*')\n - locator resolved to \n - fill(\"Доцент\")\n - attempting fill action\n 2 × waiting for element to be visible, enabled and editable\n - element is not editable\n - retrying fill action\n - waiting 20ms\n 2 × waiting for element to be visible, enabled and editable\n - element is not editable\n - retrying fill action\n - waiting 100ms\n 128 × waiting for element to be visible, enabled and editable\n - element is not editable\n - retrying fill action\n - waiting 500ms\n","statusTrace":"Error: locator.fill: Target page, context or browser has been closed\nCall log:\n - waiting for getByPlaceholder('Учёное звание*')\n - locator resolved to \n - fill(\"Доцент\")\n - attempting fill action\n 2 × waiting for element to be visible, enabled and editable\n - element is not editable\n - retrying fill action\n - waiting 20ms\n 2 × waiting for element to be visible, enabled and editable\n - element is not editable\n - retrying fill action\n - waiting 100ms\n 128 × waiting for element to be visible, enabled and editable\n - element is not editable\n - retrying fill action\n - waiting 500ms\n\n at RegisterPage.register (/Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/page-objects/RegisterPage.ts:100:35)\n at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.spec.ts:15:5","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"failed","statusMessage":"Error: locator.fill: Target page, context or browser has been closed\nCall log:\n - waiting for getByPlaceholder('Учёное звание*')\n - locator resolved to \n - fill(\"Доцент\")\n - attempting fill action\n 2 × waiting for element to be visible, enabled and editable\n - element is not editable\n - retrying fill action\n - waiting 20ms\n 2 × waiting for element to be visible, enabled and editable\n - element is not editable\n - retrying fill action\n - waiting 100ms\n 128 × waiting for element to be visible, enabled and editable\n - element is not editable\n - retrying fill action\n - waiting 500ms\n","statusTrace":"Error: locator.fill: Target page, context or browser has been closed\nCall log:\n - waiting for getByPlaceholder('Учёное звание*')\n - locator resolved to \n - fill(\"Доцент\")\n - attempting fill action\n 2 × waiting for element to be visible, enabled and editable\n - element is not editable\n - retrying fill action\n - waiting 20ms\n 2 × waiting for element to be visible, enabled and editable\n - element is not editable\n - retrying fill action\n - waiting 100ms\n 128 × waiting for element to be visible, enabled and editable\n - element is not editable\n - retrying fill action\n - waiting 500ms\n\n at RegisterPage.register (/Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/page-objects/RegisterPage.ts:100:35)\n at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.spec.ts:15:5","steps":[{"name":"Before Hooks","time":{"start":1750169801421,"stop":1750169804337,"duration":2916},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750169801425,"stop":1750169802962,"duration":1537},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750169801426,"stop":1750169802961,"duration":1535},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750169802962,"stop":1750169803824,"duration":862},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750169802964,"stop":1750169803820,"duration":856},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750169803824,"stop":1750169804337,"duration":513},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750169803825,"stop":1750169804337,"duration":512},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750169804342,"stop":1750169809231,"duration":4889},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Иван)","time":{"start":1750169809233,"stop":1750169811380,"duration":2147},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Тестов)","time":{"start":1750169811381,"stop":1750169812802,"duration":1421},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Александрович)","time":{"start":1750169812804,"stop":1750169813736,"duration":932},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Доцент)","time":{"start":1750169813738,"stop":1750169897544,"duration":83806},"status":"failed","statusMessage":"Error: locator.fill: Target page, context or browser has been closed\nCall log:\n - waiting for getByPlaceholder('Учёное звание*')\n - locator resolved to \n - fill(\"Доцент\")\n - attempting fill action\n 2 × waiting for element to be visible, enabled and editable\n - element is not editable\n - retrying fill action\n - waiting 20ms\n 2 × waiting for element to be visible, enabled and editable\n - element is not editable\n - retrying fill action\n - waiting 100ms\n 128 × waiting for element to be visible, enabled and editable\n - element is not editable\n - retrying fill action\n - waiting 500ms\n","statusTrace":"Error: locator.fill: Target page, context or browser has been closed\nCall log:\n - waiting for getByPlaceholder('Учёное звание*')\n - locator resolved to \n - fill(\"Доцент\")\n - attempting fill action\n 2 × waiting for element to be visible, enabled and editable\n - element is not editable\n - retrying fill action\n - waiting 20ms\n 2 × waiting for element to be visible, enabled and editable\n - element is not editable\n - retrying fill action\n - waiting 100ms\n 128 × waiting for element to be visible, enabled and editable\n - element is not editable\n - retrying fill action\n - waiting 500ms\n\n at RegisterPage.register (/Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/page-objects/RegisterPage.ts:100:35)\n at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.spec.ts:15:5","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":true,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"_error-context-0","time":{"start":1750169897590,"stop":1750169897590,"duration":0},"status":"unknown","steps":[],"attachments":[{"uid":"f267138497001754","name":"_error-context-0","source":"f267138497001754.md","type":"text/markdown","size":6785}],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":1,"hasContent":true,"attachmentStep":true},{"name":"_error-context-1","time":{"start":1750169897591,"stop":1750169897591,"duration":0},"status":"unknown","steps":[],"attachments":[{"uid":"cbb12df74fff4338","name":"_error-context-1","source":"cbb12df74fff4338.md","type":"text/markdown","size":3851}],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":1,"hasContent":true,"attachmentStep":true},{"name":"After Hooks","time":{"start":1750169897515,"stop":1750169897584,"duration":69},"status":"failed","statusMessage":"Error: browserContext._wrapApiCall: Test ended.\nBrowser logs:\n\n /Users/vladsmykov/Library/Caches/ms-playwright/chromium-1169/chrome-mac/Chromium.app/Contents/MacOS/Chromium --disable-field-trial-config --disable-background-networking --disable-background-timer-throttling --disable-backgrounding-occluded-windows --disable-back-forward-cache --disable-breakpad --disable-client-side-phishing-detection --disable-component-extensions-with-background-pages --disable-component-update --no-default-browser-check --disable-default-apps --disable-dev-shm-usage --disable-extensions --disable-features=AcceptCHFrame,AutoExpandDetailsElement,AvoidUnnecessaryBeforeUnloadCheckSync,CertificateTransparencyComponentUpdater,DeferRendererTasksAfterInput,DestroyProfileOnBrowserClose,DialMediaRouteProvider,ExtensionManifestV2Disabled,GlobalMediaControls,HttpsUpgrades,ImprovedCookieControls,LazyFrameLoading,LensOverlay,MediaRouter,PaintHolding,ThirdPartyStoragePartitioning,Translate --allow-pre-commit-input --disable-hang-monitor --disable-ipc-flooding-protection --disable-popup-blocking --disable-prompt-on-repost --disable-renderer-backgrounding --force-color-profile=srgb --metrics-recording-only --no-first-run --enable-automation --password-store=basic --use-mock-keychain --no-service-autorun --export-tagged-pdf --disable-search-engine-choice-screen --unsafely-disable-devtools-self-xss-warnings --enable-use-zoom-for-dsf=false --no-sandbox --user-data-dir=/var/folders/lg/h2gsyjw52lg9sl4rjvlxq91w0000gn/T/playwright_chromiumdev_profile-LRGFrl --remote-debugging-pipe --no-startup-window\n pid=51693\n[pid=51693][err] 2025-06-17 17:16:44.156 Chromium[51693:11871004] +[IMKClient subclass]: chose IMKClient_Modern\n[pid=51693][err] 2025-06-17 17:16:44.156 Chromium[51693:11871004] +[IMKInputSession subclass]: chose IMKInputSession_Modern\n[pid=51693] ","statusTrace":"Error: browserContext._wrapApiCall: Test ended.\nBrowser logs:\n\n /Users/vladsmykov/Library/Caches/ms-playwright/chromium-1169/chrome-mac/Chromium.app/Contents/MacOS/Chromium --disable-field-trial-config --disable-background-networking --disable-background-timer-throttling --disable-backgrounding-occluded-windows --disable-back-forward-cache --disable-breakpad --disable-client-side-phishing-detection --disable-component-extensions-with-background-pages --disable-component-update --no-default-browser-check --disable-default-apps --disable-dev-shm-usage --disable-extensions --disable-features=AcceptCHFrame,AutoExpandDetailsElement,AvoidUnnecessaryBeforeUnloadCheckSync,CertificateTransparencyComponentUpdater,DeferRendererTasksAfterInput,DestroyProfileOnBrowserClose,DialMediaRouteProvider,ExtensionManifestV2Disabled,GlobalMediaControls,HttpsUpgrades,ImprovedCookieControls,LazyFrameLoading,LensOverlay,MediaRouter,PaintHolding,ThirdPartyStoragePartitioning,Translate --allow-pre-commit-input --disable-hang-monitor --disable-ipc-flooding-protection --disable-popup-blocking --disable-prompt-on-repost --disable-renderer-backgrounding --force-color-profile=srgb --metrics-recording-only --no-first-run --enable-automation --password-store=basic --use-mock-keychain --no-service-autorun --export-tagged-pdf --disable-search-engine-choice-screen --unsafely-disable-devtools-self-xss-warnings --enable-use-zoom-for-dsf=false --no-sandbox --user-data-dir=/var/folders/lg/h2gsyjw52lg9sl4rjvlxq91w0000gn/T/playwright_chromiumdev_profile-LRGFrl --remote-debugging-pipe --no-startup-window\n pid=51693\n[pid=51693][err] 2025-06-17 17:16:44.156 Chromium[51693:11871004] +[IMKClient subclass]: chose IMKClient_Modern\n[pid=51693][err] 2025-06-17 17:16:44.156 Chromium[51693:11871004] +[IMKInputSession subclass]: chose IMKInputSession_Modern\n[pid=51693] ","steps":[{"name":"fixture: page","time":{"start":1750169897517,"stop":1750169897517,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750169897517,"stop":1750169897517,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":true,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":17,"shouldDisplayMessage":false,"attachmentsCount":2,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.spec.ts > Позитивные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-51689-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.spec.ts"},{"name":"subSuite","value":"Позитивные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"e30d72eec270a5f2.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e3d2684b480ff47b.json b/allure-report/data/test-cases/e3d2684b480ff47b.json deleted file mode 100644 index 29cce2a..0000000 --- a/allure-report/data/test-cases/e3d2684b480ff47b.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"e3d2684b480ff47b","name":"Неверный код подтверждения","fullName":"ui/recovery/recover-negative.spec.ts:23:7","historyId":"31f03826b2a8da254be42b2d49bc35f3:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750084492172,"stop":1750084493410,"duration":1238},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084492171,"stop":1750084492219,"duration":48},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084492172,"stop":1750084492175,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084492172,"stop":1750084492174,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084492175,"stop":1750084492219,"duration":44},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084492176,"stop":1750084492219,"duration":43},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750084492222,"stop":1750084493058,"duration":836},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084493059,"stop":1750084493091,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750084493092,"stop":1750084493133,"duration":41},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750084493134,"stop":1750084493237,"duration":103},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750084493238,"stop":1750084493238,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(6)","time":{"start":1750084493239,"stop":1750084493245,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(5)","time":{"start":1750084493246,"stop":1750084493249,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(4)","time":{"start":1750084493250,"stop":1750084493253,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(3)","time":{"start":1750084493253,"stop":1750084493256,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(2)","time":{"start":1750084493257,"stop":1750084493263,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(1)","time":{"start":1750084493264,"stop":1750084493270,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084493270,"stop":1750084493299,"duration":29},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084493300,"stop":1750084493404,"duration":104},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084493404,"stop":1750084493412,"duration":8},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084493404,"stop":1750084493404,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084493405,"stop":1750084493405,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":21,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3c11c1516f549102","status":"passed","time":{"start":1750075549609,"stop":1750075550703,"duration":1094}}],"categories":[],"tags":[]},"source":"e3d2684b480ff47b.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e41cf65ceae660f9.json b/allure-report/data/test-cases/e41cf65ceae660f9.json new file mode 100644 index 0000000..710b85c --- /dev/null +++ b/allure-report/data/test-cases/e41cf65ceae660f9.json @@ -0,0 +1 @@ +{"uid":"e41cf65ceae660f9","name":"has title","fullName":"example.spec.ts:3:5","historyId":"3a2a809b453af4fd564578d1a27f3e45:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750252808950,"stop":1750252811481,"duration":2531},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252808944,"stop":1750252809512,"duration":568},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750252808949,"stop":1750252809251,"duration":302},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750252808950,"stop":1750252809250,"duration":300},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252809251,"stop":1750252809272,"duration":21},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252809253,"stop":1750252809270,"duration":17},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252809273,"stop":1750252809512,"duration":239},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252809274,"stop":1750252809512,"duration":238},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(https://playwright.dev/)","time":{"start":1750252809521,"stop":1750252811665,"duration":2144},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveTitle","time":{"start":1750252811667,"stop":1750252811720,"duration":53},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252811721,"stop":1750252811783,"duration":62},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252811722,"stop":1750252811722,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252811723,"stop":1750252811723,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > chromium > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"example.spec.ts"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"e41cf65ceae660f9.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1f2ff10db5665418.json b/allure-report/data/test-cases/e48bc757cfbc0db0.json similarity index 94% rename from allure-report/data/test-cases/1f2ff10db5665418.json rename to allure-report/data/test-cases/e48bc757cfbc0db0.json index ba50ef8..733d3a1 100644 --- a/allure-report/data/test-cases/1f2ff10db5665418.json +++ b/allure-report/data/test-cases/e48bc757cfbc0db0.json @@ -1 +1 @@ -{"uid":"1f2ff10db5665418","name":"Пустое поле \"Повторите пароль\"","fullName":"ui/recovery/recover-negative.spec.ts:45:7","historyId":"e6d2fb91f0b85b95c3962ffc860dddd7:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750084509447,"stop":1750084510516,"duration":1069},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084509447,"stop":1750084509567,"duration":120},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084509448,"stop":1750084509450,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084509448,"stop":1750084509449,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084509450,"stop":1750084509567,"duration":117},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084509450,"stop":1750084509567,"duration":117},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750084509569,"stop":1750084510077,"duration":508},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084510078,"stop":1750084510162,"duration":84},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750084510163,"stop":1750084510240,"duration":77},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750084510240,"stop":1750084510242,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084510242,"stop":1750084510326,"duration":84},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084510327,"stop":1750084510337,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084510339,"stop":1750084510346,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084510346,"stop":1750084510354,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084510355,"stop":1750084510359,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084510359,"stop":1750084510364,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084510365,"stop":1750084510418,"duration":53},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750084510420,"stop":1750084510463,"duration":43},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750084510464,"stop":1750084510473,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084510473,"stop":1750084510509,"duration":36},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084510509,"stop":1750084510513,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084510513,"stop":1750084510518,"duration":5},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084510513,"stop":1750084510513,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084510513,"stop":1750084510514,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-0"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"583ad684ab6ad19e","status":"passed","time":{"start":1750075567085,"stop":1750075568056,"duration":971}}],"categories":[],"tags":[]},"source":"1f2ff10db5665418.json","parameterValues":["webkit"]} \ No newline at end of file +{"uid":"e48bc757cfbc0db0","name":"Пустое поле \"Повторите пароль\"","fullName":"ui/recovery/recover-negative.spec.ts:45:7","historyId":"e6d2fb91f0b85b95c3962ffc860dddd7:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750084509447,"stop":1750084510516,"duration":1069},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084509447,"stop":1750084509567,"duration":120},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084509448,"stop":1750084509450,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084509448,"stop":1750084509449,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084509450,"stop":1750084509567,"duration":117},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084509450,"stop":1750084509567,"duration":117},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750084509569,"stop":1750084510077,"duration":508},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084510078,"stop":1750084510162,"duration":84},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750084510163,"stop":1750084510240,"duration":77},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750084510240,"stop":1750084510242,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084510242,"stop":1750084510326,"duration":84},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084510327,"stop":1750084510337,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084510339,"stop":1750084510346,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084510346,"stop":1750084510354,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084510355,"stop":1750084510359,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084510359,"stop":1750084510364,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084510365,"stop":1750084510418,"duration":53},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750084510420,"stop":1750084510463,"duration":43},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750084510464,"stop":1750084510473,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084510473,"stop":1750084510509,"duration":36},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084510509,"stop":1750084510513,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084510513,"stop":1750084510518,"duration":5},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084510513,"stop":1750084510513,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084510513,"stop":1750084510514,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-0"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"e48bc757cfbc0db0.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/679d3e39f3748fca.json b/allure-report/data/test-cases/e5906d6180b5659f.json similarity index 98% rename from allure-report/data/test-cases/679d3e39f3748fca.json rename to allure-report/data/test-cases/e5906d6180b5659f.json index 1affe0a..86c1b70 100644 --- a/allure-report/data/test-cases/679d3e39f3748fca.json +++ b/allure-report/data/test-cases/e5906d6180b5659f.json @@ -1 +1 @@ -{"uid":"679d3e39f3748fca","name":"Некорректный новый пароль","fullName":"ui/recovery/recover-negative.spec.ts:34:7","historyId":"18246cf63350a71f5b46012e257bafcf:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750075566120,"stop":1750075567344,"duration":1224},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075566120,"stop":1750075566223,"duration":103},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075566121,"stop":1750075566123,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075566121,"stop":1750075566122,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075566123,"stop":1750075566223,"duration":100},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075566123,"stop":1750075566223,"duration":100},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750075566224,"stop":1750075566921,"duration":697},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075566922,"stop":1750075566985,"duration":63},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750075566987,"stop":1750075567023,"duration":36},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750075567023,"stop":1750075567026,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075567027,"stop":1750075567108,"duration":81},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075567110,"stop":1750075567117,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075567117,"stop":1750075567131,"duration":14},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075567132,"stop":1750075567138,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075567139,"stop":1750075567143,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075567143,"stop":1750075567148,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075567150,"stop":1750075567190,"duration":40},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(123)","time":{"start":1750075567191,"stop":1750075567278,"duration":87},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(123)","time":{"start":1750075567278,"stop":1750075567295,"duration":17},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075567296,"stop":1750075567339,"duration":43},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075567340,"stop":1750075567343,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075567343,"stop":1750075567345,"duration":2},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075567343,"stop":1750075567343,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075567343,"stop":1750075567343,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-2"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"679d3e39f3748fca.json","parameterValues":["webkit"]} \ No newline at end of file +{"uid":"e5906d6180b5659f","name":"Некорректный новый пароль","fullName":"ui/recovery/recover-negative.spec.ts:34:7","historyId":"18246cf63350a71f5b46012e257bafcf:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750075566120,"stop":1750075567344,"duration":1224},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075566120,"stop":1750075566223,"duration":103},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075566121,"stop":1750075566123,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075566121,"stop":1750075566122,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075566123,"stop":1750075566223,"duration":100},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075566123,"stop":1750075566223,"duration":100},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750075566224,"stop":1750075566921,"duration":697},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075566922,"stop":1750075566985,"duration":63},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750075566987,"stop":1750075567023,"duration":36},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750075567023,"stop":1750075567026,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075567027,"stop":1750075567108,"duration":81},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075567110,"stop":1750075567117,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075567117,"stop":1750075567131,"duration":14},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075567132,"stop":1750075567138,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075567139,"stop":1750075567143,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075567143,"stop":1750075567148,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075567150,"stop":1750075567190,"duration":40},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(123)","time":{"start":1750075567191,"stop":1750075567278,"duration":87},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(123)","time":{"start":1750075567278,"stop":1750075567295,"duration":17},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075567296,"stop":1750075567339,"duration":43},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075567340,"stop":1750075567343,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075567343,"stop":1750075567345,"duration":2},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075567343,"stop":1750075567343,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075567343,"stop":1750075567343,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-2"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"e5906d6180b5659f.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e5b2a4ada3cdd147.json b/allure-report/data/test-cases/e5b2a4ada3cdd147.json new file mode 100644 index 0000000..0994202 --- /dev/null +++ b/allure-report/data/test-cases/e5b2a4ada3cdd147.json @@ -0,0 +1 @@ +{"uid":"e5b2a4ada3cdd147","name":"Некорректный email (формат)","fullName":"ui/recovery/recover-negative.spec.ts:7:7","historyId":"d776d5fb9c918a79827aea417bdc449a:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253554554,"stop":1750253556742,"duration":2188},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253554554,"stop":1750253554593,"duration":39},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253554555,"stop":1750253554559,"duration":4},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253554555,"stop":1750253554556,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253554560,"stop":1750253554593,"duration":33},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253554560,"stop":1750253554593,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750253554595,"stop":1750253555639,"duration":1044},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(invalid-email)","time":{"start":1750253555640,"stop":1750253555754,"duration":114},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750253555756,"stop":1750253555799,"duration":43},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253555800,"stop":1750253555803,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253555803,"stop":1750253556744,"duration":941},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253555803,"stop":1750253555803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253555803,"stop":1750253555803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"83f95970b54a8b61","status":"passed","time":{"start":1750253482653,"stop":1750253484382,"duration":1729}},{"uid":"e9f1ec48bd8143d5","status":"passed","time":{"start":1750252813761,"stop":1750252814579,"duration":818}},{"uid":"a411f1fa33dcdf0b","status":"passed","time":{"start":1750084491646,"stop":1750084492211,"duration":565}},{"uid":"f2f0311a51af3e49","status":"passed","time":{"start":1750075549148,"stop":1750075550058,"duration":910}}],"categories":[],"tags":[]},"source":"e5b2a4ada3cdd147.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e69b3e4c0f6da480.json b/allure-report/data/test-cases/e69b3e4c0f6da480.json new file mode 100644 index 0000000..ea3e484 --- /dev/null +++ b/allure-report/data/test-cases/e69b3e4c0f6da480.json @@ -0,0 +1 @@ +{"uid":"e69b3e4c0f6da480","name":"Успешная регистрация нового пользователя","fullName":"ui/registration/register.spec.ts:6:7","historyId":"3562648cd3231e14b42a7151c17c62aa:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750252826035,"stop":1750252832119,"duration":6084},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252826035,"stop":1750252826075,"duration":40},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252826036,"stop":1750252826038,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252826036,"stop":1750252826037,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252826038,"stop":1750252826075,"duration":37},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252826038,"stop":1750252826075,"duration":37},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750252826076,"stop":1750252831714,"duration":5638},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Иван)","time":{"start":1750252831718,"stop":1750252831769,"duration":51},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Тестов)","time":{"start":1750252831769,"stop":1750252831774,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Александрович)","time":{"start":1750252831774,"stop":1750252831778,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёное звание*').click","time":{"start":1750252831779,"stop":1750252831809,"duration":30},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Доцент\"i)","time":{"start":1750252831810,"stop":1750252831867,"duration":57},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёная степень*').click","time":{"start":1750252831868,"stop":1750252831908,"duration":40},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Кандидат наук\"i)","time":{"start":1750252831909,"stop":1750252831940,"duration":31},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Преподаватель)","time":{"start":1750252831941,"stop":1750252831944,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(ЮФУ)","time":{"start":1750252831945,"stop":1750252831949,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest2601@example.com)","time":{"start":1750252831949,"stop":1750252831957,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(+79000002601)","time":{"start":1750252831957,"stop":1750252831963,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750252831963,"stop":1750252831967,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750252831968,"stop":1750252831972,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750252831972,"stop":1750252832007,"duration":35},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750252832008,"stop":1750252832114,"duration":106},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252832114,"stop":1750252832116,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252832116,"stop":1750252832121,"duration":5},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252832116,"stop":1750252832116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252832116,"stop":1750252832116,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":25,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.spec.ts > Позитивные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.spec.ts"},{"name":"subSuite","value":"Позитивные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"e69b3e4c0f6da480.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f7a702fb49f5f201.json b/allure-report/data/test-cases/e7be0225bfc5fe60.json similarity index 91% rename from allure-report/data/test-cases/f7a702fb49f5f201.json rename to allure-report/data/test-cases/e7be0225bfc5fe60.json index beb177b..e366d8b 100644 --- a/allure-report/data/test-cases/f7a702fb49f5f201.json +++ b/allure-report/data/test-cases/e7be0225bfc5fe60.json @@ -1 +1 @@ -{"uid":"f7a702fb49f5f201","name":"Оба поля пустые","fullName":"ui/login/login.negative.spec.ts:27:7","historyId":"58990385f74407307e4ace7ad02abf05:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750084490497,"stop":1750084491239,"duration":742},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084490496,"stop":1750084490550,"duration":54},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084490498,"stop":1750084490500,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084490498,"stop":1750084490500,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084490501,"stop":1750084490550,"duration":49},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084490504,"stop":1750084490550,"duration":46},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084490551,"stop":1750084491074,"duration":523},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750084491077,"stop":1750084491129,"duration":52},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750084491129,"stop":1750084491167,"duration":38},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750084491168,"stop":1750084491232,"duration":64},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084491233,"stop":1750084491235,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084491236,"stop":1750084491237,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084491237,"stop":1750084491241,"duration":4},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084491237,"stop":1750084491237,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084491237,"stop":1750084491237,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a46ddeec16f556fe","status":"passed","time":{"start":1750075547614,"stop":1750075548586,"duration":972}}],"categories":[],"tags":[]},"source":"f7a702fb49f5f201.json","parameterValues":["chromium"]} \ No newline at end of file +{"uid":"e7be0225bfc5fe60","name":"Оба поля пустые","fullName":"ui/login/login.negative.spec.ts:27:7","historyId":"58990385f74407307e4ace7ad02abf05:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750084490497,"stop":1750084491239,"duration":742},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084490496,"stop":1750084490550,"duration":54},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084490498,"stop":1750084490500,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084490498,"stop":1750084490500,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084490501,"stop":1750084490550,"duration":49},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084490504,"stop":1750084490550,"duration":46},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084490551,"stop":1750084491074,"duration":523},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750084491077,"stop":1750084491129,"duration":52},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750084491129,"stop":1750084491167,"duration":38},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750084491168,"stop":1750084491232,"duration":64},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084491233,"stop":1750084491235,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084491236,"stop":1750084491237,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084491237,"stop":1750084491241,"duration":4},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084491237,"stop":1750084491237,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084491237,"stop":1750084491237,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"e7be0225bfc5fe60.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e7e884e9a314400d.json b/allure-report/data/test-cases/e7e884e9a314400d.json new file mode 100644 index 0000000..e36871a --- /dev/null +++ b/allure-report/data/test-cases/e7e884e9a314400d.json @@ -0,0 +1 @@ +{"uid":"e7e884e9a314400d","name":"Отправка пустой формы","fullName":"ui/registration/register.negative.spec.ts:6:7","historyId":"61b0fd9a6b9153c787b71ef3413cea92:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750252824473,"stop":1750252825514,"duration":1041},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252824473,"stop":1750252824539,"duration":66},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252824474,"stop":1750252824475,"duration":1},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252824474,"stop":1750252824475,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252824476,"stop":1750252824539,"duration":63},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252824476,"stop":1750252824539,"duration":63},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750252824542,"stop":1750252825333,"duration":791},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750252825335,"stop":1750252825408,"duration":73},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.allTextContents(div[name=\"error\"] >> internal:has-text=\"Поле обязательно для заполнения\"i)","time":{"start":1750252825408,"stop":1750252825416,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeGreaterThan","time":{"start":1750252825417,"stop":1750252825417,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252825417,"stop":1750252825464,"duration":47},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252825464,"stop":1750252825516,"duration":52},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252825465,"stop":1750252825465,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252825466,"stop":1750252825466,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"e7e884e9a314400d.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e8eb57e815b04164.json b/allure-report/data/test-cases/e8eb57e815b04164.json new file mode 100644 index 0000000..21b26f9 --- /dev/null +++ b/allure-report/data/test-cases/e8eb57e815b04164.json @@ -0,0 +1 @@ +{"uid":"e8eb57e815b04164","name":"Некорректное имя и фамилия (слишком длинные)","fullName":"ui/registration/register.negative.spec.ts:16:7","historyId":"7134a02a04b606099de5c920fb62990a:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750252788273,"stop":1750252791909,"duration":3636},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252788273,"stop":1750252789232,"duration":959},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252788274,"stop":1750252789030,"duration":756},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252788274,"stop":1750252789029,"duration":755},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252789030,"stop":1750252789232,"duration":202},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252789030,"stop":1750252789232,"duration":202},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750252789233,"stop":1750252791747,"duration":2514},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(ААААААААААААААААААААААААААААААААААААААААААААААААААА)","time":{"start":1750252791749,"stop":1750252791804,"duration":55},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(БББББББББББББББББББББББББББББББББББББББББББББББББББ)","time":{"start":1750252791805,"stop":1750252791817,"duration":12},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750252791818,"stop":1750252791872,"duration":54},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252791873,"stop":1750252791880,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252791881,"stop":1750252791891,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252791892,"stop":1750252791912,"duration":20},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252791892,"stop":1750252791892,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252791892,"stop":1750252791892,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-57952-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"e8eb57e815b04164.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e9161570480d5e32.json b/allure-report/data/test-cases/e9161570480d5e32.json new file mode 100644 index 0000000..91e14fb --- /dev/null +++ b/allure-report/data/test-cases/e9161570480d5e32.json @@ -0,0 +1 @@ +{"uid":"e9161570480d5e32","name":"Несуществующий email","fullName":"ui/recovery/recover-negative.spec.ts:15:7","historyId":"c118be77fa2af6f0e0052ec7489ba66c:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750252858950,"stop":1750252860494,"duration":1544},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252858950,"stop":1750252859057,"duration":107},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252858951,"stop":1750252858953,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252858951,"stop":1750252858953,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252858954,"stop":1750252859057,"duration":103},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252858954,"stop":1750252859057,"duration":103},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750252859059,"stop":1750252860088,"duration":1029},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(nobody@example.com)","time":{"start":1750252860088,"stop":1750252860123,"duration":35},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750252860124,"stop":1750252860385,"duration":261},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252860385,"stop":1750252860491,"duration":106},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252860491,"stop":1750252860496,"duration":5},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252860491,"stop":1750252860491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252860491,"stop":1750252860492,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-3"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"e9161570480d5e32.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e9489fb366a07bd5.json b/allure-report/data/test-cases/e9489fb366a07bd5.json new file mode 100644 index 0000000..9280b20 --- /dev/null +++ b/allure-report/data/test-cases/e9489fb366a07bd5.json @@ -0,0 +1 @@ +{"uid":"e9489fb366a07bd5","name":"Некорректный новый пароль","fullName":"ui/recovery/recover-negative.spec.ts:34:7","historyId":"18246cf63350a71f5b46012e257bafcf:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750252859376,"stop":1750252861187,"duration":1811},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252859376,"stop":1750252859489,"duration":113},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252859377,"stop":1750252859382,"duration":5},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252859377,"stop":1750252859381,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252859382,"stop":1750252859489,"duration":107},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252859382,"stop":1750252859489,"duration":107},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750252859490,"stop":1750252860489,"duration":999},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750252860490,"stop":1750252860535,"duration":45},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750252860536,"stop":1750252860804,"duration":268},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750252860804,"stop":1750252860806,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252860808,"stop":1750252860854,"duration":46},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252860855,"stop":1750252860862,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252860863,"stop":1750252860873,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252860873,"stop":1750252860879,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252860881,"stop":1750252860890,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252860890,"stop":1750252860906,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750252860907,"stop":1750252861041,"duration":134},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(123)","time":{"start":1750252861042,"stop":1750252861133,"duration":91},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(123)","time":{"start":1750252861134,"stop":1750252861144,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750252861147,"stop":1750252861182,"duration":35},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252861183,"stop":1750252861185,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252861185,"stop":1750252861188,"duration":3},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252861186,"stop":1750252861186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252861186,"stop":1750252861186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-1"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"e9489fb366a07bd5.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/dd7e1d233c7f50ae.json b/allure-report/data/test-cases/e9d8c766e66a14f1.json similarity index 97% rename from allure-report/data/test-cases/dd7e1d233c7f50ae.json rename to allure-report/data/test-cases/e9d8c766e66a14f1.json index 5508e24..5c20e55 100644 --- a/allure-report/data/test-cases/dd7e1d233c7f50ae.json +++ b/allure-report/data/test-cases/e9d8c766e66a14f1.json @@ -1 +1 @@ -{"uid":"dd7e1d233c7f50ae","name":"Несуществующий email","fullName":"ui/recovery/recover-negative.spec.ts:15:7","historyId":"c118be77fa2af6f0e0052ec7489ba66c:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750075558210,"stop":1750075559483,"duration":1273},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075558210,"stop":1750075558518,"duration":308},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075558211,"stop":1750075558223,"duration":12},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075558211,"stop":1750075558223,"duration":12},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075558223,"stop":1750075558518,"duration":295},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075558224,"stop":1750075558518,"duration":294},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750075558519,"stop":1750075559252,"duration":733},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(nobody@example.com)","time":{"start":1750075559257,"stop":1750075559286,"duration":29},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750075559287,"stop":1750075559365,"duration":78},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075559366,"stop":1750075559478,"duration":112},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075559478,"stop":1750075559485,"duration":7},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075559478,"stop":1750075559478,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075559478,"stop":1750075559478,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-3"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"dd7e1d233c7f50ae.json","parameterValues":["firefox"]} \ No newline at end of file +{"uid":"e9d8c766e66a14f1","name":"Несуществующий email","fullName":"ui/recovery/recover-negative.spec.ts:15:7","historyId":"c118be77fa2af6f0e0052ec7489ba66c:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750075558210,"stop":1750075559483,"duration":1273},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075558210,"stop":1750075558518,"duration":308},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075558211,"stop":1750075558223,"duration":12},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075558211,"stop":1750075558223,"duration":12},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075558223,"stop":1750075558518,"duration":295},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075558224,"stop":1750075558518,"duration":294},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750075558519,"stop":1750075559252,"duration":733},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(nobody@example.com)","time":{"start":1750075559257,"stop":1750075559286,"duration":29},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750075559287,"stop":1750075559365,"duration":78},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075559366,"stop":1750075559478,"duration":112},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075559478,"stop":1750075559485,"duration":7},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075559478,"stop":1750075559478,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075559478,"stop":1750075559478,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-3"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"e9d8c766e66a14f1.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e9f1ec48bd8143d5.json b/allure-report/data/test-cases/e9f1ec48bd8143d5.json new file mode 100644 index 0000000..789d254 --- /dev/null +++ b/allure-report/data/test-cases/e9f1ec48bd8143d5.json @@ -0,0 +1 @@ +{"uid":"e9f1ec48bd8143d5","name":"Некорректный email (формат)","fullName":"ui/recovery/recover-negative.spec.ts:7:7","historyId":"d776d5fb9c918a79827aea417bdc449a:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750252813761,"stop":1750252814579,"duration":818},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252813761,"stop":1750252813805,"duration":44},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252813762,"stop":1750252813764,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252813762,"stop":1750252813764,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252813764,"stop":1750252813805,"duration":41},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252813765,"stop":1750252813805,"duration":40},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750252813807,"stop":1750252814514,"duration":707},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(invalid-email)","time":{"start":1750252814514,"stop":1750252814546,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750252814547,"stop":1750252814574,"duration":27},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252814575,"stop":1750252814576,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252814577,"stop":1750252814580,"duration":3},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252814577,"stop":1750252814577,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252814577,"stop":1750252814577,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"e9f1ec48bd8143d5.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ec532b7769a516a2.json b/allure-report/data/test-cases/ec532b7769a516a2.json new file mode 100644 index 0000000..74ec2f0 --- /dev/null +++ b/allure-report/data/test-cases/ec532b7769a516a2.json @@ -0,0 +1 @@ +{"uid":"ec532b7769a516a2","name":"Неверный пароль","fullName":"ui/login/login.negative.spec.ts:7:7","historyId":"500ad758ee2db2bb60aa832fb0abbb94:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750075563427,"stop":1750075564713,"duration":1286},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075563429,"stop":1750075563597,"duration":168},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075563431,"stop":1750075563440,"duration":9},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075563431,"stop":1750075563439,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075563440,"stop":1750075563597,"duration":157},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075563441,"stop":1750075563597,"duration":156},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075563599,"stop":1750075564360,"duration":761},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075564364,"stop":1750075564483,"duration":119},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(wrongpass)","time":{"start":1750075564490,"stop":1750075564522,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750075564524,"stop":1750075564586,"duration":62},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075564587,"stop":1750075564710,"duration":123},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075564710,"stop":1750075564719,"duration":9},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075564711,"stop":1750075564711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075564711,"stop":1750075564711,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-2"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"ec532b7769a516a2.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ec745f5324fbe651.json b/allure-report/data/test-cases/ec745f5324fbe651.json new file mode 100644 index 0000000..c956374 --- /dev/null +++ b/allure-report/data/test-cases/ec745f5324fbe651.json @@ -0,0 +1 @@ +{"uid":"ec745f5324fbe651","name":"Некорректный email (формат)","fullName":"ui/recovery/recover-negative.spec.ts:7:7","historyId":"d776d5fb9c918a79827aea417bdc449a:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750252843942,"stop":1750252845848,"duration":1906},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252843945,"stop":1750252844102,"duration":157},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252843946,"stop":1750252843950,"duration":4},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252843946,"stop":1750252843949,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252843950,"stop":1750252844102,"duration":152},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252843950,"stop":1750252844102,"duration":152},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750252844103,"stop":1750252845736,"duration":1633},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(invalid-email)","time":{"start":1750252845737,"stop":1750252845771,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750252845771,"stop":1750252845840,"duration":69},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252845840,"stop":1750252845846,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252845846,"stop":1750252845852,"duration":6},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252845846,"stop":1750252845846,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252845846,"stop":1750252845846,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-3"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"ec745f5324fbe651.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/edd25bdbd6ddf0ea.json b/allure-report/data/test-cases/edd25bdbd6ddf0ea.json new file mode 100644 index 0000000..8abab4f --- /dev/null +++ b/allure-report/data/test-cases/edd25bdbd6ddf0ea.json @@ -0,0 +1 @@ +{"uid":"edd25bdbd6ddf0ea","name":"Пользователь успешно восстанавливает пароль","fullName":"ui/recovery/recover-password.spec.ts:7:7","historyId":"1779c735aef9d62c071557455e74e57f:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750252847675,"stop":1750252850886,"duration":3211},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252847673,"stop":1750252847888,"duration":215},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252847675,"stop":1750252847691,"duration":16},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252847675,"stop":1750252847691,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252847691,"stop":1750252847888,"duration":197},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252847691,"stop":1750252847888,"duration":197},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750252847889,"stop":1750252850231,"duration":2342},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750252850232,"stop":1750252850265,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750252850265,"stop":1750252850338,"duration":73},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750252850338,"stop":1750252850450,"duration":112},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750252850450,"stop":1750252850453,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252850454,"stop":1750252850475,"duration":21},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252850476,"stop":1750252850482,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252850483,"stop":1750252850488,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252850489,"stop":1750252850496,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252850496,"stop":1750252850502,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252850503,"stop":1750252850507,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750252850507,"stop":1750252850568,"duration":61},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252850569,"stop":1750252850676,"duration":107},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750252850677,"stop":1750252850686,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750252850686,"stop":1750252850692,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750252850692,"stop":1750252850750,"duration":58},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750252850750,"stop":1750252850863,"duration":113},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252850863,"stop":1750252850870,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252850870,"stop":1750252850886,"duration":16},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252850870,"stop":1750252850870,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252850870,"stop":1750252850870,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":26,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-password.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-password.spec.ts > Восстановление пароля — позитивные сценарии"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-password.spec.ts"},{"name":"subSuite","value":"Восстановление пароля — позитивные сценарии"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"edd25bdbd6ddf0ea.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/edf7ac0b504065f6.json b/allure-report/data/test-cases/edf7ac0b504065f6.json new file mode 100644 index 0000000..a764c5d --- /dev/null +++ b/allure-report/data/test-cases/edf7ac0b504065f6.json @@ -0,0 +1 @@ +{"uid":"edf7ac0b504065f6","name":"Несуществующий email","fullName":"ui/recovery/recover-negative.spec.ts:15:7","historyId":"c118be77fa2af6f0e0052ec7489ba66c:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253556276,"stop":1750253562859,"duration":6583},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253556276,"stop":1750253556313,"duration":37},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253556277,"stop":1750253556279,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253556277,"stop":1750253556278,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253556280,"stop":1750253556313,"duration":33},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253556280,"stop":1750253556313,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750253556314,"stop":1750253561868,"duration":5554},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(nobody@example.com)","time":{"start":1750253561869,"stop":1750253561922,"duration":53},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750253561923,"stop":1750253561972,"duration":49},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253561973,"stop":1750253562052,"duration":79},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253562052,"stop":1750253562861,"duration":809},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253562052,"stop":1750253562053,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253562053,"stop":1750253562053,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"817c17381e536405","status":"passed","time":{"start":1750253482991,"stop":1750253489850,"duration":6859}},{"uid":"13b252823d104e51","status":"passed","time":{"start":1750252813957,"stop":1750252814935,"duration":978}},{"uid":"c765f18eca292609","status":"passed","time":{"start":1750084492074,"stop":1750084492970,"duration":896}},{"uid":"37a1f106cd5e1697","status":"passed","time":{"start":1750075549597,"stop":1750075550468,"duration":871}}],"categories":[],"tags":[]},"source":"edf7ac0b504065f6.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ef140abbb2fa0d70.json b/allure-report/data/test-cases/ef140abbb2fa0d70.json new file mode 100644 index 0000000..fd4351a --- /dev/null +++ b/allure-report/data/test-cases/ef140abbb2fa0d70.json @@ -0,0 +1 @@ +{"uid":"ef140abbb2fa0d70","name":"Пользователь должен успешно залогиниться с валидными данными","fullName":"ui/login/login.spec.ts:7:7","historyId":"92a5ca35180a4cbe902714b987a6bf44:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750252812984,"stop":1750252814009,"duration":1025},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252812984,"stop":1750252813024,"duration":40},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252812985,"stop":1750252812986,"duration":1},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252812985,"stop":1750252812986,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252812987,"stop":1750252813024,"duration":37},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252812987,"stop":1750252813024,"duration":37},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750252813024,"stop":1750252813719,"duration":695},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750252813719,"stop":1750252813774,"duration":55},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750252813775,"stop":1750252813812,"duration":37},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750252813814,"stop":1750252813840,"duration":26},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750252813841,"stop":1750252813951,"duration":110},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252813952,"stop":1750252813957,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252813957,"stop":1750252814010,"duration":53},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252813957,"stop":1750252813957,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252813957,"stop":1750252813957,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.spec.ts > Авторизация пользователя"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.spec.ts"},{"name":"subSuite","value":"Авторизация пользователя"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"ef140abbb2fa0d70.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ef734132e3fbac4f.json b/allure-report/data/test-cases/ef734132e3fbac4f.json new file mode 100644 index 0000000..626aa2a --- /dev/null +++ b/allure-report/data/test-cases/ef734132e3fbac4f.json @@ -0,0 +1 @@ +{"uid":"ef734132e3fbac4f","name":"Отправка пустой формы","fullName":"ui/registration/register.negative.spec.ts:6:7","historyId":"61b0fd9a6b9153c787b71ef3413cea92:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750253603906,"stop":1750253611740,"duration":7834},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253603905,"stop":1750253604112,"duration":207},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253603906,"stop":1750253603910,"duration":4},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253603907,"stop":1750253603909,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253603910,"stop":1750253604112,"duration":202},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253603911,"stop":1750253604112,"duration":201},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750253604113,"stop":1750253611442,"duration":7329},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750253611443,"stop":1750253611582,"duration":139},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.allTextContents(div[name=\"error\"] >> internal:has-text=\"Поле обязательно для заполнения\"i)","time":{"start":1750253611583,"stop":1750253611634,"duration":51},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeGreaterThan","time":{"start":1750253611634,"stop":1750253611635,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253611635,"stop":1750253611650,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253611650,"stop":1750253611741,"duration":91},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253611650,"stop":1750253611650,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253611651,"stop":1750253611651,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-1"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"bdc589133542e6a0","status":"passed","time":{"start":1750252847824,"stop":1750252849508,"duration":1684}},{"uid":"d47716dc365fadfc","status":"passed","time":{"start":1750252781050,"stop":1750252787606,"duration":6556}}],"categories":[],"tags":[]},"source":"ef734132e3fbac4f.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/28b1fab7a467f8a0.json b/allure-report/data/test-cases/f082ae4d0fad0972.json similarity index 96% rename from allure-report/data/test-cases/28b1fab7a467f8a0.json rename to allure-report/data/test-cases/f082ae4d0fad0972.json index 2a678f5..07a5ee4 100644 --- a/allure-report/data/test-cases/28b1fab7a467f8a0.json +++ b/allure-report/data/test-cases/f082ae4d0fad0972.json @@ -1 +1 @@ -{"uid":"28b1fab7a467f8a0","name":"Регистр в email (User@test.com ≠ user@test.com)","fullName":"ui/login/login.negative.spec.ts:58:7","historyId":"cc4ad4b40ef726af11b2bd4f5523dbe0:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750075564720,"stop":1750075566114,"duration":1394},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075564720,"stop":1750075564850,"duration":130},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075564721,"stop":1750075564724,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075564721,"stop":1750075564723,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075564724,"stop":1750075564850,"duration":126},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075564724,"stop":1750075564850,"duration":126},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075564851,"stop":1750075565808,"duration":957},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Autotest@Example.com)","time":{"start":1750075565809,"stop":1750075565888,"duration":79},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750075565889,"stop":1750075565904,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750075565905,"stop":1750075566007,"duration":102},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075566007,"stop":1750075566113,"duration":106},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075566113,"stop":1750075566116,"duration":3},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075566113,"stop":1750075566113,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075566113,"stop":1750075566113,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"tag","value":"test.com"},{"name":"tag","value":"test.com)"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-2"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["test.com","test.com)"]},"source":"28b1fab7a467f8a0.json","parameterValues":["webkit"]} \ No newline at end of file +{"uid":"f082ae4d0fad0972","name":"Регистр в email (User@test.com ≠ user@test.com)","fullName":"ui/login/login.negative.spec.ts:58:7","historyId":"cc4ad4b40ef726af11b2bd4f5523dbe0:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750075564720,"stop":1750075566114,"duration":1394},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075564720,"stop":1750075564850,"duration":130},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075564721,"stop":1750075564724,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075564721,"stop":1750075564723,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075564724,"stop":1750075564850,"duration":126},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075564724,"stop":1750075564850,"duration":126},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075564851,"stop":1750075565808,"duration":957},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Autotest@Example.com)","time":{"start":1750075565809,"stop":1750075565888,"duration":79},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750075565889,"stop":1750075565904,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750075565905,"stop":1750075566007,"duration":102},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075566007,"stop":1750075566113,"duration":106},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075566113,"stop":1750075566116,"duration":3},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075566113,"stop":1750075566113,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075566113,"stop":1750075566113,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"tag","value":"test.com"},{"name":"tag","value":"test.com)"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-2"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["test.com","test.com)"]},"source":"f082ae4d0fad0972.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f12e99c96967b550.json b/allure-report/data/test-cases/f12e99c96967b550.json new file mode 100644 index 0000000..6d55567 --- /dev/null +++ b/allure-report/data/test-cases/f12e99c96967b550.json @@ -0,0 +1 @@ +{"uid":"f12e99c96967b550","name":"Переход по ссылке \"Зарегистрируйтесь\"","fullName":"ui/login/login.link.spec.ts:15:5","historyId":"62db9603623bba26b6305edb541ef4fa:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750253580604,"stop":1750253590440,"duration":9836},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253580605,"stop":1750253582771,"duration":2166},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750253580618,"stop":1750253582026,"duration":1408},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750253580620,"stop":1750253582026,"duration":1406},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253582028,"stop":1750253582265,"duration":237},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253582031,"stop":1750253582245,"duration":214},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253582266,"stop":1750253582771,"duration":505},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253582267,"stop":1750253582771,"duration":504},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750253582773,"stop":1750253591682,"duration":8909},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByText('Зарегистрируйтесь').click","time":{"start":1750253591685,"stop":1750253591777,"duration":92},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750253591780,"stop":1750253591798,"duration":18},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253591798,"stop":1750253591808,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253591808,"stop":1750253591856,"duration":48},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253591808,"stop":1750253591808,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253591808,"stop":1750253591808,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-1"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"403c230730f38ab","status":"passed","time":{"start":1750252832579,"stop":1750252841686,"duration":9107}},{"uid":"1c9f284fe6b843b","status":"passed","time":{"start":1750084494915,"stop":1750084497374,"duration":2459}},{"uid":"e1da2cec69164fbb","status":"passed","time":{"start":1750075552248,"stop":1750075554739,"duration":2491}}],"categories":[],"tags":[]},"source":"f12e99c96967b550.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/31bb4ab4326f6487.json b/allure-report/data/test-cases/f2cbbc5b808899ed.json similarity index 91% rename from allure-report/data/test-cases/31bb4ab4326f6487.json rename to allure-report/data/test-cases/f2cbbc5b808899ed.json index e118d25..d8b8278 100644 --- a/allure-report/data/test-cases/31bb4ab4326f6487.json +++ b/allure-report/data/test-cases/f2cbbc5b808899ed.json @@ -1 +1 @@ -{"uid":"31bb4ab4326f6487","name":"Переход по ссылке \"Зарегистрируйтесь\"","fullName":"ui/login/login.link.spec.ts:15:5","historyId":"62db9603623bba26b6305edb541ef4fa:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750084487577,"stop":1750084488773,"duration":1196},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084487572,"stop":1750084488227,"duration":655},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750084487576,"stop":1750084488053,"duration":477},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750084487578,"stop":1750084488053,"duration":475},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084488056,"stop":1750084488068,"duration":12},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084488057,"stop":1750084488067,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084488069,"stop":1750084488227,"duration":158},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084488071,"stop":1750084488227,"duration":156},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084488236,"stop":1750084489029,"duration":793},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByText('Зарегистрируйтесь').click","time":{"start":1750084489030,"stop":1750084489217,"duration":187},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750084489219,"stop":1750084489231,"duration":12},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084489233,"stop":1750084489238,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084489238,"stop":1750084489251,"duration":13},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084489238,"stop":1750084489239,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084489239,"stop":1750084489239,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6475d4d062ae690d","status":"passed","time":{"start":1750075545992,"stop":1750075547267,"duration":1275}}],"categories":[],"tags":[]},"source":"31bb4ab4326f6487.json","parameterValues":["chromium"]} \ No newline at end of file +{"uid":"f2cbbc5b808899ed","name":"Переход по ссылке \"Зарегистрируйтесь\"","fullName":"ui/login/login.link.spec.ts:15:5","historyId":"62db9603623bba26b6305edb541ef4fa:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750084487577,"stop":1750084488773,"duration":1196},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084487572,"stop":1750084488227,"duration":655},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750084487576,"stop":1750084488053,"duration":477},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750084487578,"stop":1750084488053,"duration":475},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084488056,"stop":1750084488068,"duration":12},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084488057,"stop":1750084488067,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084488069,"stop":1750084488227,"duration":158},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084488071,"stop":1750084488227,"duration":156},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084488236,"stop":1750084489029,"duration":793},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByText('Зарегистрируйтесь').click","time":{"start":1750084489030,"stop":1750084489217,"duration":187},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750084489219,"stop":1750084489231,"duration":12},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084489233,"stop":1750084489238,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084489238,"stop":1750084489251,"duration":13},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084489238,"stop":1750084489239,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084489239,"stop":1750084489239,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"f2cbbc5b808899ed.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a03daf7c9a0d201b.json b/allure-report/data/test-cases/f2f0311a51af3e49.json similarity index 97% rename from allure-report/data/test-cases/a03daf7c9a0d201b.json rename to allure-report/data/test-cases/f2f0311a51af3e49.json index f79642b..3dadeed 100644 --- a/allure-report/data/test-cases/a03daf7c9a0d201b.json +++ b/allure-report/data/test-cases/f2f0311a51af3e49.json @@ -1 +1 @@ -{"uid":"a03daf7c9a0d201b","name":"Некорректный email (формат)","fullName":"ui/recovery/recover-negative.spec.ts:7:7","historyId":"d776d5fb9c918a79827aea417bdc449a:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750075549148,"stop":1750075550058,"duration":910},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075549148,"stop":1750075549186,"duration":38},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075549148,"stop":1750075549150,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075549149,"stop":1750075549150,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075549150,"stop":1750075549186,"duration":36},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075549151,"stop":1750075549186,"duration":35},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750075549188,"stop":1750075549991,"duration":803},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(invalid-email)","time":{"start":1750075549992,"stop":1750075550026,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750075550027,"stop":1750075550054,"duration":27},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075550054,"stop":1750075550056,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075550056,"stop":1750075550059,"duration":3},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075550057,"stop":1750075550057,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075550057,"stop":1750075550057,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"a03daf7c9a0d201b.json","parameterValues":["chromium"]} \ No newline at end of file +{"uid":"f2f0311a51af3e49","name":"Некорректный email (формат)","fullName":"ui/recovery/recover-negative.spec.ts:7:7","historyId":"d776d5fb9c918a79827aea417bdc449a:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750075549148,"stop":1750075550058,"duration":910},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075549148,"stop":1750075549186,"duration":38},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075549148,"stop":1750075549150,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075549149,"stop":1750075549150,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075549150,"stop":1750075549186,"duration":36},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075549151,"stop":1750075549186,"duration":35},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750075549188,"stop":1750075549991,"duration":803},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(invalid-email)","time":{"start":1750075549992,"stop":1750075550026,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750075550027,"stop":1750075550054,"duration":27},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075550054,"stop":1750075550056,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075550056,"stop":1750075550059,"duration":3},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075550057,"stop":1750075550057,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075550057,"stop":1750075550057,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"f2f0311a51af3e49.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f32fd3da60726a1e.json b/allure-report/data/test-cases/f32fd3da60726a1e.json new file mode 100644 index 0000000..598f279 --- /dev/null +++ b/allure-report/data/test-cases/f32fd3da60726a1e.json @@ -0,0 +1 @@ +{"uid":"f32fd3da60726a1e","name":"Некорректное имя и фамилия (слишком длинные)","fullName":"ui/registration/register.negative.spec.ts:16:7","historyId":"7134a02a04b606099de5c920fb62990a:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750253604406,"stop":1750253611801,"duration":7395},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253604407,"stop":1750253604618,"duration":211},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253604408,"stop":1750253604413,"duration":5},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253604408,"stop":1750253604410,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253604413,"stop":1750253604618,"duration":205},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253604414,"stop":1750253604618,"duration":204},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750253604622,"stop":1750253611492,"duration":6870},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(ААААААААААААААААААААААААААААААААААААААААААААААААААА)","time":{"start":1750253611496,"stop":1750253611595,"duration":99},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(БББББББББББББББББББББББББББББББББББББББББББББББББББ)","time":{"start":1750253611596,"stop":1750253611639,"duration":43},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750253611642,"stop":1750253611733,"duration":91},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253611734,"stop":1750253611747,"duration":13},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253611748,"stop":1750253611760,"duration":12},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253611761,"stop":1750253611804,"duration":43},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253611761,"stop":1750253611761,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253611761,"stop":1750253611761,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-3"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"2d1faaf3f86c6c4b","status":"passed","time":{"start":1750252847933,"stop":1750252851077,"duration":3144}},{"uid":"e8eb57e815b04164","status":"passed","time":{"start":1750252788273,"stop":1750252791909,"duration":3636}}],"categories":[],"tags":[]},"source":"f32fd3da60726a1e.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f3eb6f5f41d3af6c.json b/allure-report/data/test-cases/f3eb6f5f41d3af6c.json deleted file mode 100644 index 3fc86d6..0000000 --- a/allure-report/data/test-cases/f3eb6f5f41d3af6c.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"f3eb6f5f41d3af6c","name":"Пользователь успешно восстанавливает пароль","fullName":"ui/recovery/recover-password.spec.ts:7:7","historyId":"1779c735aef9d62c071557455e74e57f:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750075567353,"stop":1750075568728,"duration":1375},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075567352,"stop":1750075567470,"duration":118},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075567354,"stop":1750075567357,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075567354,"stop":1750075567357,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075567357,"stop":1750075567470,"duration":113},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075567357,"stop":1750075567470,"duration":113},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750075567471,"stop":1750075568207,"duration":736},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075568208,"stop":1750075568257,"duration":49},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750075568257,"stop":1750075568293,"duration":36},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750075568294,"stop":1750075568402,"duration":108},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750075568403,"stop":1750075568404,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075568405,"stop":1750075568409,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075568409,"stop":1750075568413,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075568414,"stop":1750075568419,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075568419,"stop":1750075568425,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075568425,"stop":1750075568429,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075568429,"stop":1750075568434,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075568434,"stop":1750075568473,"duration":39},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075568474,"stop":1750075568577,"duration":103},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750075568577,"stop":1750075568582,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750075568583,"stop":1750075568591,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075568591,"stop":1750075568620,"duration":29},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750075568620,"stop":1750075568724,"duration":104},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075568724,"stop":1750075568727,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075568727,"stop":1750075568729,"duration":2},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075568727,"stop":1750075568727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075568727,"stop":1750075568727,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":26,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-password.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-password.spec.ts > Восстановление пароля — позитивные сценарии"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-2"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-password.spec.ts"},{"name":"subSuite","value":"Восстановление пароля — позитивные сценарии"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"f3eb6f5f41d3af6c.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f401dd4efd30ea3b.json b/allure-report/data/test-cases/f401dd4efd30ea3b.json new file mode 100644 index 0000000..cdf8490 --- /dev/null +++ b/allure-report/data/test-cases/f401dd4efd30ea3b.json @@ -0,0 +1 @@ +{"uid":"f401dd4efd30ea3b","name":"Переключатель видимости пароля показывает и скрывает ввод","fullName":"ui/login/login.ui.spec.ts:7:7","historyId":"b1726395bd827a3a21fe3c829a098be4:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750252857947,"stop":1750252859370,"duration":1423},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252857947,"stop":1750252858056,"duration":109},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252857948,"stop":1750252857950,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252857948,"stop":1750252857950,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252857950,"stop":1750252858056,"duration":106},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252857951,"stop":1750252858056,"duration":105},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750252858057,"stop":1750252859212,"duration":1155},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750252859213,"stop":1750252859295,"duration":82},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750252859296,"stop":1750252859298,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750252859299,"stop":1750252859299,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByAltText('показать пароль').click","time":{"start":1750252859299,"stop":1750252859333,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750252859334,"stop":1750252859335,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750252859335,"stop":1750252859336,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByAltText('показать пароль').click","time":{"start":1750252859336,"stop":1750252859365,"duration":29},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Пароль').getAttribute","time":{"start":1750252859365,"stop":1750252859366,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBe","time":{"start":1750252859366,"stop":1750252859366,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252859367,"stop":1750252859372,"duration":5},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252859367,"stop":1750252859367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252859367,"stop":1750252859367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":18,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.ui.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.ui.spec.ts > UI сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-1"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.ui.spec.ts"},{"name":"subSuite","value":"UI сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"f401dd4efd30ea3b.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f4d7a2aa751ac498.json b/allure-report/data/test-cases/f4d7a2aa751ac498.json new file mode 100644 index 0000000..eeac020 --- /dev/null +++ b/allure-report/data/test-cases/f4d7a2aa751ac498.json @@ -0,0 +1 @@ +{"uid":"f4d7a2aa751ac498","name":"Переход по ссылке \"Забыли пароль?\"","fullName":"ui/login/login.link.spec.ts:6:5","historyId":"91fcabcb669557e4ddb559c077420e45:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253470949,"stop":1750253477644,"duration":6695},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253470946,"stop":1750253471643,"duration":697},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750253470949,"stop":1750253471348,"duration":399},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750253470952,"stop":1750253471347,"duration":395},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253471349,"stop":1750253471395,"duration":46},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253471350,"stop":1750253471365,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253471396,"stop":1750253471643,"duration":247},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253471397,"stop":1750253471643,"duration":246},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750253471645,"stop":1750253472728,"duration":1083},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByText('Забыли пароль?').click","time":{"start":1750253472730,"stop":1750253472842,"duration":112},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750253472845,"stop":1750253472858,"duration":13},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253472858,"stop":1750253472863,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253472864,"stop":1750253478043,"duration":5179},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253472864,"stop":1750253472864,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253472864,"stop":1750253472864,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"f4d7a2aa751ac498.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f4db4683dddde61e.json b/allure-report/data/test-cases/f4db4683dddde61e.json new file mode 100644 index 0000000..e02b193 --- /dev/null +++ b/allure-report/data/test-cases/f4db4683dddde61e.json @@ -0,0 +1 @@ +{"uid":"f4db4683dddde61e","name":"Слишком длинное название организации","fullName":"ui/registration/register.negative.spec.ts:48:7","historyId":"26486147b8778ca2341563049d2a3728:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750252690590,"stop":1750252693284,"duration":2694},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252690581,"stop":1750252692345,"duration":1764},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750252690585,"stop":1750252692103,"duration":1518},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750252690586,"stop":1750252692103,"duration":1517},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252692104,"stop":1750252692114,"duration":10},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252692105,"stop":1750252692113,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252692114,"stop":1750252692345,"duration":231},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252692115,"stop":1750252692345,"duration":230},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750252692348,"stop":1750252693104,"duration":756},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Иван)","time":{"start":1750252693109,"stop":1750252693252,"duration":143},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Иванов)","time":{"start":1750252693252,"stop":1750252693272,"duration":20},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёное звание*').click","time":{"start":1750252693273,"stop":1750252693368,"duration":95},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Доцент\"i)","time":{"start":1750252693370,"stop":1750252693643,"duration":273},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёная степень*').click","time":{"start":1750252693644,"stop":1750252694536,"duration":892},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Кандидат наук\"i)","time":{"start":1750252694537,"stop":1750252694568,"duration":31},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Преподаватель)","time":{"start":1750252694569,"stop":1750252694573,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(ООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООО)","time":{"start":1750252694574,"stop":1750252694581,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(test1750252693105@example.com)","time":{"start":1750252694581,"stop":1750252694588,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(+79990758598)","time":{"start":1750252694589,"stop":1750252694597,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123)","time":{"start":1750252694598,"stop":1750252694605,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123)","time":{"start":1750252694606,"stop":1750252694616,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750252694617,"stop":1750252694652,"duration":35},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252694654,"stop":1750252694764,"duration":110},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252694764,"stop":1750252694797,"duration":33},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252694765,"stop":1750252694765,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252694765,"stop":1750252694765,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":25,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-57743-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"f4db4683dddde61e.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e109d1fc6f020451.json b/allure-report/data/test-cases/f507eec9254d2e9e.json similarity index 96% rename from allure-report/data/test-cases/e109d1fc6f020451.json rename to allure-report/data/test-cases/f507eec9254d2e9e.json index ebe3ad7..7b58391 100644 --- a/allure-report/data/test-cases/e109d1fc6f020451.json +++ b/allure-report/data/test-cases/f507eec9254d2e9e.json @@ -1 +1 @@ -{"uid":"e109d1fc6f020451","name":"get started link","fullName":"example.spec.ts:10:5","historyId":"37e4aa066a5f6eac2e4d3b98a2ed98a7:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750075561747,"stop":1750075563488,"duration":1741},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075561749,"stop":1750075562492,"duration":743},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750075561757,"stop":1750075561946,"duration":189},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750075561759,"stop":1750075561945,"duration":186},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075561947,"stop":1750075562012,"duration":65},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075561949,"stop":1750075562011,"duration":62},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075562013,"stop":1750075562492,"duration":479},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075562013,"stop":1750075562492,"duration":479},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(https://playwright.dev/)","time":{"start":1750075562493,"stop":1750075563337,"duration":844},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('link', { name: 'Get started' }).click","time":{"start":1750075563342,"stop":1750075563464,"duration":122},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075563471,"stop":1750075563664,"duration":193},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075563664,"stop":1750075563687,"duration":23},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075563666,"stop":1750075563666,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075563666,"stop":1750075563666,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > webkit > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-0"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"example.spec.ts"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"e109d1fc6f020451.json","parameterValues":["webkit"]} \ No newline at end of file +{"uid":"f507eec9254d2e9e","name":"get started link","fullName":"example.spec.ts:10:5","historyId":"37e4aa066a5f6eac2e4d3b98a2ed98a7:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750075561747,"stop":1750075563488,"duration":1741},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075561749,"stop":1750075562492,"duration":743},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750075561757,"stop":1750075561946,"duration":189},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750075561759,"stop":1750075561945,"duration":186},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075561947,"stop":1750075562012,"duration":65},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075561949,"stop":1750075562011,"duration":62},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075562013,"stop":1750075562492,"duration":479},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075562013,"stop":1750075562492,"duration":479},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(https://playwright.dev/)","time":{"start":1750075562493,"stop":1750075563337,"duration":844},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('link', { name: 'Get started' }).click","time":{"start":1750075563342,"stop":1750075563464,"duration":122},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075563471,"stop":1750075563664,"duration":193},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075563664,"stop":1750075563687,"duration":23},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075563666,"stop":1750075563666,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075563666,"stop":1750075563666,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > webkit > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-0"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"example.spec.ts"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"f507eec9254d2e9e.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1aae5dc9a4d21981.json b/allure-report/data/test-cases/f51af709c5965053.json similarity index 91% rename from allure-report/data/test-cases/1aae5dc9a4d21981.json rename to allure-report/data/test-cases/f51af709c5965053.json index 35ed6cf..c7c6d4a 100644 --- a/allure-report/data/test-cases/1aae5dc9a4d21981.json +++ b/allure-report/data/test-cases/f51af709c5965053.json @@ -1 +1 @@ -{"uid":"1aae5dc9a4d21981","name":"Некорректный формат email","fullName":"ui/login/login.negative.spec.ts:46:7","historyId":"e5764a911de0175f8f7118313ae14544:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750084490746,"stop":1750084491640,"duration":894},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084490746,"stop":1750084490783,"duration":37},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084490747,"stop":1750084490748,"duration":1},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084490747,"stop":1750084490748,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084490749,"stop":1750084490783,"duration":34},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084490749,"stop":1750084490782,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084490783,"stop":1750084491521,"duration":738},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(invalid-email)","time":{"start":1750084491521,"stop":1750084491569,"duration":48},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(anyPassword123)","time":{"start":1750084491569,"stop":1750084491600,"duration":31},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750084491601,"stop":1750084491631,"duration":30},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084491631,"stop":1750084491636,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084491636,"stop":1750084491642,"duration":6},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084491636,"stop":1750084491637,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084491637,"stop":1750084491637,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-1"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e52a54484d42ab27","status":"passed","time":{"start":1750075548464,"stop":1750075549142,"duration":678}}],"categories":[],"tags":[]},"source":"1aae5dc9a4d21981.json","parameterValues":["chromium"]} \ No newline at end of file +{"uid":"f51af709c5965053","name":"Некорректный формат email","fullName":"ui/login/login.negative.spec.ts:46:7","historyId":"e5764a911de0175f8f7118313ae14544:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750084490746,"stop":1750084491640,"duration":894},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084490746,"stop":1750084490783,"duration":37},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084490747,"stop":1750084490748,"duration":1},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084490747,"stop":1750084490748,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084490749,"stop":1750084490783,"duration":34},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084490749,"stop":1750084490782,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750084490783,"stop":1750084491521,"duration":738},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(invalid-email)","time":{"start":1750084491521,"stop":1750084491569,"duration":48},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(anyPassword123)","time":{"start":1750084491569,"stop":1750084491600,"duration":31},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750084491601,"stop":1750084491631,"duration":30},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084491631,"stop":1750084491636,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084491636,"stop":1750084491642,"duration":6},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084491636,"stop":1750084491637,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084491637,"stop":1750084491637,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-1"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"f51af709c5965053.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/583ad684ab6ad19e.json b/allure-report/data/test-cases/f67d4196db792c92.json similarity index 97% rename from allure-report/data/test-cases/583ad684ab6ad19e.json rename to allure-report/data/test-cases/f67d4196db792c92.json index dc1bc08..91006d3 100644 --- a/allure-report/data/test-cases/583ad684ab6ad19e.json +++ b/allure-report/data/test-cases/f67d4196db792c92.json @@ -1 +1 @@ -{"uid":"583ad684ab6ad19e","name":"Пустое поле \"Повторите пароль\"","fullName":"ui/recovery/recover-negative.spec.ts:45:7","historyId":"e6d2fb91f0b85b95c3962ffc860dddd7:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750075567085,"stop":1750075568056,"duration":971},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075567087,"stop":1750075567208,"duration":121},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075567087,"stop":1750075567090,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075567088,"stop":1750075567090,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075567091,"stop":1750075567208,"duration":117},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075567091,"stop":1750075567208,"duration":117},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750075567209,"stop":1750075567689,"duration":480},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075567690,"stop":1750075567738,"duration":48},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750075567738,"stop":1750075567772,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750075567772,"stop":1750075567773,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075567774,"stop":1750075567855,"duration":81},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075567856,"stop":1750075567861,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075567861,"stop":1750075567867,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075567867,"stop":1750075567871,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075567872,"stop":1750075567875,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075567876,"stop":1750075567879,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075567880,"stop":1750075567922,"duration":42},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750075567922,"stop":1750075568007,"duration":85},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750075568007,"stop":1750075568013,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075568014,"stop":1750075568053,"duration":39},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075568053,"stop":1750075568056,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075568056,"stop":1750075568059,"duration":3},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075568056,"stop":1750075568056,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075568056,"stop":1750075568056,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-3"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"583ad684ab6ad19e.json","parameterValues":["webkit"]} \ No newline at end of file +{"uid":"f67d4196db792c92","name":"Пустое поле \"Повторите пароль\"","fullName":"ui/recovery/recover-negative.spec.ts:45:7","historyId":"e6d2fb91f0b85b95c3962ffc860dddd7:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750075567085,"stop":1750075568056,"duration":971},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075567087,"stop":1750075567208,"duration":121},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075567087,"stop":1750075567090,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075567088,"stop":1750075567090,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075567091,"stop":1750075567208,"duration":117},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075567091,"stop":1750075567208,"duration":117},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750075567209,"stop":1750075567689,"duration":480},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075567690,"stop":1750075567738,"duration":48},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750075567738,"stop":1750075567772,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750075567772,"stop":1750075567773,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075567774,"stop":1750075567855,"duration":81},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075567856,"stop":1750075567861,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075567861,"stop":1750075567867,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075567867,"stop":1750075567871,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075567872,"stop":1750075567875,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750075567876,"stop":1750075567879,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075567880,"stop":1750075567922,"duration":42},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750075567922,"stop":1750075568007,"duration":85},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750075568007,"stop":1750075568013,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750075568014,"stop":1750075568053,"duration":39},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075568053,"stop":1750075568056,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075568056,"stop":1750075568059,"duration":3},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075568056,"stop":1750075568056,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075568056,"stop":1750075568056,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-3"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"f67d4196db792c92.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f82ed2d7587aec25.json b/allure-report/data/test-cases/f82ed2d7587aec25.json new file mode 100644 index 0000000..947ba36 --- /dev/null +++ b/allure-report/data/test-cases/f82ed2d7587aec25.json @@ -0,0 +1 @@ +{"uid":"f82ed2d7587aec25","name":"Пароли не совпадают","fullName":"ui/recovery/recover-negative.spec.ts:56:7","historyId":"a7eaebb1e41fbbf13bf61195120b3ce9:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750252860501,"stop":1750252861914,"duration":1413},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252860501,"stop":1750252860623,"duration":122},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252860501,"stop":1750252860510,"duration":9},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252860502,"stop":1750252860509,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252860510,"stop":1750252860623,"duration":113},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252860510,"stop":1750252860623,"duration":113},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750252860624,"stop":1750252861522,"duration":898},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750252861523,"stop":1750252861549,"duration":26},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750252861549,"stop":1750252861588,"duration":39},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750252861589,"stop":1750252861592,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252861593,"stop":1750252861678,"duration":85},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252861682,"stop":1750252861689,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252861689,"stop":1750252861694,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252861695,"stop":1750252861700,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252861701,"stop":1750252861705,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750252861705,"stop":1750252861709,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750252861711,"stop":1750252861756,"duration":45},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750252861756,"stop":1750252861841,"duration":85},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!OtherPass123)","time":{"start":1750252861843,"stop":1750252861858,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750252861859,"stop":1750252861904,"duration":45},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252861904,"stop":1750252861909,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252861909,"stop":1750252861916,"duration":7},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252861910,"stop":1750252861910,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252861910,"stop":1750252861910,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-3"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"f82ed2d7587aec25.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f858e1d3e4667ccb.json b/allure-report/data/test-cases/f858e1d3e4667ccb.json new file mode 100644 index 0000000..0ca982b --- /dev/null +++ b/allure-report/data/test-cases/f858e1d3e4667ccb.json @@ -0,0 +1 @@ +{"uid":"f858e1d3e4667ccb","name":"Некорректный email (формат)","fullName":"ui/recovery/recover-negative.spec.ts:7:7","historyId":"d776d5fb9c918a79827aea417bdc449a:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750253625776,"stop":1750253628901,"duration":3125},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253625776,"stop":1750253625918,"duration":142},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253625778,"stop":1750253625782,"duration":4},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253625779,"stop":1750253625781,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253625782,"stop":1750253625918,"duration":136},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253625783,"stop":1750253625918,"duration":135},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750253625920,"stop":1750253626974,"duration":1054},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(invalid-email)","time":{"start":1750253626975,"stop":1750253627031,"duration":56},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750253627032,"stop":1750253627224,"duration":192},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253627225,"stop":1750253627240,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253627240,"stop":1750253628903,"duration":1663},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253627241,"stop":1750253627241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253627241,"stop":1750253627241,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-0"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e0fff7aa214911e5","status":"passed","time":{"start":1750252858841,"stop":1750252860230,"duration":1389}},{"uid":"25bf62a9fdef3ea2","status":"passed","time":{"start":1750084508679,"stop":1750084509441,"duration":762}},{"uid":"7b851f18564754f0","status":"passed","time":{"start":1750075565746,"stop":1750075567592,"duration":1846}}],"categories":[],"tags":[]},"source":"f858e1d3e4667ccb.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f86731f8080655f0.json b/allure-report/data/test-cases/f86731f8080655f0.json new file mode 100644 index 0000000..8368b0b --- /dev/null +++ b/allure-report/data/test-cases/f86731f8080655f0.json @@ -0,0 +1 @@ +{"uid":"f86731f8080655f0","name":"Несуществующий email","fullName":"ui/login/login.negative.spec.ts:17:7","historyId":"69b9236bee03ff0034bfbd5addc25f93:84e28e814b821ed013329cc8dbc467e0","time":{"start":1750252855698,"stop":1750252857537,"duration":1839},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252855701,"stop":1750252856110,"duration":409},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750252855705,"stop":1750252855851,"duration":146},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750252855707,"stop":1750252855851,"duration":144},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252855852,"stop":1750252855891,"duration":39},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252855853,"stop":1750252855890,"duration":37},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252855891,"stop":1750252856110,"duration":219},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252855892,"stop":1750252856110,"duration":218},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750252856115,"stop":1750252857450,"duration":1335},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(wrong@example.com)","time":{"start":1750252857451,"stop":1750252857490,"duration":39},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(anyPassword123)","time":{"start":1750252857491,"stop":1750252857504,"duration":13},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750252857506,"stop":1750252857555,"duration":49},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252857556,"stop":1750252857672,"duration":116},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252857672,"stop":1750252857691,"duration":19},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252857673,"stop":1750252857673,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252857673,"stop":1750252857673,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":15,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-3"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"webkit"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"f86731f8080655f0.json","parameterValues":["webkit"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3330f623917f41ea.json b/allure-report/data/test-cases/fa2d81f0904f0f1e.json similarity index 97% rename from allure-report/data/test-cases/3330f623917f41ea.json rename to allure-report/data/test-cases/fa2d81f0904f0f1e.json index 03bb32d..fdcaa28 100644 --- a/allure-report/data/test-cases/3330f623917f41ea.json +++ b/allure-report/data/test-cases/fa2d81f0904f0f1e.json @@ -1 +1 @@ -{"uid":"3330f623917f41ea","name":"Неверный пароль","fullName":"ui/login/login.negative.spec.ts:7:7","historyId":"500ad758ee2db2bb60aa832fb0abbb94:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750075547550,"stop":1750075548445,"duration":895},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075547562,"stop":1750075547655,"duration":93},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075547564,"stop":1750075547574,"duration":10},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075547565,"stop":1750075547573,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075547574,"stop":1750075547655,"duration":81},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075547576,"stop":1750075547655,"duration":79},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075547656,"stop":1750075548205,"duration":549},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075548206,"stop":1750075548265,"duration":59},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(wrongpass)","time":{"start":1750075548266,"stop":1750075548307,"duration":41},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750075548308,"stop":1750075548338,"duration":30},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075548338,"stop":1750075548452,"duration":114},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075548453,"stop":1750075548460,"duration":7},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075548453,"stop":1750075548453,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075548453,"stop":1750075548453,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"3330f623917f41ea.json","parameterValues":["chromium"]} \ No newline at end of file +{"uid":"fa2d81f0904f0f1e","name":"Неверный пароль","fullName":"ui/login/login.negative.spec.ts:7:7","historyId":"500ad758ee2db2bb60aa832fb0abbb94:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750075547550,"stop":1750075548445,"duration":895},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075547562,"stop":1750075547655,"duration":93},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075547564,"stop":1750075547574,"duration":10},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075547565,"stop":1750075547573,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075547574,"stop":1750075547655,"duration":81},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075547576,"stop":1750075547655,"duration":79},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075547656,"stop":1750075548205,"duration":549},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075548206,"stop":1750075548265,"duration":59},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(wrongpass)","time":{"start":1750075548266,"stop":1750075548307,"duration":41},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750075548308,"stop":1750075548338,"duration":30},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075548338,"stop":1750075548452,"duration":114},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075548453,"stop":1750075548460,"duration":7},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075548453,"stop":1750075548453,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075548453,"stop":1750075548453,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"fa2d81f0904f0f1e.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fa4893ecd7ef05c0.json b/allure-report/data/test-cases/fa4893ecd7ef05c0.json new file mode 100644 index 0000000..a322d38 --- /dev/null +++ b/allure-report/data/test-cases/fa4893ecd7ef05c0.json @@ -0,0 +1 @@ +{"uid":"fa4893ecd7ef05c0","name":"Несуществующий email","fullName":"ui/login/login.negative.spec.ts:17:7","historyId":"69b9236bee03ff0034bfbd5addc25f93:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253478049,"stop":1750253479796,"duration":1747},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253478049,"stop":1750253478139,"duration":90},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253478050,"stop":1750253478059,"duration":9},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253478050,"stop":1750253478055,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253478059,"stop":1750253478139,"duration":80},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253478060,"stop":1750253478139,"duration":79},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750253478140,"stop":1750253479057,"duration":917},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(wrong@example.com)","time":{"start":1750253479058,"stop":1750253479076,"duration":18},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(anyPassword123)","time":{"start":1750253479076,"stop":1750253479116,"duration":40},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750253479117,"stop":1750253479159,"duration":42},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253479159,"stop":1750253479266,"duration":107},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253479266,"stop":1750253479797,"duration":531},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253479266,"stop":1750253479266,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253479266,"stop":1750253479266,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"fa4893ecd7ef05c0.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fb845916a86b3746.json b/allure-report/data/test-cases/fb845916a86b3746.json new file mode 100644 index 0000000..4d0b781 --- /dev/null +++ b/allure-report/data/test-cases/fb845916a86b3746.json @@ -0,0 +1 @@ +{"uid":"fb845916a86b3746","name":"Слишком длинная должность","fullName":"ui/registration/register.negative.spec.ts:38:7","historyId":"2214c0f917091cfcda832cd03e01bb76:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750252508247,"stop":1750252518166,"duration":9919},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252508243,"stop":1750252509317,"duration":1074},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252508245,"stop":1750252509064,"duration":819},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252508247,"stop":1750252509063,"duration":816},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252509064,"stop":1750252509317,"duration":253},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252509065,"stop":1750252509317,"duration":252},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750252509318,"stop":1750252513730,"duration":4412},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX)","time":{"start":1750252513731,"stop":1750252515309,"duration":1578},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750252515311,"stop":1750252517099,"duration":1788},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252517099,"stop":1750252518136,"duration":1037},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252518137,"stop":1750252518166,"duration":29},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252518137,"stop":1750252518137,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252518138,"stop":1750252518138,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-57209-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"fb845916a86b3746.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d7c9ba91de80e2c8.json b/allure-report/data/test-cases/fc45203ff0ba881b.json similarity index 97% rename from allure-report/data/test-cases/d7c9ba91de80e2c8.json rename to allure-report/data/test-cases/fc45203ff0ba881b.json index 3afd466..7119392 100644 --- a/allure-report/data/test-cases/d7c9ba91de80e2c8.json +++ b/allure-report/data/test-cases/fc45203ff0ba881b.json @@ -1 +1 @@ -{"uid":"d7c9ba91de80e2c8","name":"Пользователь должен успешно залогиниться с валидными данными","fullName":"ui/login/login.spec.ts:7:7","historyId":"92a5ca35180a4cbe902714b987a6bf44:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750075548782,"stop":1750075549601,"duration":819},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075548782,"stop":1750075548824,"duration":42},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075548783,"stop":1750075548784,"duration":1},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075548783,"stop":1750075548784,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075548784,"stop":1750075548824,"duration":40},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075548785,"stop":1750075548824,"duration":39},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075548825,"stop":1750075549323,"duration":498},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075549323,"stop":1750075549377,"duration":54},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750075549377,"stop":1750075549429,"duration":52},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750075549432,"stop":1750075549473,"duration":41},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750075549474,"stop":1750075549581,"duration":107},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075549582,"stop":1750075549589,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075549590,"stop":1750075549603,"duration":13},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075549590,"stop":1750075549590,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075549590,"stop":1750075549590,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.spec.ts > Авторизация пользователя"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.spec.ts"},{"name":"subSuite","value":"Авторизация пользователя"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"d7c9ba91de80e2c8.json","parameterValues":["chromium"]} \ No newline at end of file +{"uid":"fc45203ff0ba881b","name":"Пользователь должен успешно залогиниться с валидными данными","fullName":"ui/login/login.spec.ts:7:7","historyId":"92a5ca35180a4cbe902714b987a6bf44:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750075548782,"stop":1750075549601,"duration":819},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075548782,"stop":1750075548824,"duration":42},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075548783,"stop":1750075548784,"duration":1},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075548783,"stop":1750075548784,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075548784,"stop":1750075548824,"duration":40},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075548785,"stop":1750075548824,"duration":39},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075548825,"stop":1750075549323,"duration":498},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750075549323,"stop":1750075549377,"duration":54},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750075549377,"stop":1750075549429,"duration":52},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750075549432,"stop":1750075549473,"duration":41},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750075549474,"stop":1750075549581,"duration":107},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075549582,"stop":1750075549589,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075549590,"stop":1750075549603,"duration":13},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075549590,"stop":1750075549590,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075549590,"stop":1750075549590,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.spec.ts > Авторизация пользователя"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.spec.ts"},{"name":"subSuite","value":"Авторизация пользователя"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"fc45203ff0ba881b.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fc4729bcf77444f4.json b/allure-report/data/test-cases/fc4729bcf77444f4.json new file mode 100644 index 0000000..fa32d35 --- /dev/null +++ b/allure-report/data/test-cases/fc4729bcf77444f4.json @@ -0,0 +1 @@ +{"uid":"fc4729bcf77444f4","name":"Некорректный новый пароль","fullName":"ui/recovery/recover-negative.spec.ts:34:7","historyId":"18246cf63350a71f5b46012e257bafcf:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253485706,"stop":1750253491464,"duration":5758},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253485706,"stop":1750253485748,"duration":42},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253485707,"stop":1750253485711,"duration":4},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253485707,"stop":1750253485710,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253485712,"stop":1750253485748,"duration":36},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253485712,"stop":1750253485748,"duration":36},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750253485751,"stop":1750253490781,"duration":5030},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750253490786,"stop":1750253490857,"duration":71},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750253490863,"stop":1750253490908,"duration":45},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750253490909,"stop":1750253490913,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253490914,"stop":1750253491023,"duration":109},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253491028,"stop":1750253491056,"duration":28},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253491057,"stop":1750253491086,"duration":29},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253491088,"stop":1750253491095,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253491095,"stop":1750253491105,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750253491106,"stop":1750253491112,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750253491113,"stop":1750253491180,"duration":67},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(123)","time":{"start":1750253491182,"stop":1750253491233,"duration":51},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(123)","time":{"start":1750253491233,"stop":1750253491243,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750253491244,"stop":1750253491273,"duration":29},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253491273,"stop":1750253491282,"duration":9},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253491283,"stop":1750253491468,"duration":185},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253491285,"stop":1750253491285,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253491285,"stop":1750253491285,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"fc4729bcf77444f4.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8c86ef49444cfeb3.json b/allure-report/data/test-cases/fcba363460d3f6b5.json similarity index 97% rename from allure-report/data/test-cases/8c86ef49444cfeb3.json rename to allure-report/data/test-cases/fcba363460d3f6b5.json index 0592cd3..08b9502 100644 --- a/allure-report/data/test-cases/8c86ef49444cfeb3.json +++ b/allure-report/data/test-cases/fcba363460d3f6b5.json @@ -1 +1 @@ -{"uid":"8c86ef49444cfeb3","name":"Регистр в email (User@test.com ≠ user@test.com)","fullName":"ui/login/login.negative.spec.ts:58:7","historyId":"cc4ad4b40ef726af11b2bd4f5523dbe0:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750075556823,"stop":1750075558200,"duration":1377},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075556823,"stop":1750075557119,"duration":296},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075556824,"stop":1750075556839,"duration":15},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075556824,"stop":1750075556839,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075556840,"stop":1750075557119,"duration":279},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075556840,"stop":1750075557119,"duration":279},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075557120,"stop":1750075557960,"duration":840},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Autotest@Example.com)","time":{"start":1750075557961,"stop":1750075558000,"duration":39},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750075558001,"stop":1750075558021,"duration":20},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750075558022,"stop":1750075558087,"duration":65},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075558087,"stop":1750075558195,"duration":108},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075558195,"stop":1750075558202,"duration":7},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075558195,"stop":1750075558195,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075558195,"stop":1750075558195,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"tag","value":"test.com"},{"name":"tag","value":"test.com)"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-3"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["test.com","test.com)"]},"source":"8c86ef49444cfeb3.json","parameterValues":["firefox"]} \ No newline at end of file +{"uid":"fcba363460d3f6b5","name":"Регистр в email (User@test.com ≠ user@test.com)","fullName":"ui/login/login.negative.spec.ts:58:7","historyId":"cc4ad4b40ef726af11b2bd4f5523dbe0:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750075556823,"stop":1750075558200,"duration":1377},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075556823,"stop":1750075557119,"duration":296},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750075556824,"stop":1750075556839,"duration":15},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075556824,"stop":1750075556839,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075556840,"stop":1750075557119,"duration":279},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075556840,"stop":1750075557119,"duration":279},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075557120,"stop":1750075557960,"duration":840},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Autotest@Example.com)","time":{"start":1750075557961,"stop":1750075558000,"duration":39},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750075558001,"stop":1750075558021,"duration":20},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750075558022,"stop":1750075558087,"duration":65},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075558087,"stop":1750075558195,"duration":108},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075558195,"stop":1750075558202,"duration":7},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075558195,"stop":1750075558195,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075558195,"stop":1750075558195,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"tag","value":"test.com"},{"name":"tag","value":"test.com)"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-3"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["test.com","test.com)"]},"source":"fcba363460d3f6b5.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f7bfbf67a45ab3ec.json b/allure-report/data/test-cases/fcff193c697b73fc.json similarity index 91% rename from allure-report/data/test-cases/f7bfbf67a45ab3ec.json rename to allure-report/data/test-cases/fcff193c697b73fc.json index 1485e7d..3c44fcd 100644 --- a/allure-report/data/test-cases/f7bfbf67a45ab3ec.json +++ b/allure-report/data/test-cases/fcff193c697b73fc.json @@ -1 +1 @@ -{"uid":"f7bfbf67a45ab3ec","name":"has title","fullName":"example.spec.ts:3:5","historyId":"3a2a809b453af4fd564578d1a27f3e45:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750084494460,"stop":1750084496600,"duration":2140},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084494461,"stop":1750084497738,"duration":3277},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750084494466,"stop":1750084496644,"duration":2178},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750084494467,"stop":1750084496644,"duration":2177},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084496646,"stop":1750084496875,"duration":229},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084496651,"stop":1750084496875,"duration":224},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084496876,"stop":1750084497738,"duration":862},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084496877,"stop":1750084497738,"duration":861},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(https://playwright.dev/)","time":{"start":1750084497740,"stop":1750084498671,"duration":931},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveTitle","time":{"start":1750084498677,"stop":1750084498747,"duration":70},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084498747,"stop":1750084498785,"duration":38},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084498748,"stop":1750084498748,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084498748,"stop":1750084498748,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > firefox > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-1"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"example.spec.ts"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8552b4194c8b884c","status":"passed","time":{"start":1750075551224,"stop":1750075553043,"duration":1819}}],"categories":[],"tags":[]},"source":"f7bfbf67a45ab3ec.json","parameterValues":["firefox"]} \ No newline at end of file +{"uid":"fcff193c697b73fc","name":"has title","fullName":"example.spec.ts:3:5","historyId":"3a2a809b453af4fd564578d1a27f3e45:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750084494460,"stop":1750084496600,"duration":2140},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084494461,"stop":1750084497738,"duration":3277},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750084494466,"stop":1750084496644,"duration":2178},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750084494467,"stop":1750084496644,"duration":2177},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084496646,"stop":1750084496875,"duration":229},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084496651,"stop":1750084496875,"duration":224},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084496876,"stop":1750084497738,"duration":862},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084496877,"stop":1750084497738,"duration":861},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(https://playwright.dev/)","time":{"start":1750084497740,"stop":1750084498671,"duration":931},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveTitle","time":{"start":1750084498677,"stop":1750084498747,"duration":70},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084498747,"stop":1750084498785,"duration":38},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084498748,"stop":1750084498748,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084498748,"stop":1750084498748,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":12,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > firefox > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-1"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"example.spec.ts"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"fcff193c697b73fc.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fdb2b176004a83fb.json b/allure-report/data/test-cases/fdb2b176004a83fb.json new file mode 100644 index 0000000..3c3bda8 --- /dev/null +++ b/allure-report/data/test-cases/fdb2b176004a83fb.json @@ -0,0 +1 @@ +{"uid":"fdb2b176004a83fb","name":"Успешная регистрация нового пользователя","fullName":"ui/registration/register.spec.ts:6:7","historyId":"3562648cd3231e14b42a7151c17c62aa:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253502884,"stop":1750253505132,"duration":2248},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253502883,"stop":1750253502921,"duration":38},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253502884,"stop":1750253502887,"duration":3},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253502885,"stop":1750253502886,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253502887,"stop":1750253502921,"duration":34},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253502888,"stop":1750253502921,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750253502921,"stop":1750253503732,"duration":811},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Иван)","time":{"start":1750253503734,"stop":1750253503788,"duration":54},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Тестов)","time":{"start":1750253503789,"stop":1750253503802,"duration":13},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Александрович)","time":{"start":1750253503803,"stop":1750253503820,"duration":17},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёное звание*').click","time":{"start":1750253503821,"stop":1750253503860,"duration":39},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Доцент\"i)","time":{"start":1750253503860,"stop":1750253503939,"duration":79},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByPlaceholder('Учёная степень*').click","time":{"start":1750253503940,"stop":1750253504849,"duration":909},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.click(li >> internal:has-text=\"Кандидат наук\"i)","time":{"start":1750253504850,"stop":1750253504888,"duration":38},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(Преподаватель)","time":{"start":1750253504889,"stop":1750253504897,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(ЮФУ)","time":{"start":1750253504898,"stop":1750253504904,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest47217@example.com)","time":{"start":1750253504905,"stop":1750253504912,"duration":7},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(+79000047217)","time":{"start":1750253504913,"stop":1750253504923,"duration":10},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750253504924,"stop":1750253504929,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750253504929,"stop":1750253504935,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750253504936,"stop":1750253504970,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750253504970,"stop":1750253505076,"duration":106},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253505077,"stop":1750253505079,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253505079,"stop":1750253505133,"duration":54},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253505080,"stop":1750253505080,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253505080,"stop":1750253505080,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":25,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.spec.ts > Позитивные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.spec.ts"},{"name":"subSuite","value":"Позитивные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"fdb2b176004a83fb.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fa5b7df4c6ef2e35.json b/allure-report/data/test-cases/fdee20ced16e0968.json similarity index 97% rename from allure-report/data/test-cases/fa5b7df4c6ef2e35.json rename to allure-report/data/test-cases/fdee20ced16e0968.json index 01d8e3a..24fcfa8 100644 --- a/allure-report/data/test-cases/fa5b7df4c6ef2e35.json +++ b/allure-report/data/test-cases/fdee20ced16e0968.json @@ -1 +1 @@ -{"uid":"fa5b7df4c6ef2e35","name":"Переход по ссылке \"Забыли пароль?\"","fullName":"ui/login/login.link.spec.ts:6:5","historyId":"91fcabcb669557e4ddb559c077420e45:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750075545986,"stop":1750075547264,"duration":1278},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075545987,"stop":1750075546573,"duration":586},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750075545992,"stop":1750075546322,"duration":330},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750075545993,"stop":1750075546322,"duration":329},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075546324,"stop":1750075546365,"duration":41},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075546327,"stop":1750075546363,"duration":36},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075546365,"stop":1750075546573,"duration":208},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075546368,"stop":1750075546573,"duration":205},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075546577,"stop":1750075547346,"duration":769},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByText('Забыли пароль?').click","time":{"start":1750075547352,"stop":1750075547525,"duration":173},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750075547529,"stop":1750075547563,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075547563,"stop":1750075547577,"duration":14},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075547577,"stop":1750075547606,"duration":29},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075547580,"stop":1750075547580,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075547581,"stop":1750075547581,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"fa5b7df4c6ef2e35.json","parameterValues":["chromium"]} \ No newline at end of file +{"uid":"fdee20ced16e0968","name":"Переход по ссылке \"Забыли пароль?\"","fullName":"ui/login/login.link.spec.ts:6:5","historyId":"91fcabcb669557e4ddb559c077420e45:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750075545986,"stop":1750075547264,"duration":1278},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750075545987,"stop":1750075546573,"duration":586},"status":"passed","steps":[{"name":"fixture: browser","time":{"start":1750075545992,"stop":1750075546322,"duration":330},"status":"passed","steps":[{"name":"browserType.launch","time":{"start":1750075545993,"stop":1750075546322,"duration":329},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075546324,"stop":1750075546365,"duration":41},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750075546327,"stop":1750075546363,"duration":36},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750075546365,"stop":1750075546573,"duration":208},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750075546368,"stop":1750075546573,"duration":205},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":6,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750075546577,"stop":1750075547346,"duration":769},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByText('Забыли пароль?').click","time":{"start":1750075547352,"stop":1750075547525,"duration":173},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toHaveURL","time":{"start":1750075547529,"stop":1750075547563,"duration":34},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750075547563,"stop":1750075547577,"duration":14},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750075547577,"stop":1750075547606,"duration":29},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750075547580,"stop":1750075547580,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750075547581,"stop":1750075547581,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":14,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-37773-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"fdee20ced16e0968.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2e06dcefaf1e4c31.json b/allure-report/data/test-cases/fe24f987bb94a7ce.json similarity index 95% rename from allure-report/data/test-cases/2e06dcefaf1e4c31.json rename to allure-report/data/test-cases/fe24f987bb94a7ce.json index 9cac0ee..fa418e8 100644 --- a/allure-report/data/test-cases/2e06dcefaf1e4c31.json +++ b/allure-report/data/test-cases/fe24f987bb94a7ce.json @@ -1 +1 @@ -{"uid":"2e06dcefaf1e4c31","name":"Пустое поле \"Повторите пароль\"","fullName":"ui/recovery/recover-negative.spec.ts:45:7","historyId":"e6d2fb91f0b85b95c3962ffc860dddd7:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750084502343,"stop":1750084503756,"duration":1413},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084502344,"stop":1750084502513,"duration":169},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084502345,"stop":1750084502352,"duration":7},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084502345,"stop":1750084502351,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084502352,"stop":1750084502513,"duration":161},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084502353,"stop":1750084502513,"duration":160},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750084502514,"stop":1750084503296,"duration":782},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084503297,"stop":1750084503330,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750084503331,"stop":1750084503411,"duration":80},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750084503412,"stop":1750084503420,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084503420,"stop":1750084503461,"duration":41},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084503461,"stop":1750084503479,"duration":18},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084503480,"stop":1750084503495,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084503495,"stop":1750084503523,"duration":28},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084503525,"stop":1750084503542,"duration":17},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084503543,"stop":1750084503558,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084503560,"stop":1750084503642,"duration":82},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750084503643,"stop":1750084503685,"duration":42},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750084503685,"stop":1750084503690,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084503690,"stop":1750084503740,"duration":50},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084503740,"stop":1750084503746,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084503747,"stop":1750084503759,"duration":12},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084503747,"stop":1750084503747,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084503747,"stop":1750084503747,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c0cd3299e712a705","status":"passed","time":{"start":1750075558622,"stop":1750075560743,"duration":2121}}],"categories":[],"tags":[]},"source":"2e06dcefaf1e4c31.json","parameterValues":["firefox"]} \ No newline at end of file +{"uid":"fe24f987bb94a7ce","name":"Пустое поле \"Повторите пароль\"","fullName":"ui/recovery/recover-negative.spec.ts:45:7","historyId":"e6d2fb91f0b85b95c3962ffc860dddd7:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750084502343,"stop":1750084503756,"duration":1413},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750084502344,"stop":1750084502513,"duration":169},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750084502345,"stop":1750084502352,"duration":7},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750084502345,"stop":1750084502351,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750084502352,"stop":1750084502513,"duration":161},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750084502353,"stop":1750084502513,"duration":160},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/recoverpassword)","time":{"start":1750084502514,"stop":1750084503296,"duration":782},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(autotest@example.com)","time":{"start":1750084503297,"stop":1750084503330,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Далее' }).click","time":{"start":1750084503331,"stop":1750084503411,"duration":80},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.count(input[type=\"text\"])","time":{"start":1750084503412,"stop":1750084503420,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084503420,"stop":1750084503461,"duration":41},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084503461,"stop":1750084503479,"duration":18},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084503480,"stop":1750084503495,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084503495,"stop":1750084503523,"duration":28},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084503525,"stop":1750084503542,"duration":17},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(0)","time":{"start":1750084503543,"stop":1750084503558,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084503560,"stop":1750084503642,"duration":82},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(!Test123456)","time":{"start":1750084503643,"stop":1750084503685,"duration":42},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill()","time":{"start":1750084503685,"stop":1750084503690,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Продолжить' }).click","time":{"start":1750084503690,"stop":1750084503740,"duration":50},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750084503740,"stop":1750084503746,"duration":6},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750084503747,"stop":1750084503759,"duration":12},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750084503747,"stop":1750084503747,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750084503747,"stop":1750084503747,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":23,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-47252-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"fe24f987bb94a7ce.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fe3a63658be6990b.json b/allure-report/data/test-cases/fe3a63658be6990b.json new file mode 100644 index 0000000..40bf214 --- /dev/null +++ b/allure-report/data/test-cases/fe3a63658be6990b.json @@ -0,0 +1 @@ +{"uid":"fe3a63658be6990b","name":"Несуществующий email","fullName":"ui/login/login.negative.spec.ts:17:7","historyId":"69b9236bee03ff0034bfbd5addc25f93:b444eb0fbe6390c71e68b51dd25701fc","time":{"start":1750252836661,"stop":1750252843104,"duration":6443},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750252836661,"stop":1750252836790,"duration":129},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750252836663,"stop":1750252836685,"duration":22},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750252836664,"stop":1750252836685,"duration":21},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750252836685,"stop":1750252836789,"duration":104},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750252836686,"stop":1750252836789,"duration":103},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/authorization)","time":{"start":1750252836791,"stop":1750252842866,"duration":6075},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(wrong@example.com)","time":{"start":1750252842868,"stop":1750252842912,"duration":44},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.fill(anyPassword123)","time":{"start":1750252842913,"stop":1750252842921,"duration":8},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","time":{"start":1750252842922,"stop":1750252842987,"duration":65},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750252842988,"stop":1750252843099,"duration":111},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750252843099,"stop":1750252843105,"duration":6},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750252843099,"stop":1750252843099,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750252843100,"stop":1750252843100,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-1"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"firefox"}],"links":[],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"fe3a63658be6990b.json","parameterValues":["firefox"]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ffac43d36c488156.json b/allure-report/data/test-cases/ffac43d36c488156.json new file mode 100644 index 0000000..800b681 --- /dev/null +++ b/allure-report/data/test-cases/ffac43d36c488156.json @@ -0,0 +1 @@ +{"uid":"ffac43d36c488156","name":"Отправка пустой формы","fullName":"ui/registration/register.negative.spec.ts:6:7","historyId":"61b0fd9a6b9153c787b71ef3413cea92:5bd835b0d6b1d4ada3b9f0db936e82c8","time":{"start":1750253564295,"stop":1750253570263,"duration":5968},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[],"testStage":{"status":"passed","steps":[{"name":"Before Hooks","time":{"start":1750253564295,"stop":1750253564331,"duration":36},"status":"passed","steps":[{"name":"fixture: context","time":{"start":1750253564296,"stop":1750253564298,"duration":2},"status":"passed","steps":[{"name":"browser.newContext","time":{"start":1750253564296,"stop":1750253564297,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"fixture: page","time":{"start":1750253564298,"stop":1750253564331,"duration":33},"status":"passed","steps":[{"name":"browserContext.newPage","time":{"start":1750253564298,"stop":1750253564331,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":1,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":4,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},{"name":"page.goto(/login/registration)","time":{"start":1750253564333,"stop":1750253569552,"duration":5219},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","time":{"start":1750253569554,"stop":1750253569600,"duration":46},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"locator.allTextContents(div[name=\"error\"] >> internal:has-text=\"Поле обязательно для заполнения\"i)","time":{"start":1750253569601,"stop":1750253569643,"duration":42},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeGreaterThan","time":{"start":1750253569644,"stop":1750253569644,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"expect.toBeVisible","time":{"start":1750253569645,"stop":1750253569650,"duration":5},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"After Hooks","time":{"start":1750253569650,"stop":1750253570264,"duration":614},"status":"passed","steps":[{"name":"fixture: page","time":{"start":1750253569650,"stop":1750253569650,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false},{"name":"fixture: context","time":{"start":1750253569650,"stop":1750253569650,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":2,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false}],"attachments":[],"parameters":[],"stepsCount":13,"shouldDisplayMessage":false,"attachmentsCount":0,"hasContent":true,"attachmentStep":false},"afterStages":[],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"},{"name":"resultFormat","value":"allure2"}],"parameters":[{"name":"Project","value":"chromium"}],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c2cda5efc44ad114","status":"passed","time":{"start":1750253491472,"stop":1750253504132,"duration":12660}},{"uid":"e7e884e9a314400d","status":"passed","time":{"start":1750252824473,"stop":1750252825514,"duration":1041}},{"uid":"4f4f1d642652a42c","status":"passed","time":{"start":1750252705775,"stop":1750252746151,"duration":40376}},{"uid":"432ee7458c9fefd9","status":"passed","time":{"start":1750252435945,"stop":1750252461297,"duration":25352}}],"categories":[],"tags":[]},"source":"ffac43d36c488156.json","parameterValues":["chromium"]} \ No newline at end of file diff --git a/allure-report/data/timeline.json b/allure-report/data/timeline.json index 5d33da6..0346567 100644 --- a/allure-report/data/timeline.json +++ b/allure-report/data/timeline.json @@ -1 +1 @@ -{"uid":"ab17fc5a4eb3bca4b216b548c7f9fcbc","name":"timeline","children":[{"name":"MacBook-Air-Vlad.local","children":[{"name":"pid-37773-worker-0","children":[{"name":"get started link","uid":"731909b825a5819e","parentUid":"2fb7d675ba832935576e0d706d5a2394","status":"passed","time":{"start":1750075551551,"stop":1750075553777,"duration":2226},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"get started link","uid":"e109d1fc6f020451","parentUid":"2fb7d675ba832935576e0d706d5a2394","status":"passed","time":{"start":1750075561747,"stop":1750075563488,"duration":1741},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Пустое поле \"Повторите пароль\"","uid":"c0cd3299e712a705","parentUid":"2fb7d675ba832935576e0d706d5a2394","status":"passed","time":{"start":1750075558622,"stop":1750075560743,"duration":2121},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Пустое поле \"Повторите пароль\"","uid":"d4f48ebfb1d34a45","parentUid":"2fb7d675ba832935576e0d706d5a2394","status":"passed","time":{"start":1750075550062,"stop":1750075551012,"duration":950},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректный формат email","uid":"e52a54484d42ab27","parentUid":"2fb7d675ba832935576e0d706d5a2394","status":"passed","time":{"start":1750075548464,"stop":1750075549142,"duration":678},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректный формат email","uid":"bf45d49e3153cac1","parentUid":"2fb7d675ba832935576e0d706d5a2394","status":"passed","time":{"start":1750075564621,"stop":1750075565733,"duration":1112},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"has title","uid":"4e6608570791e516","parentUid":"2fb7d675ba832935576e0d706d5a2394","status":"passed","time":{"start":1750075545967,"stop":1750075547168,"duration":1201},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Неверный пароль","uid":"3330f623917f41ea","parentUid":"2fb7d675ba832935576e0d706d5a2394","status":"passed","time":{"start":1750075547550,"stop":1750075548445,"duration":895},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректный формат email","uid":"4078b556600b37b9","parentUid":"2fb7d675ba832935576e0d706d5a2394","status":"passed","time":{"start":1750075556104,"stop":1750075557367,"duration":1263},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Некорректный email (формат)","uid":"6c4df356a89dd9d3","parentUid":"2fb7d675ba832935576e0d706d5a2394","status":"passed","time":{"start":1750075565746,"stop":1750075567592,"duration":1846},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Некорректный email (формат)","uid":"a03daf7c9a0d201b","parentUid":"2fb7d675ba832935576e0d706d5a2394","status":"passed","time":{"start":1750075549148,"stop":1750075550058,"duration":910},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректный email (формат)","uid":"f5b8eff89fd823f5","parentUid":"2fb7d675ba832935576e0d706d5a2394","status":"passed","time":{"start":1750075557377,"stop":1750075558616,"duration":1239},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Оба поля пустые","uid":"5798cba72c59fd23","parentUid":"2fb7d675ba832935576e0d706d5a2394","status":"passed","time":{"start":1750075563694,"stop":1750075564613,"duration":919},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]}],"uid":"2fb7d675ba832935576e0d706d5a2394"},{"name":"pid-47252-worker-2","children":[{"name":"Пользователь должен успешно залогиниться с валидными данными","uid":"9e16f68655df37d3","parentUid":"7eeeb058df157ab676ac32742ee3665c","status":"passed","time":{"start":1750084508128,"stop":1750084509091,"duration":963},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Только email без пароля","uid":"589b172d059c0837","parentUid":"7eeeb058df157ab676ac32742ee3665c","status":"passed","time":{"start":1750084499301,"stop":1750084500455,"duration":1154},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Переход по ссылке \"Зарегистрируйтесь\"","uid":"c9901a9937a7b7a5","parentUid":"7eeeb058df157ab676ac32742ee3665c","status":"passed","time":{"start":1750084506996,"stop":1750084507961,"duration":965},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Переключатель видимости пароля показывает и скрывает ввод","uid":"3bba1028b851bbbc","parentUid":"7eeeb058df157ab676ac32742ee3665c","status":"passed","time":{"start":1750084500466,"stop":1750084501581,"duration":1115},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Пользователь успешно восстанавливает пароль","uid":"922c07477f21c047","parentUid":"7eeeb058df157ab676ac32742ee3665c","status":"passed","time":{"start":1750084503378,"stop":1750084505830,"duration":2452},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Пользователь успешно восстанавливает пароль","uid":"8d0ccd1c875a97cc","parentUid":"7eeeb058df157ab676ac32742ee3665c","status":"passed","time":{"start":1750084510151,"stop":1750084511331,"duration":1180},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Переключатель видимости пароля показывает и скрывает ввод","uid":"c82bf9b727e4250d","parentUid":"7eeeb058df157ab676ac32742ee3665c","status":"passed","time":{"start":1750084491357,"stop":1750084492371,"duration":1014},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Неверный код подтверждения","uid":"703a2301ffdc2da7","parentUid":"7eeeb058df157ab676ac32742ee3665c","status":"passed","time":{"start":1750084509104,"stop":1750084510143,"duration":1039},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Пустое поле \"Повторите пароль\"","uid":"96736297720c2c0d","parentUid":"7eeeb058df157ab676ac32742ee3665c","status":"passed","time":{"start":1750084492375,"stop":1750084493870,"duration":1495},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"get started link","uid":"e94724f7c9383d0e","parentUid":"7eeeb058df157ab676ac32742ee3665c","status":"passed","time":{"start":1750084494460,"stop":1750084496622,"duration":2162},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Неверный пароль","uid":"88a8af1bf7652c0e","parentUid":"7eeeb058df157ab676ac32742ee3665c","status":"passed","time":{"start":1750084497996,"stop":1750084499294,"duration":1298},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Переход по ссылке \"Забыли пароль?\"","uid":"accf5a2fef71e751","parentUid":"7eeeb058df157ab676ac32742ee3665c","status":"passed","time":{"start":1750084487578,"stop":1750084490119,"duration":2541},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Только email без пароля","uid":"219f17571c2d2715","parentUid":"7eeeb058df157ab676ac32742ee3665c","status":"passed","time":{"start":1750084490528,"stop":1750084491353,"duration":825},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Неверный код подтверждения","uid":"1bf14a52b790d91","parentUid":"7eeeb058df157ab676ac32742ee3665c","status":"passed","time":{"start":1750084501594,"stop":1750084503368,"duration":1774},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]}],"uid":"7eeeb058df157ab676ac32742ee3665c"},{"name":"pid-47252-worker-3","children":[{"name":"Переход по ссылке \"Зарегистрируйтесь\"","uid":"31bb4ab4326f6487","parentUid":"5d7af5ad6a076945ac94a0cc8b0075d9","status":"passed","time":{"start":1750084487577,"stop":1750084488773,"duration":1196},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Переход по ссылке \"Забыли пароль?\"","uid":"31dc1d9640018cfc","parentUid":"5d7af5ad6a076945ac94a0cc8b0075d9","status":"passed","time":{"start":1750084505493,"stop":1750084506516,"duration":1023},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Несуществующий email","uid":"7b807a335cae4963","parentUid":"5d7af5ad6a076945ac94a0cc8b0075d9","status":"passed","time":{"start":1750084501499,"stop":1750084502685,"duration":1186},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Пароли не совпадают","uid":"159330e44b573ebb","parentUid":"5d7af5ad6a076945ac94a0cc8b0075d9","status":"passed","time":{"start":1750084502694,"stop":1750084504377,"duration":1683},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Пользователь должен успешно залогиниться с валидными данными","uid":"5c52ce3f42b81329","parentUid":"5d7af5ad6a076945ac94a0cc8b0075d9","status":"passed","time":{"start":1750084491243,"stop":1750084492069,"duration":826},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Несуществующий email","uid":"127e2567cd7d94f3","parentUid":"5d7af5ad6a076945ac94a0cc8b0075d9","status":"passed","time":{"start":1750084508872,"stop":1750084509760,"duration":888},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Регистр в email (User@test.com ≠ user@test.com)","uid":"c0406bead53d77ca","parentUid":"5d7af5ad6a076945ac94a0cc8b0075d9","status":"passed","time":{"start":1750084507958,"stop":1750084508862,"duration":904},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":["test.com","test.com)"]},{"name":"Пароли не совпадают","uid":"9ed8b38ec7c4a34b","parentUid":"5d7af5ad6a076945ac94a0cc8b0075d9","status":"passed","time":{"start":1750084509765,"stop":1750084510859,"duration":1094},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Несуществующий email","uid":"f6b2716194c4ce74","parentUid":"5d7af5ad6a076945ac94a0cc8b0075d9","status":"passed","time":{"start":1750084498297,"stop":1750084500105,"duration":1808},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Регистр в email (User@test.com ≠ user@test.com)","uid":"98e3f9bd5b0da70e","parentUid":"5d7af5ad6a076945ac94a0cc8b0075d9","status":"passed","time":{"start":1750084500111,"stop":1750084501485,"duration":1374},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":["test.com","test.com)"]},{"name":"Пароли не совпадают","uid":"b20bbc8741046798","parentUid":"5d7af5ad6a076945ac94a0cc8b0075d9","status":"passed","time":{"start":1750084492974,"stop":1750084493874,"duration":900},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Неверный пароль","uid":"1f34f20dd4a0d9fd","parentUid":"5d7af5ad6a076945ac94a0cc8b0075d9","status":"passed","time":{"start":1750084489259,"stop":1750084490492,"duration":1233},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Переход по ссылке \"Забыли пароль?\"","uid":"a53cc3de606dc5ae","parentUid":"5d7af5ad6a076945ac94a0cc8b0075d9","status":"passed","time":{"start":1750084494465,"stop":1750084496561,"duration":2096},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Оба поля пустые","uid":"a2b4235c46265be0","parentUid":"5d7af5ad6a076945ac94a0cc8b0075d9","status":"passed","time":{"start":1750084506701,"stop":1750084507952,"duration":1251},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Оба поля пустые","uid":"f7a702fb49f5f201","parentUid":"5d7af5ad6a076945ac94a0cc8b0075d9","status":"passed","time":{"start":1750084490497,"stop":1750084491239,"duration":742},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Несуществующий email","uid":"a1fd8ee0914c6a57","parentUid":"5d7af5ad6a076945ac94a0cc8b0075d9","status":"passed","time":{"start":1750084492074,"stop":1750084492970,"duration":896},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]}],"uid":"5d7af5ad6a076945ac94a0cc8b0075d9"},{"name":"pid-47252-worker-0","children":[{"name":"Регистр в email (User@test.com ≠ user@test.com)","uid":"287ea007721245b5","parentUid":"91f0ea53decad4e33b42765d08d698ed","status":"passed","time":{"start":1750084491115,"stop":1750084492165,"duration":1050},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":["test.com","test.com)"]},{"name":"has title","uid":"731f29d77f45de06","parentUid":"91f0ea53decad4e33b42765d08d698ed","status":"passed","time":{"start":1750084487580,"stop":1750084490628,"duration":3048},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Пользователь успешно восстанавливает пароль","uid":"9c1576c7213cf7a9","parentUid":"91f0ea53decad4e33b42765d08d698ed","status":"passed","time":{"start":1750084493416,"stop":1750084494507,"duration":1091},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Неверный код подтверждения","uid":"e3d2684b480ff47b","parentUid":"91f0ea53decad4e33b42765d08d698ed","status":"passed","time":{"start":1750084492172,"stop":1750084493410,"duration":1238},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректный формат email","uid":"4da4945bee2a6177","parentUid":"91f0ea53decad4e33b42765d08d698ed","status":"passed","time":{"start":1750084507730,"stop":1750084508673,"duration":943},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"get started link","uid":"995bb2612eda65c","parentUid":"91f0ea53decad4e33b42765d08d698ed","status":"passed","time":{"start":1750084504688,"stop":1750084506422,"duration":1734},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Пустое поле \"Повторите пароль\"","uid":"2e06dcefaf1e4c31","parentUid":"91f0ea53decad4e33b42765d08d698ed","status":"passed","time":{"start":1750084502343,"stop":1750084503756,"duration":1413},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Некорректный email (формат)","uid":"c7a1902ba1108ba2","parentUid":"91f0ea53decad4e33b42765d08d698ed","status":"passed","time":{"start":1750084501326,"stop":1750084502338,"duration":1012},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Пустое поле \"Повторите пароль\"","uid":"1f2ff10db5665418","parentUid":"91f0ea53decad4e33b42765d08d698ed","status":"passed","time":{"start":1750084509447,"stop":1750084510516,"duration":1069},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Некорректный формат email","uid":"749fb76346883a7d","parentUid":"91f0ea53decad4e33b42765d08d698ed","status":"passed","time":{"start":1750084499796,"stop":1750084501311,"duration":1515},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Переход по ссылке \"Зарегистрируйтесь\"","uid":"34179ea7ef46fc56","parentUid":"91f0ea53decad4e33b42765d08d698ed","status":"passed","time":{"start":1750084494915,"stop":1750084497374,"duration":2459},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Некорректный email (формат)","uid":"e8ebfdb5511bffc3","parentUid":"91f0ea53decad4e33b42765d08d698ed","status":"passed","time":{"start":1750084508679,"stop":1750084509441,"duration":762},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Несуществующий email","uid":"ce94b9aa72086b4e","parentUid":"91f0ea53decad4e33b42765d08d698ed","status":"passed","time":{"start":1750084506686,"stop":1750084507723,"duration":1037},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]}],"uid":"91f0ea53decad4e33b42765d08d698ed"},{"name":"pid-37773-worker-1","children":[{"name":"Переключатель видимости пароля показывает и скрывает ввод","uid":"9ff2d401b597dd93","parentUid":"3a34b0a5de71060f5c181ff9446c9749","status":"passed","time":{"start":1750075548938,"stop":1750075549652,"duration":714},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Переключатель видимости пароля показывает и скрывает ввод","uid":"9056a644468a3e4d","parentUid":"3a34b0a5de71060f5c181ff9446c9749","status":"passed","time":{"start":1750075565020,"stop":1750075565962,"duration":942},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Переключатель видимости пароля показывает и скрывает ввод","uid":"f5fd1970016cd210","parentUid":"3a34b0a5de71060f5c181ff9446c9749","status":"passed","time":{"start":1750075557078,"stop":1750075558320,"duration":1242},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Пользователь успешно восстанавливает пароль","uid":"3ceb71bd12870fa8","parentUid":"3a34b0a5de71060f5c181ff9446c9749","status":"passed","time":{"start":1750075550648,"stop":1750075551753,"duration":1105},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Неверный код подтверждения","uid":"5a5e4227a4d69e41","parentUid":"3a34b0a5de71060f5c181ff9446c9749","status":"passed","time":{"start":1750075558336,"stop":1750075560026,"duration":1690},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Пароли не совпадают","uid":"c08d4874195c65a9","parentUid":"3a34b0a5de71060f5c181ff9446c9749","status":"passed","time":{"start":1750075567274,"stop":1750075568310,"duration":1036},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"get started link","uid":"4fd497839b2e468f","parentUid":"3a34b0a5de71060f5c181ff9446c9749","status":"passed","time":{"start":1750075545978,"stop":1750075547391,"duration":1413},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Только email без пароля","uid":"897a3ca2fcb0baae","parentUid":"3a34b0a5de71060f5c181ff9446c9749","status":"passed","time":{"start":1750075547738,"stop":1750075548931,"duration":1193},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Переход по ссылке \"Зарегистрируйтесь\"","uid":"b869ef3785459ec6","parentUid":"3a34b0a5de71060f5c181ff9446c9749","status":"passed","time":{"start":1750075562963,"stop":1750075563995,"duration":1032},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Пользователь успешно восстанавливает пароль","uid":"8590834e6f81fb1e","parentUid":"3a34b0a5de71060f5c181ff9446c9749","status":"passed","time":{"start":1750075560041,"stop":1750075561748,"duration":1707},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Неверный код подтверждения","uid":"9b993cf9e1dc548a","parentUid":"3a34b0a5de71060f5c181ff9446c9749","status":"passed","time":{"start":1750075565970,"stop":1750075567264,"duration":1294},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Переход по ссылке \"Зарегистрируйтесь\"","uid":"d7fcf8f4f91e5813","parentUid":"3a34b0a5de71060f5c181ff9446c9749","status":"passed","time":{"start":1750075552248,"stop":1750075554739,"duration":2491},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Некорректный новый пароль","uid":"869d29ee93a3b194","parentUid":"3a34b0a5de71060f5c181ff9446c9749","status":"passed","time":{"start":1750075549657,"stop":1750075550644,"duration":987},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Только email без пароля","uid":"2e73b968ec7d6136","parentUid":"3a34b0a5de71060f5c181ff9446c9749","status":"passed","time":{"start":1750075555728,"stop":1750075557066,"duration":1338},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Только email без пароля","uid":"f30f5da0d9b0eada","parentUid":"3a34b0a5de71060f5c181ff9446c9749","status":"passed","time":{"start":1750075564160,"stop":1750075565015,"duration":855},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]}],"uid":"3a34b0a5de71060f5c181ff9446c9749"},{"name":"pid-37773-worker-2","children":[{"name":"Оба поля пустые","uid":"a46ddeec16f556fe","parentUid":"5f22af52fe385bccd4989eb0367c712b","status":"passed","time":{"start":1750075547614,"stop":1750075548586,"duration":972},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"has title","uid":"5b2dae25be621258","parentUid":"5f22af52fe385bccd4989eb0367c712b","status":"passed","time":{"start":1750075561393,"stop":1750075562947,"duration":1554},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Некорректный новый пароль","uid":"679d3e39f3748fca","parentUid":"5f22af52fe385bccd4989eb0367c712b","status":"passed","time":{"start":1750075566120,"stop":1750075567344,"duration":1224},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Регистр в email (User@test.com ≠ user@test.com)","uid":"9c0b65beee8ee273","parentUid":"5f22af52fe385bccd4989eb0367c712b","status":"passed","time":{"start":1750075548592,"stop":1750075549589,"duration":997},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":["test.com","test.com)"]},{"name":"Несуществующий email","uid":"a819326431f0ed05","parentUid":"5f22af52fe385bccd4989eb0367c712b","status":"passed","time":{"start":1750075549597,"stop":1750075550468,"duration":871},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Регистр в email (User@test.com ≠ user@test.com)","uid":"28b1fab7a467f8a0","parentUid":"5f22af52fe385bccd4989eb0367c712b","status":"passed","time":{"start":1750075564720,"stop":1750075566114,"duration":1394},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":["test.com","test.com)"]},{"name":"Несуществующий email","uid":"ee7d99c2943f739e","parentUid":"5f22af52fe385bccd4989eb0367c712b","status":"passed","time":{"start":1750075555286,"stop":1750075556929,"duration":1643},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Пользователь должен успешно залогиниться с валидными данными","uid":"d5f1f8610d1aa8a1","parentUid":"5f22af52fe385bccd4989eb0367c712b","status":"passed","time":{"start":1750075556942,"stop":1750075558396,"duration":1454},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Неверный пароль","uid":"20cbd51974e2c4a","parentUid":"5f22af52fe385bccd4989eb0367c712b","status":"passed","time":{"start":1750075563427,"stop":1750075564713,"duration":1286},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Переход по ссылке \"Забыли пароль?\"","uid":"fa5b7df4c6ef2e35","parentUid":"5f22af52fe385bccd4989eb0367c712b","status":"passed","time":{"start":1750075545986,"stop":1750075547264,"duration":1278},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Пароли не совпадают","uid":"a41465dcbdf5bc12","parentUid":"5f22af52fe385bccd4989eb0367c712b","status":"passed","time":{"start":1750075550475,"stop":1750075551375,"duration":900},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Пользователь успешно восстанавливает пароль","uid":"f3eb6f5f41d3af6c","parentUid":"5f22af52fe385bccd4989eb0367c712b","status":"passed","time":{"start":1750075567353,"stop":1750075568728,"duration":1375},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Переход по ссылке \"Забыли пароль?\"","uid":"97cfbc33de42faa5","parentUid":"5f22af52fe385bccd4989eb0367c712b","status":"passed","time":{"start":1750075551914,"stop":1750075554459,"duration":2545},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Некорректный новый пароль","uid":"2c0febe4d6291da9","parentUid":"5f22af52fe385bccd4989eb0367c712b","status":"passed","time":{"start":1750075558416,"stop":1750075560205,"duration":1789},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]}],"uid":"5f22af52fe385bccd4989eb0367c712b"},{"name":"pid-47252-worker-1","children":[{"name":"has title","uid":"f7bfbf67a45ab3ec","parentUid":"046b4309bceab16bed60bc633ad40bf0","status":"passed","time":{"start":1750084494460,"stop":1750084496600,"duration":2140},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Только email без пароля","uid":"9059b807844ecd29","parentUid":"046b4309bceab16bed60bc633ad40bf0","status":"passed","time":{"start":1750084507616,"stop":1750084508347,"duration":731},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Некорректный новый пароль","uid":"8af42ae3367ca0d6","parentUid":"046b4309bceab16bed60bc633ad40bf0","status":"passed","time":{"start":1750084501747,"stop":1750084503402,"duration":1655},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Оба поля пустые","uid":"f0ec6d6d628046ac","parentUid":"046b4309bceab16bed60bc633ad40bf0","status":"passed","time":{"start":1750084498792,"stop":1750084500139,"duration":1347},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Переключатель видимости пароля показывает и скрывает ввод","uid":"2f8af4d67d869f1","parentUid":"046b4309bceab16bed60bc633ad40bf0","status":"passed","time":{"start":1750084508352,"stop":1750084509225,"duration":873},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"get started link","uid":"b714c3ef6b1955c5","parentUid":"046b4309bceab16bed60bc633ad40bf0","status":"passed","time":{"start":1750084487579,"stop":1750084488883,"duration":1304},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Несуществующий email","uid":"f5ffdd03c44055b1","parentUid":"046b4309bceab16bed60bc633ad40bf0","status":"passed","time":{"start":1750084489363,"stop":1750084490743,"duration":1380},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректный новый пароль","uid":"a9ee13342854924d","parentUid":"046b4309bceab16bed60bc633ad40bf0","status":"passed","time":{"start":1750084509235,"stop":1750084510626,"duration":1391},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Некорректный формат email","uid":"1aae5dc9a4d21981","parentUid":"046b4309bceab16bed60bc633ad40bf0","status":"passed","time":{"start":1750084490746,"stop":1750084491640,"duration":894},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Пользователь должен успешно залогиниться с валидными данными","uid":"909368716fad6c28","parentUid":"046b4309bceab16bed60bc633ad40bf0","status":"passed","time":{"start":1750084500146,"stop":1750084501725,"duration":1579},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"has title","uid":"13a3c47523dc168e","parentUid":"046b4309bceab16bed60bc633ad40bf0","status":"passed","time":{"start":1750084504438,"stop":1750084505941,"duration":1503},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Неверный пароль","uid":"d30e1a8a947541fc","parentUid":"046b4309bceab16bed60bc633ad40bf0","status":"passed","time":{"start":1750084506454,"stop":1750084507609,"duration":1155},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Некорректный новый пароль","uid":"e07c24690f801b74","parentUid":"046b4309bceab16bed60bc633ad40bf0","status":"passed","time":{"start":1750084492220,"stop":1750084493759,"duration":1539},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректный email (формат)","uid":"701a94631e81e6af","parentUid":"046b4309bceab16bed60bc633ad40bf0","status":"passed","time":{"start":1750084491646,"stop":1750084492211,"duration":565},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]}],"uid":"046b4309bceab16bed60bc633ad40bf0"},{"name":"pid-37773-worker-3","children":[{"name":"Несуществующий email","uid":"85cece840380f1a2","parentUid":"0ff4831e87f1a09db416bfec0bff90b9","status":"passed","time":{"start":1750075563691,"stop":1750075564756,"duration":1065},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Неверный код подтверждения","uid":"3c11c1516f549102","parentUid":"0ff4831e87f1a09db416bfec0bff90b9","status":"passed","time":{"start":1750075549609,"stop":1750075550703,"duration":1094},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Переход по ссылке \"Забыли пароль?\"","uid":"48151a4a0833cfb","parentUid":"0ff4831e87f1a09db416bfec0bff90b9","status":"passed","time":{"start":1750075562343,"stop":1750075563505,"duration":1162},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Пароли не совпадают","uid":"c97c618fecbcd5f8","parentUid":"0ff4831e87f1a09db416bfec0bff90b9","status":"passed","time":{"start":1750075559492,"stop":1750075561099,"duration":1607},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Несуществующий email","uid":"dd7e1d233c7f50ae","parentUid":"0ff4831e87f1a09db416bfec0bff90b9","status":"passed","time":{"start":1750075558210,"stop":1750075559483,"duration":1273},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Пустое поле \"Повторите пароль\"","uid":"583ad684ab6ad19e","parentUid":"0ff4831e87f1a09db416bfec0bff90b9","status":"passed","time":{"start":1750075567085,"stop":1750075568056,"duration":971},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Переход по ссылке \"Зарегистрируйтесь\"","uid":"6475d4d062ae690d","parentUid":"0ff4831e87f1a09db416bfec0bff90b9","status":"passed","time":{"start":1750075545992,"stop":1750075547267,"duration":1275},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Пользователь должен успешно залогиниться с валидными данными","uid":"d6802166c179c1c","parentUid":"0ff4831e87f1a09db416bfec0bff90b9","status":"passed","time":{"start":1750075564763,"stop":1750075565949,"duration":1186},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Пользователь должен успешно залогиниться с валидными данными","uid":"d7c9ba91de80e2c8","parentUid":"0ff4831e87f1a09db416bfec0bff90b9","status":"passed","time":{"start":1750075548782,"stop":1750075549601,"duration":819},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Несуществующий email","uid":"226f68ac082fe856","parentUid":"0ff4831e87f1a09db416bfec0bff90b9","status":"passed","time":{"start":1750075565958,"stop":1750075567080,"duration":1122},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Оба поля пустые","uid":"9fc6cc9365f5ebab","parentUid":"0ff4831e87f1a09db416bfec0bff90b9","status":"passed","time":{"start":1750075555537,"stop":1750075556816,"duration":1279},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Несуществующий email","uid":"b16b189690b6777f","parentUid":"0ff4831e87f1a09db416bfec0bff90b9","status":"passed","time":{"start":1750075547613,"stop":1750075548776,"duration":1163},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Неверный пароль","uid":"d9f77a3678ef9c68","parentUid":"0ff4831e87f1a09db416bfec0bff90b9","status":"passed","time":{"start":1750075554154,"stop":1750075555529,"duration":1375},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"has title","uid":"8552b4194c8b884c","parentUid":"0ff4831e87f1a09db416bfec0bff90b9","status":"passed","time":{"start":1750075551224,"stop":1750075553043,"duration":1819},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Регистр в email (User@test.com ≠ user@test.com)","uid":"8c86ef49444cfeb3","parentUid":"0ff4831e87f1a09db416bfec0bff90b9","status":"passed","time":{"start":1750075556823,"stop":1750075558200,"duration":1377},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":["test.com","test.com)"]}],"uid":"0ff4831e87f1a09db416bfec0bff90b9"}],"uid":"d340b2dfe687b8ded294d7fb172d51f2"}]} \ No newline at end of file +{"uid":"ab17fc5a4eb3bca4b216b548c7f9fcbc","name":"timeline","children":[{"name":"MacBook-Air-Vlad.local","children":[{"name":"pid-58272-worker-2","children":[{"name":"Отправка пустой формы","uid":"e7e884e9a314400d","parentUid":"4e824d49a5a7e61b397db8dedec476b5","status":"passed","time":{"start":1750252824473,"stop":1750252825514,"duration":1041},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Переключатель видимости пароля показывает и скрывает ввод","uid":"85e2816b7097b4a1","parentUid":"4e824d49a5a7e61b397db8dedec476b5","status":"passed","time":{"start":1750252813037,"stop":1750252813951,"duration":914},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Только email без пароля","uid":"353f54e5e0ae27dd","parentUid":"4e824d49a5a7e61b397db8dedec476b5","status":"passed","time":{"start":1750252841680,"stop":1750252843659,"duration":1979},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"has title","uid":"1bb7e55e3db2d758","parentUid":"4e824d49a5a7e61b397db8dedec476b5","status":"passed","time":{"start":1750252852132,"stop":1750252854191,"duration":2059},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Пользователь успешно восстанавливает пароль","uid":"82f13eaca42a7424","parentUid":"4e824d49a5a7e61b397db8dedec476b5","status":"passed","time":{"start":1750252860877,"stop":1750252862631,"duration":1754},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Слишком длинная должность","uid":"d56dbab5fcead289","parentUid":"4e824d49a5a7e61b397db8dedec476b5","status":"passed","time":{"start":1750252825519,"stop":1750252826364,"duration":845},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Несуществующий email","uid":"13b252823d104e51","parentUid":"4e824d49a5a7e61b397db8dedec476b5","status":"passed","time":{"start":1750252813957,"stop":1750252814935,"duration":978},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Неверный код подтверждения","uid":"2d652d7b26ea781f","parentUid":"4e824d49a5a7e61b397db8dedec476b5","status":"passed","time":{"start":1750252859258,"stop":1750252860871,"duration":1613},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Некорректный email формат","uid":"c185014f0ec6ca57","parentUid":"4e824d49a5a7e61b397db8dedec476b5","status":"passed","time":{"start":1750252849516,"stop":1750252851246,"duration":1730},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Некорректный формат email","uid":"abcac302f2be266d","parentUid":"4e824d49a5a7e61b397db8dedec476b5","status":"passed","time":{"start":1750252811927,"stop":1750252813032,"duration":1105},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Несуществующий email","uid":"253a7abc2208994a","parentUid":"4e824d49a5a7e61b397db8dedec476b5","status":"passed","time":{"start":1750252810864,"stop":1750252811923,"duration":1059},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Оба поля пустые","uid":"83fbcf20a008eff","parentUid":"4e824d49a5a7e61b397db8dedec476b5","status":"passed","time":{"start":1750252856141,"stop":1750252857865,"duration":1724},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Пустое поле \"Повторите пароль\"","uid":"83468007d66545d9","parentUid":"4e824d49a5a7e61b397db8dedec476b5","status":"passed","time":{"start":1750252814938,"stop":1750252824465,"duration":9527},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Переход по ссылке \"Забыли пароль?\"","uid":"6abeabb3c0c9bfb8","parentUid":"4e824d49a5a7e61b397db8dedec476b5","status":"passed","time":{"start":1750252808951,"stop":1750252810557,"duration":1606},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Неверный пароль","uid":"c837cbd8e20dc069","parentUid":"4e824d49a5a7e61b397db8dedec476b5","status":"passed","time":{"start":1750252835856,"stop":1750252841676,"duration":5820},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Слишком длинная должность","uid":"55c6c53c698ff383","parentUid":"4e824d49a5a7e61b397db8dedec476b5","status":"passed","time":{"start":1750252862644,"stop":1750252863718,"duration":1074},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Отправка пустой формы","uid":"bdc589133542e6a0","parentUid":"4e824d49a5a7e61b397db8dedec476b5","status":"passed","time":{"start":1750252847824,"stop":1750252849508,"duration":1684},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Неверный пароль","uid":"49ebdbe06de4baa5","parentUid":"4e824d49a5a7e61b397db8dedec476b5","status":"passed","time":{"start":1750252854648,"stop":1750252856137,"duration":1489},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Некорректный новый пароль","uid":"19a70ab8d1df0edd","parentUid":"4e824d49a5a7e61b397db8dedec476b5","status":"passed","time":{"start":1750252845679,"stop":1750252847817,"duration":2138},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"get started link","uid":"406d0a5ba56ef55e","parentUid":"4e824d49a5a7e61b397db8dedec476b5","status":"passed","time":{"start":1750252826950,"stop":1750252833537,"duration":6587},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Переключатель видимости пароля показывает и скрывает ввод","uid":"141a9f8f69b1de16","parentUid":"4e824d49a5a7e61b397db8dedec476b5","status":"passed","time":{"start":1750252843667,"stop":1750252845672,"duration":2005},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Пользователь должен успешно залогиниться с валидными данными","uid":"4317368ffc63a88","parentUid":"4e824d49a5a7e61b397db8dedec476b5","status":"passed","time":{"start":1750252857870,"stop":1750252859251,"duration":1381},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]}],"uid":"4e824d49a5a7e61b397db8dedec476b5"},{"name":"pid-37773-worker-1","children":[{"name":"Переключатель видимости пароля показывает и скрывает ввод","uid":"6249b78a768614e1","parentUid":"3a34b0a5de71060f5c181ff9446c9749","status":"passed","time":{"start":1750075565020,"stop":1750075565962,"duration":942},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Пользователь успешно восстанавливает пароль","uid":"a0344127a19e8e6d","parentUid":"3a34b0a5de71060f5c181ff9446c9749","status":"passed","time":{"start":1750075550648,"stop":1750075551753,"duration":1105},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Неверный код подтверждения","uid":"4f817cd0642eaed2","parentUid":"3a34b0a5de71060f5c181ff9446c9749","status":"passed","time":{"start":1750075558336,"stop":1750075560026,"duration":1690},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Переход по ссылке \"Зарегистрируйтесь\"","uid":"46bf7e5dbbd44a73","parentUid":"3a34b0a5de71060f5c181ff9446c9749","status":"passed","time":{"start":1750075562963,"stop":1750075563995,"duration":1032},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Некорректный новый пароль","uid":"d46de6aefcc41697","parentUid":"3a34b0a5de71060f5c181ff9446c9749","status":"passed","time":{"start":1750075549657,"stop":1750075550644,"duration":987},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Только email без пароля","uid":"70f4b065f74f6555","parentUid":"3a34b0a5de71060f5c181ff9446c9749","status":"passed","time":{"start":1750075547738,"stop":1750075548931,"duration":1193},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Пользователь успешно восстанавливает пароль","uid":"d9eef4e67e689958","parentUid":"3a34b0a5de71060f5c181ff9446c9749","status":"passed","time":{"start":1750075560041,"stop":1750075561748,"duration":1707},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"get started link","uid":"73473fc9a8b1bb12","parentUid":"3a34b0a5de71060f5c181ff9446c9749","status":"passed","time":{"start":1750075545978,"stop":1750075547391,"duration":1413},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Переключатель видимости пароля показывает и скрывает ввод","uid":"d7c5bc357fa3c7c0","parentUid":"3a34b0a5de71060f5c181ff9446c9749","status":"passed","time":{"start":1750075548938,"stop":1750075549652,"duration":714},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Только email без пароля","uid":"1189050f6717ad27","parentUid":"3a34b0a5de71060f5c181ff9446c9749","status":"passed","time":{"start":1750075564160,"stop":1750075565015,"duration":855},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Только email без пароля","uid":"3af86631ead6d924","parentUid":"3a34b0a5de71060f5c181ff9446c9749","status":"passed","time":{"start":1750075555728,"stop":1750075557066,"duration":1338},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Переключатель видимости пароля показывает и скрывает ввод","uid":"2e7cc0fca9db6e6d","parentUid":"3a34b0a5de71060f5c181ff9446c9749","status":"passed","time":{"start":1750075557078,"stop":1750075558320,"duration":1242},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Переход по ссылке \"Зарегистрируйтесь\"","uid":"e1da2cec69164fbb","parentUid":"3a34b0a5de71060f5c181ff9446c9749","status":"passed","time":{"start":1750075552248,"stop":1750075554739,"duration":2491},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Пароли не совпадают","uid":"9029b999218b9178","parentUid":"3a34b0a5de71060f5c181ff9446c9749","status":"passed","time":{"start":1750075567274,"stop":1750075568310,"duration":1036},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Неверный код подтверждения","uid":"af23cf42d42c22f0","parentUid":"3a34b0a5de71060f5c181ff9446c9749","status":"passed","time":{"start":1750075565970,"stop":1750075567264,"duration":1294},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]}],"uid":"3a34b0a5de71060f5c181ff9446c9749"},{"name":"pid-57952-worker-0","children":[{"name":"Слишком длинное название организации","uid":"243bc97ccd4569b0","parentUid":"78e3a90af3b5fbd4c10a51da4a21678b","status":"passed","time":{"start":1750252762242,"stop":1750252780416,"duration":18174},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректное имя и фамилия (слишком длинные)","uid":"ac9a886d0798d1ed","parentUid":"78e3a90af3b5fbd4c10a51da4a21678b","status":"passed","time":{"start":1750252747042,"stop":1750252750879,"duration":3837},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Слишком длинная должность","uid":"cf49efa2bb547af4","parentUid":"78e3a90af3b5fbd4c10a51da4a21678b","status":"passed","time":{"start":1750252754595,"stop":1750252762232,"duration":7637},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректный email формат","uid":"94ebae2625e07d27","parentUid":"78e3a90af3b5fbd4c10a51da4a21678b","status":"failed","time":{"start":1750252791920,"stop":1750252795300,"duration":3380},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Отправка пустой формы","uid":"d47716dc365fadfc","parentUid":"78e3a90af3b5fbd4c10a51da4a21678b","status":"passed","time":{"start":1750252781050,"stop":1750252787606,"duration":6556},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Некорректный email формат","uid":"51bfbf0c4b256386","parentUid":"78e3a90af3b5fbd4c10a51da4a21678b","status":"passed","time":{"start":1750252750885,"stop":1750252754589,"duration":3704},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Отправка пустой формы","uid":"4f4f1d642652a42c","parentUid":"78e3a90af3b5fbd4c10a51da4a21678b","status":"passed","time":{"start":1750252705775,"stop":1750252746151,"duration":40376},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректное имя и фамилия (слишком длинные)","uid":"e8eb57e815b04164","parentUid":"78e3a90af3b5fbd4c10a51da4a21678b","status":"passed","time":{"start":1750252788273,"stop":1750252791909,"duration":3636},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]}],"uid":"78e3a90af3b5fbd4c10a51da4a21678b"},{"name":"pid-47252-worker-0","children":[{"name":"Пустое поле \"Повторите пароль\"","uid":"e48bc757cfbc0db0","parentUid":"91f0ea53decad4e33b42765d08d698ed","status":"passed","time":{"start":1750084509447,"stop":1750084510516,"duration":1069},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Регистр в email (User@test.com ≠ user@test.com)","uid":"ddca81f303e19280","parentUid":"91f0ea53decad4e33b42765d08d698ed","status":"passed","time":{"start":1750084491115,"stop":1750084492165,"duration":1050},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":["test.com","test.com)"]},{"name":"Неверный код подтверждения","uid":"86f543b393f28fa","parentUid":"91f0ea53decad4e33b42765d08d698ed","status":"passed","time":{"start":1750084492172,"stop":1750084493410,"duration":1238},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Пользователь успешно восстанавливает пароль","uid":"cf37024cd921d433","parentUid":"91f0ea53decad4e33b42765d08d698ed","status":"passed","time":{"start":1750084493416,"stop":1750084494507,"duration":1091},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректный формат email","uid":"407f716b23d4e3cd","parentUid":"91f0ea53decad4e33b42765d08d698ed","status":"passed","time":{"start":1750084499796,"stop":1750084501311,"duration":1515},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Переход по ссылке \"Зарегистрируйтесь\"","uid":"1c9f284fe6b843b","parentUid":"91f0ea53decad4e33b42765d08d698ed","status":"passed","time":{"start":1750084494915,"stop":1750084497374,"duration":2459},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Некорректный email (формат)","uid":"d44d54d4fba10f7b","parentUid":"91f0ea53decad4e33b42765d08d698ed","status":"passed","time":{"start":1750084501326,"stop":1750084502338,"duration":1012},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Несуществующий email","uid":"cd8f5ff233116d8e","parentUid":"91f0ea53decad4e33b42765d08d698ed","status":"passed","time":{"start":1750084506686,"stop":1750084507723,"duration":1037},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Некорректный формат email","uid":"40015fc1b0be3163","parentUid":"91f0ea53decad4e33b42765d08d698ed","status":"passed","time":{"start":1750084507730,"stop":1750084508673,"duration":943},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Пустое поле \"Повторите пароль\"","uid":"fe24f987bb94a7ce","parentUid":"91f0ea53decad4e33b42765d08d698ed","status":"passed","time":{"start":1750084502343,"stop":1750084503756,"duration":1413},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"has title","uid":"2318eb083d7e242a","parentUid":"91f0ea53decad4e33b42765d08d698ed","status":"passed","time":{"start":1750084487580,"stop":1750084490628,"duration":3048},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"get started link","uid":"d8391b9ff99a6ce0","parentUid":"91f0ea53decad4e33b42765d08d698ed","status":"passed","time":{"start":1750084504688,"stop":1750084506422,"duration":1734},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Некорректный email (формат)","uid":"25bf62a9fdef3ea2","parentUid":"91f0ea53decad4e33b42765d08d698ed","status":"passed","time":{"start":1750084508679,"stop":1750084509441,"duration":762},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]}],"uid":"91f0ea53decad4e33b42765d08d698ed"},{"name":"pid-53574-worker-0","children":[{"name":"Успешная регистрация нового пользователя","uid":"22f8a179d5a337e8","parentUid":"3b1cea9ae970f2b395d425cb2bd49601","status":"failed","time":{"start":1750176582212,"stop":1750176651424,"duration":69212},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]}],"uid":"3b1cea9ae970f2b395d425cb2bd49601"},{"name":"pid-59479-worker-0","children":[{"name":"Пароли не совпадают","uid":"4eebb1230811a3dd","parentUid":"e760ec53cf286aca6c4bc2b0f12e66a3","status":"passed","time":{"start":1750253562798,"stop":1750253569425,"duration":6627},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Переход по ссылке \"Зарегистрируйтесь\"","uid":"ddb409ab42c11aa9","parentUid":"e760ec53cf286aca6c4bc2b0f12e66a3","status":"passed","time":{"start":1750253616847,"stop":1750253618431,"duration":1584},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Только email без пароля","uid":"24d0761a6935af7f","parentUid":"e760ec53cf286aca6c4bc2b0f12e66a3","status":"passed","time":{"start":1750253591157,"stop":1750253597964,"duration":6807},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Переключатель видимости пароля показывает и скрывает ввод","uid":"4fd8070ee07c07e1","parentUid":"e760ec53cf286aca6c4bc2b0f12e66a3","status":"passed","time":{"start":1750253554502,"stop":1750253556660,"duration":2158},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"has title","uid":"9e2f1dea9cfe0b65","parentUid":"e760ec53cf286aca6c4bc2b0f12e66a3","status":"passed","time":{"start":1750253578127,"stop":1750253582408,"duration":4281},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Переключатель видимости пароля показывает и скрывает ввод","uid":"dd3b057d4871238c","parentUid":"e760ec53cf286aca6c4bc2b0f12e66a3","status":"passed","time":{"start":1750253597973,"stop":1750253599889,"duration":1916},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Только email без пароля","uid":"12daddbe908eeb70","parentUid":"e760ec53cf286aca6c4bc2b0f12e66a3","status":"passed","time":{"start":1750253543785,"stop":1750253554497,"duration":10712},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Неверный код подтверждения","uid":"c1ab22b3f9166450","parentUid":"e760ec53cf286aca6c4bc2b0f12e66a3","status":"passed","time":{"start":1750253556666,"stop":1750253562794,"duration":6128},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":true,"parameters":["chromium"],"tags":[]},{"name":"Неверный пароль","uid":"d99021bc0bd45ce9","parentUid":"e760ec53cf286aca6c4bc2b0f12e66a3","status":"passed","time":{"start":1750253618438,"stop":1750253620369,"duration":1931},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"has title","uid":"c7cd56bdce8656af","parentUid":"e760ec53cf286aca6c4bc2b0f12e66a3","status":"passed","time":{"start":1750253539581,"stop":1750253541528,"duration":1947},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректный email формат","uid":"43316c0a1abf58ba","parentUid":"e760ec53cf286aca6c4bc2b0f12e66a3","status":"passed","time":{"start":1750253569430,"stop":1750253577638,"duration":8208},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректный новый пароль","uid":"268082d8261ccc76","parentUid":"e760ec53cf286aca6c4bc2b0f12e66a3","status":"passed","time":{"start":1750253599892,"stop":1750253602241,"duration":2349},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Слишком длинное название организации","uid":"1a3b3ab485523c37","parentUid":"e760ec53cf286aca6c4bc2b0f12e66a3","status":"passed","time":{"start":1750253632679,"stop":1750253634953,"duration":2274},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Пользователь успешно восстанавливает пароль","uid":"bdebd619900bc3fe","parentUid":"e760ec53cf286aca6c4bc2b0f12e66a3","status":"passed","time":{"start":1750253602246,"stop":1750253610240,"duration":7994},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Пустое поле \"Повторите пароль\"","uid":"7c195f45eccd77f0","parentUid":"e760ec53cf286aca6c4bc2b0f12e66a3","status":"passed","time":{"start":1750253628906,"stop":1750253632674,"duration":3768},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Только email без пароля","uid":"74ce0bc363de24e3","parentUid":"e760ec53cf286aca6c4bc2b0f12e66a3","status":"passed","time":{"start":1750253620373,"stop":1750253625769,"duration":5396},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"get started link","uid":"7be5c1dfc4d42552","parentUid":"e760ec53cf286aca6c4bc2b0f12e66a3","status":"passed","time":{"start":1750253613514,"stop":1750253616668,"duration":3154},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Неверный пароль","uid":"b47108b604f86692","parentUid":"e760ec53cf286aca6c4bc2b0f12e66a3","status":"passed","time":{"start":1750253541844,"stop":1750253543782,"duration":1938},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректный email (формат)","uid":"f858e1d3e4667ccb","parentUid":"e760ec53cf286aca6c4bc2b0f12e66a3","status":"passed","time":{"start":1750253625776,"stop":1750253628901,"duration":3125},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Неверный пароль","uid":"3f0e10c74637e3d3","parentUid":"e760ec53cf286aca6c4bc2b0f12e66a3","status":"passed","time":{"start":1750253583944,"stop":1750253591152,"duration":7208},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Слишком длинная должность","uid":"b6cf932c7feaf975","parentUid":"e760ec53cf286aca6c4bc2b0f12e66a3","status":"passed","time":{"start":1750253610248,"stop":1750253612680,"duration":2432},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]}],"uid":"e760ec53cf286aca6c4bc2b0f12e66a3"},{"name":"pid-47252-worker-2","children":[{"name":"Неверный код подтверждения","uid":"a3b3ee60bb9135ec","parentUid":"7eeeb058df157ab676ac32742ee3665c","status":"passed","time":{"start":1750084509104,"stop":1750084510143,"duration":1039},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Пользователь должен успешно залогиниться с валидными данными","uid":"acbfe1456a4045d4","parentUid":"7eeeb058df157ab676ac32742ee3665c","status":"passed","time":{"start":1750084508128,"stop":1750084509091,"duration":963},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Только email без пароля","uid":"dde43ba131ff753b","parentUid":"7eeeb058df157ab676ac32742ee3665c","status":"passed","time":{"start":1750084490528,"stop":1750084491353,"duration":825},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Неверный пароль","uid":"95c73e558adaf781","parentUid":"7eeeb058df157ab676ac32742ee3665c","status":"passed","time":{"start":1750084497996,"stop":1750084499294,"duration":1298},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Переход по ссылке \"Забыли пароль?\"","uid":"5179e2557b0c956","parentUid":"7eeeb058df157ab676ac32742ee3665c","status":"passed","time":{"start":1750084487578,"stop":1750084490119,"duration":2541},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Переключатель видимости пароля показывает и скрывает ввод","uid":"558682f3bb3bfaf6","parentUid":"7eeeb058df157ab676ac32742ee3665c","status":"passed","time":{"start":1750084491357,"stop":1750084492371,"duration":1014},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Пустое поле \"Повторите пароль\"","uid":"8076f7892ffa88f","parentUid":"7eeeb058df157ab676ac32742ee3665c","status":"passed","time":{"start":1750084492375,"stop":1750084493870,"duration":1495},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"get started link","uid":"75ec835b417a4298","parentUid":"7eeeb058df157ab676ac32742ee3665c","status":"passed","time":{"start":1750084494460,"stop":1750084496622,"duration":2162},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Пользователь успешно восстанавливает пароль","uid":"969ca192d0de91e9","parentUid":"7eeeb058df157ab676ac32742ee3665c","status":"passed","time":{"start":1750084503378,"stop":1750084505830,"duration":2452},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Неверный код подтверждения","uid":"9fa8644996023a26","parentUid":"7eeeb058df157ab676ac32742ee3665c","status":"passed","time":{"start":1750084501594,"stop":1750084503368,"duration":1774},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Пользователь успешно восстанавливает пароль","uid":"181f6a192d9c8bf8","parentUid":"7eeeb058df157ab676ac32742ee3665c","status":"passed","time":{"start":1750084510151,"stop":1750084511331,"duration":1180},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Переключатель видимости пароля показывает и скрывает ввод","uid":"2d67f9006c444cfa","parentUid":"7eeeb058df157ab676ac32742ee3665c","status":"passed","time":{"start":1750084500466,"stop":1750084501581,"duration":1115},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Переход по ссылке \"Зарегистрируйтесь\"","uid":"6e21e8919ef7ab74","parentUid":"7eeeb058df157ab676ac32742ee3665c","status":"passed","time":{"start":1750084506996,"stop":1750084507961,"duration":965},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Только email без пароля","uid":"53e59e459b5cddf9","parentUid":"7eeeb058df157ab676ac32742ee3665c","status":"passed","time":{"start":1750084499301,"stop":1750084500455,"duration":1154},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]}],"uid":"7eeeb058df157ab676ac32742ee3665c"},{"name":"pid-58272-worker-3","children":[{"name":"Пустое поле \"Повторите пароль\"","uid":"1c00b342119d156f","parentUid":"ad5492fe477ee542687e3f87678afd13","status":"passed","time":{"start":1750252845854,"stop":1750252847920,"duration":2066},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Пользователь должен успешно залогиниться с валидными данными","uid":"ef140abbb2fa0d70","parentUid":"ad5492fe477ee542687e3f87678afd13","status":"passed","time":{"start":1750252812984,"stop":1750252814009,"duration":1025},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Несуществующий email","uid":"f86731f8080655f0","parentUid":"ad5492fe477ee542687e3f87678afd13","status":"passed","time":{"start":1750252855698,"stop":1750252857537,"duration":1839},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Некорректное имя и фамилия (слишком длинные)","uid":"2d1faaf3f86c6c4b","parentUid":"ad5492fe477ee542687e3f87678afd13","status":"passed","time":{"start":1750252847933,"stop":1750252851077,"duration":3144},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Неверный код подтверждения","uid":"3eb5a3d8be79245","parentUid":"ad5492fe477ee542687e3f87678afd13","status":"failed","time":{"start":1750252814013,"stop":1750252819880,"duration":5867},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Несуществующий email","uid":"e9161570480d5e32","parentUid":"ad5492fe477ee542687e3f87678afd13","status":"passed","time":{"start":1750252858950,"stop":1750252860494,"duration":1544},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Успешная регистрация нового пользователя","uid":"e69b3e4c0f6da480","parentUid":"ad5492fe477ee542687e3f87678afd13","status":"passed","time":{"start":1750252826035,"stop":1750252832119,"duration":6084},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Пароли не совпадают","uid":"3e17e2a7e63bcb14","parentUid":"ad5492fe477ee542687e3f87678afd13","status":"passed","time":{"start":1750252820406,"stop":1750252824534,"duration":4128},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректное имя и фамилия (слишком длинные)","uid":"cb2666f6af0f0d4a","parentUid":"ad5492fe477ee542687e3f87678afd13","status":"passed","time":{"start":1750252824657,"stop":1750252826030,"duration":1373},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Только email без пароля","uid":"4f1aa5b9d024f030","parentUid":"ad5492fe477ee542687e3f87678afd13","status":"passed","time":{"start":1750252811926,"stop":1750252812980,"duration":1054},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректный формат email","uid":"6befecf75ebe5622","parentUid":"ad5492fe477ee542687e3f87678afd13","status":"passed","time":{"start":1750252857696,"stop":1750252858941,"duration":1245},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Неверный пароль","uid":"4217d835e952768e","parentUid":"ad5492fe477ee542687e3f87678afd13","status":"passed","time":{"start":1750252810863,"stop":1750252811922,"duration":1059},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректный email формат","uid":"abb74cf0ca506236","parentUid":"ad5492fe477ee542687e3f87678afd13","status":"passed","time":{"start":1750252861921,"stop":1750252863443,"duration":1522},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Успешная регистрация нового пользователя","uid":"bdc4f898eab7c232","parentUid":"ad5492fe477ee542687e3f87678afd13","status":"passed","time":{"start":1750252851086,"stop":1750252854766,"duration":3680},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Некорректный формат email","uid":"8cede58e2a99a287","parentUid":"ad5492fe477ee542687e3f87678afd13","status":"passed","time":{"start":1750252842226,"stop":1750252843934,"duration":1708},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Некорректный email (формат)","uid":"ec745f5324fbe651","parentUid":"ad5492fe477ee542687e3f87678afd13","status":"passed","time":{"start":1750252843942,"stop":1750252845848,"duration":1906},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Переход по ссылке \"Зарегистрируйтесь\"","uid":"b91a2a6632c62b45","parentUid":"ad5492fe477ee542687e3f87678afd13","status":"passed","time":{"start":1750252808952,"stop":1750252810556,"duration":1604},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Переход по ссылке \"Зарегистрируйтесь\"","uid":"403c230730f38ab","parentUid":"ad5492fe477ee542687e3f87678afd13","status":"passed","time":{"start":1750252832579,"stop":1750252841686,"duration":9107},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Пароли не совпадают","uid":"f82ed2d7587aec25","parentUid":"ad5492fe477ee542687e3f87678afd13","status":"passed","time":{"start":1750252860501,"stop":1750252861914,"duration":1413},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]}],"uid":"ad5492fe477ee542687e3f87678afd13"},{"name":"pid-59479-worker-1","children":[{"name":"Некорректный email (формат)","uid":"2d6e81b71171ace1","parentUid":"f7991a875b05687aeb40bb4aeca96a19","status":"passed","time":{"start":1750253598459,"stop":1750253600776,"duration":2317},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Переход по ссылке \"Зарегистрируйтесь\"","uid":"f12e99c96967b550","parentUid":"f7991a875b05687aeb40bb4aeca96a19","status":"passed","time":{"start":1750253580604,"stop":1750253590440,"duration":9836},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Несуществующий email","uid":"2981b57719f478ef","parentUid":"f7991a875b05687aeb40bb4aeca96a19","status":"passed","time":{"start":1750253627038,"stop":1750253629360,"duration":2322},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Пароли не совпадают","uid":"5d12a7641d21519b","parentUid":"f7991a875b05687aeb40bb4aeca96a19","status":"passed","time":{"start":1750253629369,"stop":1750253631627,"duration":2258},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Регистр в email (User@test.com ≠ user@test.com)","uid":"8364fab107a5383f","parentUid":"f7991a875b05687aeb40bb4aeca96a19","status":"passed","time":{"start":1750253591861,"stop":1750253598453,"duration":6592},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":["test.com","test.com)"]},{"name":"get started link","uid":"6962b06e4eb06b10","parentUid":"f7991a875b05687aeb40bb4aeca96a19","status":"broken","time":{"start":1750253539580,"stop":1750253579575,"duration":39995},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":true,"parameters":["chromium"],"tags":[]},{"name":"Успешная регистрация нового пользователя","uid":"7bd365bab41d410d","parentUid":"f7991a875b05687aeb40bb4aeca96a19","status":"passed","time":{"start":1750253611748,"stop":1750253620699,"duration":8951},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Отправка пустой формы","uid":"ef734132e3fbac4f","parentUid":"f7991a875b05687aeb40bb4aeca96a19","status":"passed","time":{"start":1750253603906,"stop":1750253611740,"duration":7834},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Слишком длинная должность","uid":"bfaa389e6b880a54","parentUid":"f7991a875b05687aeb40bb4aeca96a19","status":"passed","time":{"start":1750253631638,"stop":1750253633505,"duration":1867},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Пустое поле \"Повторите пароль\"","uid":"c5a5985d074991f8","parentUid":"f7991a875b05687aeb40bb4aeca96a19","status":"passed","time":{"start":1750253600779,"stop":1750253603897,"duration":3118},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Некорректный формат email","uid":"d8233d7d84131656","parentUid":"f7991a875b05687aeb40bb4aeca96a19","status":"passed","time":{"start":1750253621559,"stop":1750253626826,"duration":5267},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]}],"uid":"f7991a875b05687aeb40bb4aeca96a19"},{"name":"pid-58272-worker-1","children":[{"name":"Регистр в email (User@test.com ≠ user@test.com)","uid":"1adf876d79ab931","parentUid":"4793519a821a516eabe78179c54179b3","status":"passed","time":{"start":1750252843109,"stop":1750252844801,"duration":1692},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":["test.com","test.com)"]},{"name":"Только email без пароля","uid":"1fdd505b1055dba0","parentUid":"4793519a821a516eabe78179c54179b3","status":"passed","time":{"start":1750252856451,"stop":1750252857941,"duration":1490},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Слишком длинное название организации","uid":"db03043b9622459e","parentUid":"4793519a821a516eabe78179c54179b3","status":"passed","time":{"start":1750252862686,"stop":1750252865131,"duration":2445},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Слишком длинная должность","uid":"174c38dfb4172d0a","parentUid":"4793519a821a516eabe78179c54179b3","status":"passed","time":{"start":1750252849868,"stop":1750252851419,"duration":1551},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Переключатель видимости пароля показывает и скрывает ввод","uid":"f401dd4efd30ea3b","parentUid":"4793519a821a516eabe78179c54179b3","status":"passed","time":{"start":1750252857947,"stop":1750252859370,"duration":1423},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Пользователь успешно восстанавливает пароль","uid":"dcb78836f324219b","parentUid":"4793519a821a516eabe78179c54179b3","status":"passed","time":{"start":1750252822512,"stop":1750252826279,"duration":3767},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Переход по ссылке \"Зарегистрируйтесь\"","uid":"a85a3624497db5d","parentUid":"4793519a821a516eabe78179c54179b3","status":"passed","time":{"start":1750252854583,"stop":1750252856445,"duration":1862},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"has title","uid":"2fe9fff62d8f0470","parentUid":"4793519a821a516eabe78179c54179b3","status":"passed","time":{"start":1750252826934,"stop":1750252835638,"duration":8704},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"get started link","uid":"3bf369ec5af3ff61","parentUid":"4793519a821a516eabe78179c54179b3","status":"passed","time":{"start":1750252808949,"stop":1750252822202,"duration":13253},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Несуществующий email","uid":"7cb6860d4bfa30f8","parentUid":"4793519a821a516eabe78179c54179b3","status":"passed","time":{"start":1750252844811,"stop":1750252847292,"duration":2481},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"get started link","uid":"2508c669aa0d4591","parentUid":"4793519a821a516eabe78179c54179b3","status":"passed","time":{"start":1750252852203,"stop":1750252854182,"duration":1979},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Некорректный новый пароль","uid":"e9489fb366a07bd5","parentUid":"4793519a821a516eabe78179c54179b3","status":"passed","time":{"start":1750252859376,"stop":1750252861187,"duration":1811},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Отправка пустой формы","uid":"2fa3e47e2c278a2f","parentUid":"4793519a821a516eabe78179c54179b3","status":"passed","time":{"start":1750252861196,"stop":1750252862666,"duration":1470},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Пароли не совпадают","uid":"97e7b68861a483dd","parentUid":"4793519a821a516eabe78179c54179b3","status":"passed","time":{"start":1750252847300,"stop":1750252849862,"duration":2562},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Несуществующий email","uid":"fe3a63658be6990b","parentUid":"4793519a821a516eabe78179c54179b3","status":"passed","time":{"start":1750252836661,"stop":1750252843104,"duration":6443},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]}],"uid":"4793519a821a516eabe78179c54179b3"},{"name":"pid-59479-worker-3","children":[{"name":"get started link","uid":"9dbd22211a852adb","parentUid":"f41ab77a9f8ee85fcf3c194bda77dd99","status":"passed","time":{"start":1750253580470,"stop":1750253583690,"duration":3220},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Некорректный новый пароль","uid":"c989d1690bcfa46f","parentUid":"f41ab77a9f8ee85fcf3c194bda77dd99","status":"passed","time":{"start":1750253556746,"stop":1750253562562,"duration":5816},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Пустое поле \"Повторите пароль\"","uid":"1c2b927f6a4c2926","parentUid":"f41ab77a9f8ee85fcf3c194bda77dd99","status":"passed","time":{"start":1750253562565,"stop":1750253564290,"duration":1725},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Отправка пустой формы","uid":"311909f1f9bb172e","parentUid":"f41ab77a9f8ee85fcf3c194bda77dd99","status":"passed","time":{"start":1750253629833,"stop":1750253631616,"duration":1783},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Оба поля пустые","uid":"41ad93595349c29","parentUid":"f41ab77a9f8ee85fcf3c194bda77dd99","status":"passed","time":{"start":1750253620048,"stop":1750253625592,"duration":5544},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Слишком длинная должность","uid":"1aa50af46a2c6c85","parentUid":"f41ab77a9f8ee85fcf3c194bda77dd99","status":"passed","time":{"start":1750253570265,"stop":1750253577600,"duration":7335},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Слишком длинное название организации","uid":"a59360836ecd582e","parentUid":"f41ab77a9f8ee85fcf3c194bda77dd99","status":"passed","time":{"start":1750253577607,"stop":1750253579829,"duration":2222},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":5,"retriesStatusChange":true,"parameters":["chromium"],"tags":[]},{"name":"has title","uid":"bde11e0db442031c","parentUid":"f41ab77a9f8ee85fcf3c194bda77dd99","status":"passed","time":{"start":1750253612661,"stop":1750253615520,"duration":2859},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Переход по ссылке \"Зарегистрируйтесь\"","uid":"2b89ce8c9b1ff011","parentUid":"f41ab77a9f8ee85fcf3c194bda77dd99","status":"passed","time":{"start":1750253539579,"stop":1750253541710,"duration":2131},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Неверный код подтверждения","uid":"a90b7beaa711f52d","parentUid":"f41ab77a9f8ee85fcf3c194bda77dd99","status":"passed","time":{"start":1750253627415,"stop":1750253629829,"duration":2414},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Отправка пустой формы","uid":"ffac43d36c488156","parentUid":"f41ab77a9f8ee85fcf3c194bda77dd99","status":"passed","time":{"start":1750253564295,"stop":1750253570263,"duration":5968},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Переход по ссылке \"Забыли пароль?\"","uid":"969ce7fb67ee94cb","parentUid":"f41ab77a9f8ee85fcf3c194bda77dd99","status":"passed","time":{"start":1750253615927,"stop":1750253618481,"duration":2554},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Несуществующий email","uid":"716b6c73ce6c62ba","parentUid":"f41ab77a9f8ee85fcf3c194bda77dd99","status":"passed","time":{"start":1750253618487,"stop":1750253620044,"duration":1557},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Некорректное имя и фамилия (слишком длинные)","uid":"f32fd3da60726a1e","parentUid":"f41ab77a9f8ee85fcf3c194bda77dd99","status":"passed","time":{"start":1750253604406,"stop":1750253611801,"duration":7395},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Оба поля пустые","uid":"bdfb8cd05c21f618","parentUid":"f41ab77a9f8ee85fcf3c194bda77dd99","status":"passed","time":{"start":1750253542026,"stop":1750253543994,"duration":1968},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Несуществующий email","uid":"47ca0e41ec1ea8fb","parentUid":"f41ab77a9f8ee85fcf3c194bda77dd99","status":"passed","time":{"start":1750253598775,"stop":1750253604401,"duration":5626},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Пользователь должен успешно залогиниться с валидными данными","uid":"8ab573c35bfcbb5a","parentUid":"f41ab77a9f8ee85fcf3c194bda77dd99","status":"passed","time":{"start":1750253625598,"stop":1750253627407,"duration":1809},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Некорректный формат email","uid":"8554552a459385ed","parentUid":"f41ab77a9f8ee85fcf3c194bda77dd99","status":"passed","time":{"start":1750253591599,"stop":1750253598769,"duration":7170},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Несуществующий email","uid":"1e1a6ccd54582ad8","parentUid":"f41ab77a9f8ee85fcf3c194bda77dd99","status":"passed","time":{"start":1750253584291,"stop":1750253591595,"duration":7304},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Некорректный email формат","uid":"459b4b10daa488e2","parentUid":"f41ab77a9f8ee85fcf3c194bda77dd99","status":"passed","time":{"start":1750253631623,"stop":1750253633317,"duration":1694},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Некорректный email (формат)","uid":"e5b2a4ada3cdd147","parentUid":"f41ab77a9f8ee85fcf3c194bda77dd99","status":"passed","time":{"start":1750253554554,"stop":1750253556742,"duration":2188},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Регистр в email (User@test.com ≠ user@test.com)","uid":"d84d93cab9b2d9bf","parentUid":"f41ab77a9f8ee85fcf3c194bda77dd99","status":"passed","time":{"start":1750253543998,"stop":1750253554549,"duration":10551},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":["test.com","test.com)"]}],"uid":"f41ab77a9f8ee85fcf3c194bda77dd99"},{"name":"pid-37773-worker-0","children":[{"name":"Некорректный email (формат)","uid":"7b851f18564754f0","parentUid":"2fb7d675ba832935576e0d706d5a2394","status":"passed","time":{"start":1750075565746,"stop":1750075567592,"duration":1846},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Некорректный формат email","uid":"d5e9b04c857dd621","parentUid":"2fb7d675ba832935576e0d706d5a2394","status":"passed","time":{"start":1750075548464,"stop":1750075549142,"duration":678},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Неверный пароль","uid":"fa2d81f0904f0f1e","parentUid":"2fb7d675ba832935576e0d706d5a2394","status":"passed","time":{"start":1750075547550,"stop":1750075548445,"duration":895},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректный email (формат)","uid":"1fddb2fa0fdd9389","parentUid":"2fb7d675ba832935576e0d706d5a2394","status":"passed","time":{"start":1750075557377,"stop":1750075558616,"duration":1239},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"get started link","uid":"73dda8034b26c38d","parentUid":"2fb7d675ba832935576e0d706d5a2394","status":"passed","time":{"start":1750075551551,"stop":1750075553777,"duration":2226},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Некорректный формат email","uid":"3196675944a7d942","parentUid":"2fb7d675ba832935576e0d706d5a2394","status":"passed","time":{"start":1750075556104,"stop":1750075557367,"duration":1263},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"has title","uid":"bbdce211ee32ed80","parentUid":"2fb7d675ba832935576e0d706d5a2394","status":"passed","time":{"start":1750075545967,"stop":1750075547168,"duration":1201},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"get started link","uid":"f507eec9254d2e9e","parentUid":"2fb7d675ba832935576e0d706d5a2394","status":"passed","time":{"start":1750075561747,"stop":1750075563488,"duration":1741},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Пустое поле \"Повторите пароль\"","uid":"68f153226489550d","parentUid":"2fb7d675ba832935576e0d706d5a2394","status":"passed","time":{"start":1750075550062,"stop":1750075551012,"duration":950},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректный email (формат)","uid":"f2f0311a51af3e49","parentUid":"2fb7d675ba832935576e0d706d5a2394","status":"passed","time":{"start":1750075549148,"stop":1750075550058,"duration":910},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректный формат email","uid":"c722785b3141ca2f","parentUid":"2fb7d675ba832935576e0d706d5a2394","status":"passed","time":{"start":1750075564621,"stop":1750075565733,"duration":1112},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Пустое поле \"Повторите пароль\"","uid":"6fd2aa1e54397b07","parentUid":"2fb7d675ba832935576e0d706d5a2394","status":"passed","time":{"start":1750075558622,"stop":1750075560743,"duration":2121},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Оба поля пустые","uid":"48fd693c7a7ddc9e","parentUid":"2fb7d675ba832935576e0d706d5a2394","status":"passed","time":{"start":1750075563694,"stop":1750075564613,"duration":919},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]}],"uid":"2fb7d675ba832935576e0d706d5a2394"},{"name":"pid-37773-worker-3","children":[{"name":"Несуществующий email","uid":"e9d8c766e66a14f1","parentUid":"0ff4831e87f1a09db416bfec0bff90b9","status":"passed","time":{"start":1750075558210,"stop":1750075559483,"duration":1273},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Неверный пароль","uid":"5b14cf2a3c96a4b2","parentUid":"0ff4831e87f1a09db416bfec0bff90b9","status":"passed","time":{"start":1750075554154,"stop":1750075555529,"duration":1375},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Оба поля пустые","uid":"8bca28d2be9013b8","parentUid":"0ff4831e87f1a09db416bfec0bff90b9","status":"passed","time":{"start":1750075555537,"stop":1750075556816,"duration":1279},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Переход по ссылке \"Зарегистрируйтесь\"","uid":"9f4a0fc97efc2aa","parentUid":"0ff4831e87f1a09db416bfec0bff90b9","status":"passed","time":{"start":1750075545992,"stop":1750075547267,"duration":1275},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Несуществующий email","uid":"b60f6a0804ddbcf2","parentUid":"0ff4831e87f1a09db416bfec0bff90b9","status":"passed","time":{"start":1750075547613,"stop":1750075548776,"duration":1163},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"has title","uid":"779d683e0070d4ba","parentUid":"0ff4831e87f1a09db416bfec0bff90b9","status":"passed","time":{"start":1750075551224,"stop":1750075553043,"duration":1819},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Переход по ссылке \"Забыли пароль?\"","uid":"18a269908d755a77","parentUid":"0ff4831e87f1a09db416bfec0bff90b9","status":"passed","time":{"start":1750075562343,"stop":1750075563505,"duration":1162},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Несуществующий email","uid":"8e52e5503dbf32b3","parentUid":"0ff4831e87f1a09db416bfec0bff90b9","status":"passed","time":{"start":1750075565958,"stop":1750075567080,"duration":1122},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Регистр в email (User@test.com ≠ user@test.com)","uid":"fcba363460d3f6b5","parentUid":"0ff4831e87f1a09db416bfec0bff90b9","status":"passed","time":{"start":1750075556823,"stop":1750075558200,"duration":1377},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":["test.com","test.com)"]},{"name":"Пустое поле \"Повторите пароль\"","uid":"f67d4196db792c92","parentUid":"0ff4831e87f1a09db416bfec0bff90b9","status":"passed","time":{"start":1750075567085,"stop":1750075568056,"duration":971},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Пароли не совпадают","uid":"667929cd692b66c8","parentUid":"0ff4831e87f1a09db416bfec0bff90b9","status":"passed","time":{"start":1750075559492,"stop":1750075561099,"duration":1607},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Несуществующий email","uid":"e1e480cf17fbc35b","parentUid":"0ff4831e87f1a09db416bfec0bff90b9","status":"passed","time":{"start":1750075563691,"stop":1750075564756,"duration":1065},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Неверный код подтверждения","uid":"4dace988f27a41e3","parentUid":"0ff4831e87f1a09db416bfec0bff90b9","status":"passed","time":{"start":1750075549609,"stop":1750075550703,"duration":1094},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Пользователь должен успешно залогиниться с валидными данными","uid":"fc45203ff0ba881b","parentUid":"0ff4831e87f1a09db416bfec0bff90b9","status":"passed","time":{"start":1750075548782,"stop":1750075549601,"duration":819},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Пользователь должен успешно залогиниться с валидными данными","uid":"259eeae8292f9914","parentUid":"0ff4831e87f1a09db416bfec0bff90b9","status":"passed","time":{"start":1750075564763,"stop":1750075565949,"duration":1186},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]}],"uid":"0ff4831e87f1a09db416bfec0bff90b9"},{"name":"pid-58272-worker-0","children":[{"name":"has title","uid":"e41cf65ceae660f9","parentUid":"780ff66aa2925fc5dabcbac0428123b3","status":"passed","time":{"start":1750252808950,"stop":1750252811481,"duration":2531},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Неверный код подтверждения","uid":"ab9c735b312a9f51","parentUid":"780ff66aa2925fc5dabcbac0428123b3","status":"passed","time":{"start":1750252845302,"stop":1750252847662,"duration":2360},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Слишком длинное название организации","uid":"b43137cb9a67fe72","parentUid":"780ff66aa2925fc5dabcbac0428123b3","status":"passed","time":{"start":1750252850889,"stop":1750252854138,"duration":3249},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Некорректный email (формат)","uid":"e9f1ec48bd8143d5","parentUid":"780ff66aa2925fc5dabcbac0428123b3","status":"passed","time":{"start":1750252813761,"stop":1750252814579,"duration":818},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Переход по ссылке \"Забыли пароль?\"","uid":"26ac51230d86a7d3","parentUid":"780ff66aa2925fc5dabcbac0428123b3","status":"passed","time":{"start":1750252827699,"stop":1750252840712,"duration":13013},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Пользователь должен успешно залогиниться с валидными данными","uid":"c6765b274dbb81fb","parentUid":"780ff66aa2925fc5dabcbac0428123b3","status":"passed","time":{"start":1750252843456,"stop":1750252845296,"duration":1840},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Переход по ссылке \"Забыли пароль?\"","uid":"7904611e06419096","parentUid":"780ff66aa2925fc5dabcbac0428123b3","status":"passed","time":{"start":1750252855145,"stop":1750252857569,"duration":2424},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Некорректный email (формат)","uid":"e0fff7aa214911e5","parentUid":"780ff66aa2925fc5dabcbac0428123b3","status":"passed","time":{"start":1750252858841,"stop":1750252860230,"duration":1389},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Оба поля пустые","uid":"b69c438811cecbc2","parentUid":"780ff66aa2925fc5dabcbac0428123b3","status":"passed","time":{"start":1750252841468,"stop":1750252843449,"duration":1981},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Регистр в email (User@test.com ≠ user@test.com)","uid":"8ce9d5af31e95591","parentUid":"780ff66aa2925fc5dabcbac0428123b3","status":"passed","time":{"start":1750252857734,"stop":1750252858830,"duration":1096},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":["test.com","test.com)"]},{"name":"Некорректное имя и фамилия (слишком длинные)","uid":"21b702edbd984440","parentUid":"780ff66aa2925fc5dabcbac0428123b3","status":"passed","time":{"start":1750252861777,"stop":1750252863239,"duration":1462},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Слишком длинное название организации","uid":"3ea164013749327","parentUid":"780ff66aa2925fc5dabcbac0428123b3","status":"passed","time":{"start":1750252825715,"stop":1750252827130,"duration":1415},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректный email формат","uid":"2e4ecb28b0379e48","parentUid":"780ff66aa2925fc5dabcbac0428123b3","status":"passed","time":{"start":1750252824693,"stop":1750252825713,"duration":1020},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Пустое поле \"Повторите пароль\"","uid":"c9725be2aa9236a5","parentUid":"780ff66aa2925fc5dabcbac0428123b3","status":"passed","time":{"start":1750252860235,"stop":1750252861771,"duration":1536},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Пользователь успешно восстанавливает пароль","uid":"edd25bdbd6ddf0ea","parentUid":"780ff66aa2925fc5dabcbac0428123b3","status":"passed","time":{"start":1750252847675,"stop":1750252850886,"duration":3211},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Оба поля пустые","uid":"a27adfbe837c297f","parentUid":"780ff66aa2925fc5dabcbac0428123b3","status":"passed","time":{"start":1750252811790,"stop":1750252812688,"duration":898},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Успешная регистрация нового пользователя","uid":"9c064064dd63e9c4","parentUid":"780ff66aa2925fc5dabcbac0428123b3","status":"passed","time":{"start":1750252863247,"stop":1750252865838,"duration":2591},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Некорректный новый пароль","uid":"380d6f4e96430ef8","parentUid":"780ff66aa2925fc5dabcbac0428123b3","status":"passed","time":{"start":1750252814582,"stop":1750252824686,"duration":10104},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Регистр в email (User@test.com ≠ user@test.com)","uid":"5fcc72a8b93c73ca","parentUid":"780ff66aa2925fc5dabcbac0428123b3","status":"passed","time":{"start":1750252812691,"stop":1750252813752,"duration":1061},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":["test.com","test.com)"]}],"uid":"780ff66aa2925fc5dabcbac0428123b3"},{"name":"pid-59200-worker-1","children":[{"name":"Некорректный email формат","uid":"b60dd5ee0a1f44c8","parentUid":"ed63c796db485e7b37fcc0bc88ae8fa7","status":"passed","time":{"start":1750253491941,"stop":1750253497999,"duration":6058},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"get started link","uid":"32b20479b53a0eda","parentUid":"ed63c796db485e7b37fcc0bc88ae8fa7","status":"passed","time":{"start":1750253470950,"stop":1750253473760,"duration":2810},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Только email без пароля","uid":"284b1f02e0a74128","parentUid":"ed63c796db485e7b37fcc0bc88ae8fa7","status":"passed","time":{"start":1750253478767,"stop":1750253480532,"duration":1765},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректный email (формат)","uid":"83f95970b54a8b61","parentUid":"ed63c796db485e7b37fcc0bc88ae8fa7","status":"passed","time":{"start":1750253482653,"stop":1750253484382,"duration":1729},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Слишком длинное название организации","uid":"bb2df3efa4b7ab83","parentUid":"ed63c796db485e7b37fcc0bc88ae8fa7","status":"passed","time":{"start":1750253498002,"stop":1750253504069,"duration":6067},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Неверный пароль","uid":"9646ec918f04fcf4","parentUid":"ed63c796db485e7b37fcc0bc88ae8fa7","status":"passed","time":{"start":1750253474171,"stop":1750253478765,"duration":4594},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Пользователь должен успешно залогиниться с валидными данными","uid":"53aaefdb897b52b","parentUid":"ed63c796db485e7b37fcc0bc88ae8fa7","status":"passed","time":{"start":1750253480536,"stop":1750253482646,"duration":2110},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Пароли не совпадают","uid":"b422c235cec2874a","parentUid":"ed63c796db485e7b37fcc0bc88ae8fa7","status":"passed","time":{"start":1750253490151,"stop":1750253491935,"duration":1784},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Неверный код подтверждения","uid":"99addb7b948ef30d","parentUid":"ed63c796db485e7b37fcc0bc88ae8fa7","status":"passed","time":{"start":1750253484384,"stop":1750253490149,"duration":5765},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]}],"uid":"ed63c796db485e7b37fcc0bc88ae8fa7"},{"name":"pid-51997-worker-0","children":[{"name":"Успешная регистрация нового пользователя","uid":"6a9cc0b24dc2b31f","parentUid":"e4d0143344a1a422f2f21d938fec9caf","status":"failed","time":{"start":1750170283414,"stop":1750170315971,"duration":32557},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]}],"uid":"e4d0143344a1a422f2f21d938fec9caf"},{"name":"pid-59479-worker-2","children":[{"name":"Некорректный формат email","uid":"b8861ed3561357c1","parentUid":"bad6c13139b87b611311d90a6a2785ba","status":"passed","time":{"start":1750253543980,"stop":1750253554437,"duration":10457},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректное имя и фамилия (слишком длинные)","uid":"d449fe499514742d","parentUid":"bad6c13139b87b611311d90a6a2785ba","status":"passed","time":{"start":1750253569409,"stop":1750253577616,"duration":8207},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Пароли не совпадают","uid":"94f1b1ff67f3d4b2","parentUid":"bad6c13139b87b611311d90a6a2785ba","status":"passed","time":{"start":1750253601557,"stop":1750253604956,"duration":3399},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Некорректный email формат","uid":"25c5b161e06d93d9","parentUid":"bad6c13139b87b611311d90a6a2785ba","status":"passed","time":{"start":1750253604966,"stop":1750253611362,"duration":6396},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":true,"parameters":["firefox"],"tags":[]},{"name":"Переход по ссылке \"Забыли пароль?\"","uid":"de38ce213e0340ea","parentUid":"bad6c13139b87b611311d90a6a2785ba","status":"passed","time":{"start":1750253539582,"stop":1750253541712,"duration":2130},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Успешная регистрация нового пользователя","uid":"161e58a3f3c0816d","parentUid":"bad6c13139b87b611311d90a6a2785ba","status":"passed","time":{"start":1750253633097,"stop":1750253636457,"duration":3360},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Регистр в email (User@test.com ≠ user@test.com)","uid":"a64dad12f676d820","parentUid":"bad6c13139b87b611311d90a6a2785ba","status":"passed","time":{"start":1750253621861,"stop":1750253625596,"duration":3735},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":["test.com","test.com)"]},{"name":"Несуществующий email","uid":"85493f33f5b82a23","parentUid":"bad6c13139b87b611311d90a6a2785ba","status":"passed","time":{"start":1750253542024,"stop":1750253543977,"duration":1953},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Переход по ссылке \"Забыли пароль?\"","uid":"b804adb591f93bce","parentUid":"bad6c13139b87b611311d90a6a2785ba","status":"passed","time":{"start":1750253580476,"stop":1750253584678,"duration":4202},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Неверный код подтверждения","uid":"d202e4c572649d08","parentUid":"bad6c13139b87b611311d90a6a2785ba","status":"passed","time":{"start":1750253599029,"stop":1750253601554,"duration":2525},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Пользователь успешно восстанавливает пароль","uid":"3ffdae9c16b02a46","parentUid":"bad6c13139b87b611311d90a6a2785ba","status":"passed","time":{"start":1750253629450,"stop":1750253631204,"duration":1754},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Некорректный новый пароль","uid":"8ff2d3069826e842","parentUid":"bad6c13139b87b611311d90a6a2785ba","status":"passed","time":{"start":1750253627424,"stop":1750253629445,"duration":2021},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Пользователь должен успешно залогиниться с валидными данными","uid":"5d5913a5fa886b55","parentUid":"bad6c13139b87b611311d90a6a2785ba","status":"passed","time":{"start":1750253592136,"stop":1750253599022,"duration":6886},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Пользователь должен успешно залогиниться с валидными данными","uid":"579b024130132991","parentUid":"bad6c13139b87b611311d90a6a2785ba","status":"passed","time":{"start":1750253554444,"stop":1750253556270,"duration":1826},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректное имя и фамилия (слишком длинные)","uid":"8b6e30a20f47471a","parentUid":"bad6c13139b87b611311d90a6a2785ba","status":"passed","time":{"start":1750253631208,"stop":1750253633092,"duration":1884},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Пользователь успешно восстанавливает пароль","uid":"348561a89d288bda","parentUid":"bad6c13139b87b611311d90a6a2785ba","status":"passed","time":{"start":1750253562864,"stop":1750253569405,"duration":6541},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Успешная регистрация нового пользователя","uid":"1ffa1f32ab940059","parentUid":"bad6c13139b87b611311d90a6a2785ba","status":"passed","time":{"start":1750253577624,"stop":1750253579862,"duration":2238},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":10,"retriesStatusChange":true,"parameters":["chromium"],"tags":[]},{"name":"Несуществующий email","uid":"edf7ac0b504065f6","parentUid":"bad6c13139b87b611311d90a6a2785ba","status":"passed","time":{"start":1750253556276,"stop":1750253562859,"duration":6583},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Переключатель видимости пароля показывает и скрывает ввод","uid":"3d110a427012de38","parentUid":"bad6c13139b87b611311d90a6a2785ba","status":"passed","time":{"start":1750253625771,"stop":1750253627417,"duration":1646},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Слишком длинное название организации","uid":"d6ec22530a71c4d6","parentUid":"bad6c13139b87b611311d90a6a2785ba","status":"passed","time":{"start":1750253611365,"stop":1750253620996,"duration":9631},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Оба поля пустые","uid":"de659773fd4e5c6e","parentUid":"bad6c13139b87b611311d90a6a2785ba","status":"passed","time":{"start":1750253585670,"stop":1750253592130,"duration":6460},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]}],"uid":"bad6c13139b87b611311d90a6a2785ba"},{"name":"pid-47252-worker-1","children":[{"name":"get started link","uid":"95928bbad84a71aa","parentUid":"046b4309bceab16bed60bc633ad40bf0","status":"passed","time":{"start":1750084487579,"stop":1750084488883,"duration":1304},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Переключатель видимости пароля показывает и скрывает ввод","uid":"60e453bd4d61dc10","parentUid":"046b4309bceab16bed60bc633ad40bf0","status":"passed","time":{"start":1750084508352,"stop":1750084509225,"duration":873},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Некорректный формат email","uid":"f51af709c5965053","parentUid":"046b4309bceab16bed60bc633ad40bf0","status":"passed","time":{"start":1750084490746,"stop":1750084491640,"duration":894},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректный новый пароль","uid":"24c33abc8e58da3","parentUid":"046b4309bceab16bed60bc633ad40bf0","status":"passed","time":{"start":1750084501747,"stop":1750084503402,"duration":1655},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"has title","uid":"fcff193c697b73fc","parentUid":"046b4309bceab16bed60bc633ad40bf0","status":"passed","time":{"start":1750084494460,"stop":1750084496600,"duration":2140},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Некорректный email (формат)","uid":"a411f1fa33dcdf0b","parentUid":"046b4309bceab16bed60bc633ad40bf0","status":"passed","time":{"start":1750084491646,"stop":1750084492211,"duration":565},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректный новый пароль","uid":"6f161e97a71ff2d8","parentUid":"046b4309bceab16bed60bc633ad40bf0","status":"passed","time":{"start":1750084509235,"stop":1750084510626,"duration":1391},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Некорректный новый пароль","uid":"b9e74dca0abfc2a9","parentUid":"046b4309bceab16bed60bc633ad40bf0","status":"passed","time":{"start":1750084492220,"stop":1750084493759,"duration":1539},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Неверный пароль","uid":"cfb5224ecb2b1b54","parentUid":"046b4309bceab16bed60bc633ad40bf0","status":"passed","time":{"start":1750084506454,"stop":1750084507609,"duration":1155},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Оба поля пустые","uid":"87bb628f8970a7fd","parentUid":"046b4309bceab16bed60bc633ad40bf0","status":"passed","time":{"start":1750084498792,"stop":1750084500139,"duration":1347},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Только email без пароля","uid":"d40ee6760071bcef","parentUid":"046b4309bceab16bed60bc633ad40bf0","status":"passed","time":{"start":1750084507616,"stop":1750084508347,"duration":731},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"has title","uid":"c2aa97da7624b285","parentUid":"046b4309bceab16bed60bc633ad40bf0","status":"passed","time":{"start":1750084504438,"stop":1750084505941,"duration":1503},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Несуществующий email","uid":"7fb402004034812f","parentUid":"046b4309bceab16bed60bc633ad40bf0","status":"passed","time":{"start":1750084489363,"stop":1750084490743,"duration":1380},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Пользователь должен успешно залогиниться с валидными данными","uid":"b90ee0e788535b2a","parentUid":"046b4309bceab16bed60bc633ad40bf0","status":"passed","time":{"start":1750084500146,"stop":1750084501725,"duration":1579},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]}],"uid":"046b4309bceab16bed60bc633ad40bf0"},{"name":"pid-37773-worker-2","children":[{"name":"Некорректный новый пароль","uid":"e5906d6180b5659f","parentUid":"5f22af52fe385bccd4989eb0367c712b","status":"passed","time":{"start":1750075566120,"stop":1750075567344,"duration":1224},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Оба поля пустые","uid":"d6ca9443d65f6e59","parentUid":"5f22af52fe385bccd4989eb0367c712b","status":"passed","time":{"start":1750075547614,"stop":1750075548586,"duration":972},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Регистр в email (User@test.com ≠ user@test.com)","uid":"f082ae4d0fad0972","parentUid":"5f22af52fe385bccd4989eb0367c712b","status":"passed","time":{"start":1750075564720,"stop":1750075566114,"duration":1394},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":["test.com","test.com)"]},{"name":"has title","uid":"730c428a5e2bd40e","parentUid":"5f22af52fe385bccd4989eb0367c712b","status":"passed","time":{"start":1750075561393,"stop":1750075562947,"duration":1554},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Несуществующий email","uid":"37a1f106cd5e1697","parentUid":"5f22af52fe385bccd4989eb0367c712b","status":"passed","time":{"start":1750075549597,"stop":1750075550468,"duration":871},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Регистр в email (User@test.com ≠ user@test.com)","uid":"c0b32ee9d692f94f","parentUid":"5f22af52fe385bccd4989eb0367c712b","status":"passed","time":{"start":1750075548592,"stop":1750075549589,"duration":997},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":["test.com","test.com)"]},{"name":"Неверный пароль","uid":"ec532b7769a516a2","parentUid":"5f22af52fe385bccd4989eb0367c712b","status":"passed","time":{"start":1750075563427,"stop":1750075564713,"duration":1286},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Некорректный новый пароль","uid":"381e47ee9a2f99a7","parentUid":"5f22af52fe385bccd4989eb0367c712b","status":"passed","time":{"start":1750075558416,"stop":1750075560205,"duration":1789},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Пользователь должен успешно залогиниться с валидными данными","uid":"3e7912ae6732b293","parentUid":"5f22af52fe385bccd4989eb0367c712b","status":"passed","time":{"start":1750075556942,"stop":1750075558396,"duration":1454},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Пользователь успешно восстанавливает пароль","uid":"3b08aa482242592","parentUid":"5f22af52fe385bccd4989eb0367c712b","status":"passed","time":{"start":1750075567353,"stop":1750075568728,"duration":1375},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Пароли не совпадают","uid":"894992e7a7115936","parentUid":"5f22af52fe385bccd4989eb0367c712b","status":"passed","time":{"start":1750075550475,"stop":1750075551375,"duration":900},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Переход по ссылке \"Забыли пароль?\"","uid":"fdee20ced16e0968","parentUid":"5f22af52fe385bccd4989eb0367c712b","status":"passed","time":{"start":1750075545986,"stop":1750075547264,"duration":1278},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Переход по ссылке \"Забыли пароль?\"","uid":"1a4440aa0c72497a","parentUid":"5f22af52fe385bccd4989eb0367c712b","status":"passed","time":{"start":1750075551914,"stop":1750075554459,"duration":2545},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Несуществующий email","uid":"b713258d480550af","parentUid":"5f22af52fe385bccd4989eb0367c712b","status":"passed","time":{"start":1750075555286,"stop":1750075556929,"duration":1643},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]}],"uid":"5f22af52fe385bccd4989eb0367c712b"},{"name":"pid-57743-worker-0","children":[{"name":"Слишком длинное название организации","uid":"f4db4683dddde61e","parentUid":"d817379508bc0e682a90c7f8dc23662f","status":"passed","time":{"start":1750252690590,"stop":1750252693284,"duration":2694},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]}],"uid":"d817379508bc0e682a90c7f8dc23662f"},{"name":"pid-57209-worker-0","children":[{"name":"Некорректный email формат","uid":"c49a8b85caadc9a6","parentUid":"ef6f182b5632c14d245c1a526421863e","status":"passed","time":{"start":1750252484903,"stop":1750252508228,"duration":23325},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректное имя и фамилия (слишком длинные)","uid":"18bfd216e0cfac69","parentUid":"ef6f182b5632c14d245c1a526421863e","status":"passed","time":{"start":1750252463071,"stop":1750252484871,"duration":21800},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Слишком длинное название организации","uid":"48fb323eb8a5b80c","parentUid":"ef6f182b5632c14d245c1a526421863e","status":"failed","time":{"start":1750252518180,"stop":1750252545048,"duration":26868},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Слишком длинная должность","uid":"fb845916a86b3746","parentUid":"ef6f182b5632c14d245c1a526421863e","status":"passed","time":{"start":1750252508247,"stop":1750252518166,"duration":9919},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Отправка пустой формы","uid":"432ee7458c9fefd9","parentUid":"ef6f182b5632c14d245c1a526421863e","status":"passed","time":{"start":1750252435945,"stop":1750252461297,"duration":25352},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]}],"uid":"ef6f182b5632c14d245c1a526421863e"},{"name":"pid-59200-worker-0","children":[{"name":"has title","uid":"132f4ab6d9074007","parentUid":"01920e3435031cf9980ef65c3483bcb1","status":"passed","time":{"start":1750253470947,"stop":1750253485298,"duration":14351},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Отправка пустой формы","uid":"c2cda5efc44ad114","parentUid":"01920e3435031cf9980ef65c3483bcb1","status":"passed","time":{"start":1750253491472,"stop":1750253504132,"duration":12660},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректный новый пароль","uid":"fc4729bcf77444f4","parentUid":"01920e3435031cf9980ef65c3483bcb1","status":"passed","time":{"start":1750253485706,"stop":1750253491464,"duration":5758},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]}],"uid":"01920e3435031cf9980ef65c3483bcb1"},{"name":"pid-47252-worker-3","children":[{"name":"Пароли не совпадают","uid":"8d76c4254e12856f","parentUid":"5d7af5ad6a076945ac94a0cc8b0075d9","status":"passed","time":{"start":1750084509765,"stop":1750084510859,"duration":1094},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Несуществующий email","uid":"5731ca0d5b2c3cb0","parentUid":"5d7af5ad6a076945ac94a0cc8b0075d9","status":"passed","time":{"start":1750084508872,"stop":1750084509760,"duration":888},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Несуществующий email","uid":"c765f18eca292609","parentUid":"5d7af5ad6a076945ac94a0cc8b0075d9","status":"passed","time":{"start":1750084492074,"stop":1750084492970,"duration":896},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Пароли не совпадают","uid":"4cc1e10a9621a104","parentUid":"5d7af5ad6a076945ac94a0cc8b0075d9","status":"passed","time":{"start":1750084492974,"stop":1750084493874,"duration":900},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Оба поля пустые","uid":"9d2d949772c4aa8c","parentUid":"5d7af5ad6a076945ac94a0cc8b0075d9","status":"passed","time":{"start":1750084506701,"stop":1750084507952,"duration":1251},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Пароли не совпадают","uid":"a4548e1be474a069","parentUid":"5d7af5ad6a076945ac94a0cc8b0075d9","status":"passed","time":{"start":1750084502694,"stop":1750084504377,"duration":1683},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Переход по ссылке \"Зарегистрируйтесь\"","uid":"f2cbbc5b808899ed","parentUid":"5d7af5ad6a076945ac94a0cc8b0075d9","status":"passed","time":{"start":1750084487577,"stop":1750084488773,"duration":1196},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Несуществующий email","uid":"1809ab63c57693cf","parentUid":"5d7af5ad6a076945ac94a0cc8b0075d9","status":"passed","time":{"start":1750084501499,"stop":1750084502685,"duration":1186},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Неверный пароль","uid":"a636711aeaf16eff","parentUid":"5d7af5ad6a076945ac94a0cc8b0075d9","status":"passed","time":{"start":1750084489259,"stop":1750084490492,"duration":1233},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Пользователь должен успешно залогиниться с валидными данными","uid":"8a3dcd384fcfe015","parentUid":"5d7af5ad6a076945ac94a0cc8b0075d9","status":"passed","time":{"start":1750084491243,"stop":1750084492069,"duration":826},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Оба поля пустые","uid":"e7be0225bfc5fe60","parentUid":"5d7af5ad6a076945ac94a0cc8b0075d9","status":"passed","time":{"start":1750084490497,"stop":1750084491239,"duration":742},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Регистр в email (User@test.com ≠ user@test.com)","uid":"3775ae1136246cc1","parentUid":"5d7af5ad6a076945ac94a0cc8b0075d9","status":"passed","time":{"start":1750084507958,"stop":1750084508862,"duration":904},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":["test.com","test.com)"]},{"name":"Переход по ссылке \"Забыли пароль?\"","uid":"56122822cca60081","parentUid":"5d7af5ad6a076945ac94a0cc8b0075d9","status":"passed","time":{"start":1750084494465,"stop":1750084496561,"duration":2096},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Несуществующий email","uid":"6694e86bba58036e","parentUid":"5d7af5ad6a076945ac94a0cc8b0075d9","status":"passed","time":{"start":1750084498297,"stop":1750084500105,"duration":1808},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Переход по ссылке \"Забыли пароль?\"","uid":"3e21dacf1ae2fb3a","parentUid":"5d7af5ad6a076945ac94a0cc8b0075d9","status":"passed","time":{"start":1750084505493,"stop":1750084506516,"duration":1023},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Регистр в email (User@test.com ≠ user@test.com)","uid":"8637dfb0e9d85172","parentUid":"5d7af5ad6a076945ac94a0cc8b0075d9","status":"passed","time":{"start":1750084500111,"stop":1750084501485,"duration":1374},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":["test.com","test.com)"]}],"uid":"5d7af5ad6a076945ac94a0cc8b0075d9"},{"name":"pid-59200-worker-2","children":[{"name":"Пустое поле \"Повторите пароль\"","uid":"7d688343ed4965a8","parentUid":"cff809654e42d1744bcafa97c96c13c3","status":"passed","time":{"start":1750253489856,"stop":1750253491644,"duration":1788},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Несуществующий email","uid":"817c17381e536405","parentUid":"cff809654e42d1744bcafa97c96c13c3","status":"passed","time":{"start":1750253482991,"stop":1750253489850,"duration":6859},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Успешная регистрация нового пользователя","uid":"fdb2b176004a83fb","parentUid":"cff809654e42d1744bcafa97c96c13c3","status":"passed","time":{"start":1750253502884,"stop":1750253505132,"duration":2248},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Несуществующий email","uid":"fa4893ecd7ef05c0","parentUid":"cff809654e42d1744bcafa97c96c13c3","status":"passed","time":{"start":1750253478049,"stop":1750253479796,"duration":1747},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Переход по ссылке \"Забыли пароль?\"","uid":"f4d7a2aa751ac498","parentUid":"cff809654e42d1744bcafa97c96c13c3","status":"passed","time":{"start":1750253470949,"stop":1750253477644,"duration":6695},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректное имя и фамилия (слишком длинные)","uid":"c5782f52a87f0420","parentUid":"cff809654e42d1744bcafa97c96c13c3","status":"passed","time":{"start":1750253491650,"stop":1750253502879,"duration":11229},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Некорректный формат email","uid":"6abfa6eb137629f5","parentUid":"cff809654e42d1744bcafa97c96c13c3","status":"passed","time":{"start":1750253479799,"stop":1750253482986,"duration":3187},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]}],"uid":"cff809654e42d1744bcafa97c96c13c3"},{"name":"pid-59200-worker-3","children":[{"name":"Регистр в email (User@test.com ≠ user@test.com)","uid":"217f9cb526214946","parentUid":"3bbbfafbd4ed527318ead33f3337c47a","status":"passed","time":{"start":1750253480153,"stop":1750253482552,"duration":2399},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":["test.com","test.com)"]},{"name":"Переключатель видимости пароля показывает и скрывает ввод","uid":"4c13cbb6f8f85fc3","parentUid":"3bbbfafbd4ed527318ead33f3337c47a","status":"passed","time":{"start":1750253482557,"stop":1750253490549,"duration":7992},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Слишком длинная должность","uid":"ba9633d5087da82b","parentUid":"3bbbfafbd4ed527318ead33f3337c47a","status":"passed","time":{"start":1750253497296,"stop":1750253503798,"duration":6502},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Переход по ссылке \"Зарегистрируйтесь\"","uid":"5b89479a48d172ab","parentUid":"3bbbfafbd4ed527318ead33f3337c47a","status":"passed","time":{"start":1750253470949,"stop":1750253477898,"duration":6949},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Оба поля пустые","uid":"b5a60ffd97b0ddc5","parentUid":"3bbbfafbd4ed527318ead33f3337c47a","status":"passed","time":{"start":1750253478299,"stop":1750253480150,"duration":1851},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]},{"name":"Пользователь успешно восстанавливает пароль","uid":"d47772f91ef32fc","parentUid":"3bbbfafbd4ed527318ead33f3337c47a","status":"passed","time":{"start":1750253490553,"stop":1750253497291,"duration":6738},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]}],"uid":"3bbbfafbd4ed527318ead33f3337c47a"},{"name":"pid-57743-worker-1","children":[{"name":"Слишком длинное название организации","uid":"2412675bc79a8b74","parentUid":"5232ef6818b1320cf796637a636b4e6a","status":"passed","time":{"start":1750252690588,"stop":1750252695791,"duration":5203},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]}],"uid":"5232ef6818b1320cf796637a636b4e6a"},{"name":"pid-57743-worker-2","children":[{"name":"Слишком длинное название организации","uid":"5ddff479ee91e9a6","parentUid":"954f86c04414b438f4f931df31f6da1f","status":"passed","time":{"start":1750252690591,"stop":1750252693896,"duration":3305},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]}],"uid":"954f86c04414b438f4f931df31f6da1f"},{"name":"pid-53790-worker-0","children":[{"name":"Успешная регистрация нового пользователя","uid":"3b4a3c3226c1827d","parentUid":"95a46dcd25da82b46cfa9d47a58e66cd","status":"passed","time":{"start":1750176689923,"stop":1750176707314,"duration":17391},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["firefox"],"tags":[]},{"name":"Успешная регистрация нового пользователя","uid":"81cf68134abace1b","parentUid":"95a46dcd25da82b46cfa9d47a58e66cd","status":"passed","time":{"start":1750176709746,"stop":1750176716615,"duration":6869},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["webkit"],"tags":[]},{"name":"Успешная регистрация нового пользователя","uid":"62e5d112acd892be","parentUid":"95a46dcd25da82b46cfa9d47a58e66cd","status":"passed","time":{"start":1750176656779,"stop":1750176688826,"duration":32047},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]}],"uid":"95a46dcd25da82b46cfa9d47a58e66cd"},{"name":"pid-52528-worker-0","children":[{"name":"Успешная регистрация нового пользователя","uid":"b2e822e88eccaefd","parentUid":"8f4c269aaa9ff476c3b345eed9f28329","status":"failed","time":{"start":1750175803854,"stop":1750175838015,"duration":34161},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]}],"uid":"8f4c269aaa9ff476c3b345eed9f28329"},{"name":"pid-52998-worker-0","children":[{"name":"Успешная регистрация нового пользователя","uid":"4e81c8878ef899b8","parentUid":"779761c47e3499485de5ec1edaaab030","status":"failed","time":{"start":1750175955750,"stop":1750176008146,"duration":52396},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]}],"uid":"779761c47e3499485de5ec1edaaab030"},{"name":"pid-53318-worker-0","children":[{"name":"Успешная регистрация нового пользователя","uid":"913af2739bd12ded","parentUid":"036add2afca9db82c8ee4f6fb5170058","status":"failed","time":{"start":1750176464557,"stop":1750176538333,"duration":73776},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]}],"uid":"036add2afca9db82c8ee4f6fb5170058"},{"name":"pid-52773-worker-0","children":[{"name":"Успешная регистрация нового пользователя","uid":"b8c734422c01553e","parentUid":"a487d1218dc282f104737aca09e62efc","status":"failed","time":{"start":1750175892514,"stop":1750175942070,"duration":49556},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]}],"uid":"a487d1218dc282f104737aca09e62efc"},{"name":"pid-51689-worker-0","children":[{"name":"Успешная регистрация нового пользователя","uid":"e30d72eec270a5f2","parentUid":"b6d6e525e8090ff5c32bb485c84db610","status":"failed","time":{"start":1750169801429,"stop":1750169895816,"duration":94387},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":["chromium"],"tags":[]}],"uid":"b6d6e525e8090ff5c32bb485c84db610"}],"uid":"d340b2dfe687b8ded294d7fb172d51f2"}]} \ No newline at end of file diff --git a/allure-report/export/influxDbData.txt b/allure-report/export/influxDbData.txt index 470cdb5..95cbb05 100644 --- a/allure-report/export/influxDbData.txt +++ b/allure-report/export/influxDbData.txt @@ -1,13 +1,14 @@ -launch_status failed=0 1750084527000000000 -launch_status broken=0 1750084527000000000 -launch_status passed=57 1750084527000000000 -launch_status skipped=0 1750084527000000000 -launch_status unknown=0 1750084527000000000 -launch_time duration=23754 1750084527000000000 -launch_time min_duration=565 1750084527000000000 -launch_time max_duration=3048 1750084527000000000 -launch_time sum_duration=75504 1750084527000000000 -launch_time start=1750084487577 1750084527000000000 -launch_time stop=1750084511331 1750084527000000000 -launch_retries retries=57 1750084527000000000 -launch_retries run=57 1750084527000000000 +launch_status failed=0 1750253651000000000 +launch_status broken=1 1750253651000000000 +launch_status passed=74 1750253651000000000 +launch_status skipped=0 1750253651000000000 +launch_status unknown=0 1750253651000000000 +launch_time duration=96878 1750253651000000000 +launch_time min_duration=1557 1750253651000000000 +launch_time max_duration=39995 1750253651000000000 +launch_time sum_duration=366961 1750253651000000000 +launch_time start=1750253539579 1750253651000000000 +launch_time stop=1750253636457 1750253651000000000 +launch_problems test_defects=1 1750253651000000000 +launch_retries retries=240 1750253651000000000 +launch_retries run=75 1750253651000000000 diff --git a/allure-report/export/prometheusData.txt b/allure-report/export/prometheusData.txt index f1e2fe8..88aeb9c 100644 --- a/allure-report/export/prometheusData.txt +++ b/allure-report/export/prometheusData.txt @@ -1,13 +1,14 @@ launch_status_failed 0 -launch_status_broken 0 -launch_status_passed 57 +launch_status_broken 1 +launch_status_passed 74 launch_status_skipped 0 launch_status_unknown 0 -launch_time_duration 23754 -launch_time_min_duration 565 -launch_time_max_duration 3048 -launch_time_sum_duration 75504 -launch_time_start 1750084487577 -launch_time_stop 1750084511331 -launch_retries_retries 57 -launch_retries_run 57 +launch_time_duration 96878 +launch_time_min_duration 1557 +launch_time_max_duration 39995 +launch_time_sum_duration 366961 +launch_time_start 1750253539579 +launch_time_stop 1750253636457 +launch_problems_test_defects 1 +launch_retries_retries 240 +launch_retries_run 75 diff --git a/allure-report/history/categories-trend.json b/allure-report/history/categories-trend.json index 2f871d5..31366fe 100644 --- a/allure-report/history/categories-trend.json +++ b/allure-report/history/categories-trend.json @@ -1 +1 @@ -[{"data":{}}] \ No newline at end of file +[{"data":{"Test defects":1}}] \ No newline at end of file diff --git a/allure-report/history/duration-trend.json b/allure-report/history/duration-trend.json index 3202730..d26f328 100644 --- a/allure-report/history/duration-trend.json +++ b/allure-report/history/duration-trend.json @@ -1 +1 @@ -[{"data":{"duration":23754}}] \ No newline at end of file +[{"data":{"duration":96878}}] \ No newline at end of file diff --git a/allure-report/history/history-trend.json b/allure-report/history/history-trend.json index 9e6f070..fc06238 100644 --- a/allure-report/history/history-trend.json +++ b/allure-report/history/history-trend.json @@ -1 +1 @@ -[{"data":{"failed":0,"broken":0,"skipped":0,"passed":57,"unknown":0,"total":57}}] \ No newline at end of file +[{"data":{"failed":0,"broken":1,"skipped":0,"passed":74,"unknown":0,"total":75}}] \ No newline at end of file diff --git a/allure-report/history/history.json b/allure-report/history/history.json index 4596441..3e8078f 100644 --- a/allure-report/history/history.json +++ b/allure-report/history/history.json @@ -1 +1 @@ -{"31f03826b2a8da254be42b2d49bc35f3:5bd835b0d6b1d4ada3b9f0db936e82c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"e3d2684b480ff47b","status":"passed","time":{"start":1750084492172,"stop":1750084493410,"duration":1238}}]},"69b9236bee03ff0034bfbd5addc25f93:84e28e814b821ed013329cc8dbc467e0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"ce94b9aa72086b4e","status":"passed","time":{"start":1750084506686,"stop":1750084507723,"duration":1037}}]},"e6d2fb91f0b85b95c3962ffc860dddd7:5bd835b0d6b1d4ada3b9f0db936e82c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"96736297720c2c0d","status":"passed","time":{"start":1750084492375,"stop":1750084493870,"duration":1495}}]},"58990385f74407307e4ace7ad02abf05:b444eb0fbe6390c71e68b51dd25701fc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"f0ec6d6d628046ac","status":"passed","time":{"start":1750084498792,"stop":1750084500139,"duration":1347}}]},"cc4ad4b40ef726af11b2bd4f5523dbe0:84e28e814b821ed013329cc8dbc467e0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"c0406bead53d77ca","status":"passed","time":{"start":1750084507958,"stop":1750084508862,"duration":904}}]},"e5764a911de0175f8f7118313ae14544:b444eb0fbe6390c71e68b51dd25701fc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"749fb76346883a7d","status":"passed","time":{"start":1750084499796,"stop":1750084501311,"duration":1515}}]},"8c67bb2f4fb916157fb6191bbb5e4267:b444eb0fbe6390c71e68b51dd25701fc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"589b172d059c0837","status":"passed","time":{"start":1750084499301,"stop":1750084500455,"duration":1154}}]},"500ad758ee2db2bb60aa832fb0abbb94:b444eb0fbe6390c71e68b51dd25701fc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"88a8af1bf7652c0e","status":"passed","time":{"start":1750084497996,"stop":1750084499294,"duration":1298}}]},"a7eaebb1e41fbbf13bf61195120b3ce9:b444eb0fbe6390c71e68b51dd25701fc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"159330e44b573ebb","status":"passed","time":{"start":1750084502694,"stop":1750084504377,"duration":1683}}]},"a7eaebb1e41fbbf13bf61195120b3ce9:5bd835b0d6b1d4ada3b9f0db936e82c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"b20bbc8741046798","status":"passed","time":{"start":1750084492974,"stop":1750084493874,"duration":900}}]},"91fcabcb669557e4ddb559c077420e45:b444eb0fbe6390c71e68b51dd25701fc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"a53cc3de606dc5ae","status":"passed","time":{"start":1750084494465,"stop":1750084496561,"duration":2096}}]},"d776d5fb9c918a79827aea417bdc449a:84e28e814b821ed013329cc8dbc467e0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"e8ebfdb5511bffc3","status":"passed","time":{"start":1750084508679,"stop":1750084509441,"duration":762}}]},"c118be77fa2af6f0e0052ec7489ba66c:b444eb0fbe6390c71e68b51dd25701fc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"7b807a335cae4963","status":"passed","time":{"start":1750084501499,"stop":1750084502685,"duration":1186}}]},"d776d5fb9c918a79827aea417bdc449a:5bd835b0d6b1d4ada3b9f0db936e82c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"701a94631e81e6af","status":"passed","time":{"start":1750084491646,"stop":1750084492211,"duration":565}}]},"18246cf63350a71f5b46012e257bafcf:b444eb0fbe6390c71e68b51dd25701fc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"8af42ae3367ca0d6","status":"passed","time":{"start":1750084501747,"stop":1750084503402,"duration":1655}}]},"b1726395bd827a3a21fe3c829a098be4:5bd835b0d6b1d4ada3b9f0db936e82c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"c82bf9b727e4250d","status":"passed","time":{"start":1750084491357,"stop":1750084492371,"duration":1014}}]},"e5764a911de0175f8f7118313ae14544:5bd835b0d6b1d4ada3b9f0db936e82c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"1aae5dc9a4d21981","status":"passed","time":{"start":1750084490746,"stop":1750084491640,"duration":894}}]},"31f03826b2a8da254be42b2d49bc35f3:b444eb0fbe6390c71e68b51dd25701fc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"1bf14a52b790d91","status":"passed","time":{"start":1750084501594,"stop":1750084503368,"duration":1774}}]},"e5764a911de0175f8f7118313ae14544:84e28e814b821ed013329cc8dbc467e0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"4da4945bee2a6177","status":"passed","time":{"start":1750084507730,"stop":1750084508673,"duration":943}}]},"cc4ad4b40ef726af11b2bd4f5523dbe0:5bd835b0d6b1d4ada3b9f0db936e82c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"287ea007721245b5","status":"passed","time":{"start":1750084491115,"stop":1750084492165,"duration":1050}}]},"31f03826b2a8da254be42b2d49bc35f3:84e28e814b821ed013329cc8dbc467e0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"703a2301ffdc2da7","status":"passed","time":{"start":1750084509104,"stop":1750084510143,"duration":1039}}]},"1779c735aef9d62c071557455e74e57f:5bd835b0d6b1d4ada3b9f0db936e82c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"9c1576c7213cf7a9","status":"passed","time":{"start":1750084493416,"stop":1750084494507,"duration":1091}}]},"58990385f74407307e4ace7ad02abf05:84e28e814b821ed013329cc8dbc467e0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"a2b4235c46265be0","status":"passed","time":{"start":1750084506701,"stop":1750084507952,"duration":1251}}]},"8c67bb2f4fb916157fb6191bbb5e4267:84e28e814b821ed013329cc8dbc467e0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"9059b807844ecd29","status":"passed","time":{"start":1750084507616,"stop":1750084508347,"duration":731}}]},"3a2a809b453af4fd564578d1a27f3e45:5bd835b0d6b1d4ada3b9f0db936e82c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"731f29d77f45de06","status":"passed","time":{"start":1750084487580,"stop":1750084490628,"duration":3048}}]},"c118be77fa2af6f0e0052ec7489ba66c:5bd835b0d6b1d4ada3b9f0db936e82c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"a1fd8ee0914c6a57","status":"passed","time":{"start":1750084492074,"stop":1750084492970,"duration":896}}]},"e6d2fb91f0b85b95c3962ffc860dddd7:b444eb0fbe6390c71e68b51dd25701fc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"2e06dcefaf1e4c31","status":"passed","time":{"start":1750084502343,"stop":1750084503756,"duration":1413}}]},"1779c735aef9d62c071557455e74e57f:84e28e814b821ed013329cc8dbc467e0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"8d0ccd1c875a97cc","status":"passed","time":{"start":1750084510151,"stop":1750084511331,"duration":1180}}]},"b1726395bd827a3a21fe3c829a098be4:b444eb0fbe6390c71e68b51dd25701fc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"3bba1028b851bbbc","status":"passed","time":{"start":1750084500466,"stop":1750084501581,"duration":1115}}]},"91fcabcb669557e4ddb559c077420e45:5bd835b0d6b1d4ada3b9f0db936e82c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"accf5a2fef71e751","status":"passed","time":{"start":1750084487578,"stop":1750084490119,"duration":2541}}]},"91fcabcb669557e4ddb559c077420e45:84e28e814b821ed013329cc8dbc467e0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"31dc1d9640018cfc","status":"passed","time":{"start":1750084505493,"stop":1750084506516,"duration":1023}}]},"1779c735aef9d62c071557455e74e57f:b444eb0fbe6390c71e68b51dd25701fc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"922c07477f21c047","status":"passed","time":{"start":1750084503378,"stop":1750084505830,"duration":2452}}]},"d776d5fb9c918a79827aea417bdc449a:b444eb0fbe6390c71e68b51dd25701fc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"c7a1902ba1108ba2","status":"passed","time":{"start":1750084501326,"stop":1750084502338,"duration":1012}}]},"cc4ad4b40ef726af11b2bd4f5523dbe0:b444eb0fbe6390c71e68b51dd25701fc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"98e3f9bd5b0da70e","status":"passed","time":{"start":1750084500111,"stop":1750084501485,"duration":1374}}]},"69b9236bee03ff0034bfbd5addc25f93:5bd835b0d6b1d4ada3b9f0db936e82c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"f5ffdd03c44055b1","status":"passed","time":{"start":1750084489363,"stop":1750084490743,"duration":1380}}]},"e6d2fb91f0b85b95c3962ffc860dddd7:84e28e814b821ed013329cc8dbc467e0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"1f2ff10db5665418","status":"passed","time":{"start":1750084509447,"stop":1750084510516,"duration":1069}}]},"8c67bb2f4fb916157fb6191bbb5e4267:5bd835b0d6b1d4ada3b9f0db936e82c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"219f17571c2d2715","status":"passed","time":{"start":1750084490528,"stop":1750084491353,"duration":825}}]},"58990385f74407307e4ace7ad02abf05:5bd835b0d6b1d4ada3b9f0db936e82c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"f7a702fb49f5f201","status":"passed","time":{"start":1750084490497,"stop":1750084491239,"duration":742}}]},"37e4aa066a5f6eac2e4d3b98a2ed98a7:5bd835b0d6b1d4ada3b9f0db936e82c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"b714c3ef6b1955c5","status":"passed","time":{"start":1750084487579,"stop":1750084488883,"duration":1304}}]},"92a5ca35180a4cbe902714b987a6bf44:5bd835b0d6b1d4ada3b9f0db936e82c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"5c52ce3f42b81329","status":"passed","time":{"start":1750084491243,"stop":1750084492069,"duration":826}}]},"62db9603623bba26b6305edb541ef4fa:5bd835b0d6b1d4ada3b9f0db936e82c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"31bb4ab4326f6487","status":"passed","time":{"start":1750084487577,"stop":1750084488773,"duration":1196}}]},"b1726395bd827a3a21fe3c829a098be4:84e28e814b821ed013329cc8dbc467e0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"2f8af4d67d869f1","status":"passed","time":{"start":1750084508352,"stop":1750084509225,"duration":873}}]},"69b9236bee03ff0034bfbd5addc25f93:b444eb0fbe6390c71e68b51dd25701fc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"f6b2716194c4ce74","status":"passed","time":{"start":1750084498297,"stop":1750084500105,"duration":1808}}]},"3a2a809b453af4fd564578d1a27f3e45:84e28e814b821ed013329cc8dbc467e0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"13a3c47523dc168e","status":"passed","time":{"start":1750084504438,"stop":1750084505941,"duration":1503}}]},"c118be77fa2af6f0e0052ec7489ba66c:84e28e814b821ed013329cc8dbc467e0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"127e2567cd7d94f3","status":"passed","time":{"start":1750084508872,"stop":1750084509760,"duration":888}}]},"3a2a809b453af4fd564578d1a27f3e45:b444eb0fbe6390c71e68b51dd25701fc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"f7bfbf67a45ab3ec","status":"passed","time":{"start":1750084494460,"stop":1750084496600,"duration":2140}}]},"37e4aa066a5f6eac2e4d3b98a2ed98a7:84e28e814b821ed013329cc8dbc467e0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"995bb2612eda65c","status":"passed","time":{"start":1750084504688,"stop":1750084506422,"duration":1734}}]},"500ad758ee2db2bb60aa832fb0abbb94:5bd835b0d6b1d4ada3b9f0db936e82c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"1f34f20dd4a0d9fd","status":"passed","time":{"start":1750084489259,"stop":1750084490492,"duration":1233}}]},"18246cf63350a71f5b46012e257bafcf:84e28e814b821ed013329cc8dbc467e0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"a9ee13342854924d","status":"passed","time":{"start":1750084509235,"stop":1750084510626,"duration":1391}}]},"92a5ca35180a4cbe902714b987a6bf44:b444eb0fbe6390c71e68b51dd25701fc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"909368716fad6c28","status":"passed","time":{"start":1750084500146,"stop":1750084501725,"duration":1579}}]},"500ad758ee2db2bb60aa832fb0abbb94:84e28e814b821ed013329cc8dbc467e0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"d30e1a8a947541fc","status":"passed","time":{"start":1750084506454,"stop":1750084507609,"duration":1155}}]},"92a5ca35180a4cbe902714b987a6bf44:84e28e814b821ed013329cc8dbc467e0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"9e16f68655df37d3","status":"passed","time":{"start":1750084508128,"stop":1750084509091,"duration":963}}]},"62db9603623bba26b6305edb541ef4fa:b444eb0fbe6390c71e68b51dd25701fc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"34179ea7ef46fc56","status":"passed","time":{"start":1750084494915,"stop":1750084497374,"duration":2459}}]},"a7eaebb1e41fbbf13bf61195120b3ce9:84e28e814b821ed013329cc8dbc467e0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"9ed8b38ec7c4a34b","status":"passed","time":{"start":1750084509765,"stop":1750084510859,"duration":1094}}]},"18246cf63350a71f5b46012e257bafcf:5bd835b0d6b1d4ada3b9f0db936e82c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"e07c24690f801b74","status":"passed","time":{"start":1750084492220,"stop":1750084493759,"duration":1539}}]},"62db9603623bba26b6305edb541ef4fa:84e28e814b821ed013329cc8dbc467e0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"c9901a9937a7b7a5","status":"passed","time":{"start":1750084506996,"stop":1750084507961,"duration":965}}]},"37e4aa066a5f6eac2e4d3b98a2ed98a7:b444eb0fbe6390c71e68b51dd25701fc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"e94724f7c9383d0e","status":"passed","time":{"start":1750084494460,"stop":1750084496622,"duration":2162}}]}} \ No newline at end of file +{"31f03826b2a8da254be42b2d49bc35f3:5bd835b0d6b1d4ada3b9f0db936e82c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"c1ab22b3f9166450","status":"passed","time":{"start":1750253556666,"stop":1750253562794,"duration":6128}}]},"69b9236bee03ff0034bfbd5addc25f93:84e28e814b821ed013329cc8dbc467e0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"716b6c73ce6c62ba","status":"passed","time":{"start":1750253618487,"stop":1750253620044,"duration":1557}}]},"58990385f74407307e4ace7ad02abf05:b444eb0fbe6390c71e68b51dd25701fc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"de659773fd4e5c6e","status":"passed","time":{"start":1750253585670,"stop":1750253592130,"duration":6460}}]},"e6d2fb91f0b85b95c3962ffc860dddd7:5bd835b0d6b1d4ada3b9f0db936e82c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"1c2b927f6a4c2926","status":"passed","time":{"start":1750253562565,"stop":1750253564290,"duration":1725}}]},"cc4ad4b40ef726af11b2bd4f5523dbe0:84e28e814b821ed013329cc8dbc467e0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"a64dad12f676d820","status":"passed","time":{"start":1750253621861,"stop":1750253625596,"duration":3735}}]},"e5764a911de0175f8f7118313ae14544:b444eb0fbe6390c71e68b51dd25701fc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"8554552a459385ed","status":"passed","time":{"start":1750253591599,"stop":1750253598769,"duration":7170}}]},"8c67bb2f4fb916157fb6191bbb5e4267:b444eb0fbe6390c71e68b51dd25701fc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"24d0761a6935af7f","status":"passed","time":{"start":1750253591157,"stop":1750253597964,"duration":6807}}]},"500ad758ee2db2bb60aa832fb0abbb94:b444eb0fbe6390c71e68b51dd25701fc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"3f0e10c74637e3d3","status":"passed","time":{"start":1750253583944,"stop":1750253591152,"duration":7208}}]},"a7eaebb1e41fbbf13bf61195120b3ce9:b444eb0fbe6390c71e68b51dd25701fc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"94f1b1ff67f3d4b2","status":"passed","time":{"start":1750253601557,"stop":1750253604956,"duration":3399}}]},"a7eaebb1e41fbbf13bf61195120b3ce9:5bd835b0d6b1d4ada3b9f0db936e82c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"4eebb1230811a3dd","status":"passed","time":{"start":1750253562798,"stop":1750253569425,"duration":6627}}]},"91fcabcb669557e4ddb559c077420e45:b444eb0fbe6390c71e68b51dd25701fc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"b804adb591f93bce","status":"passed","time":{"start":1750253580476,"stop":1750253584678,"duration":4202}}]},"7134a02a04b606099de5c920fb62990a:84e28e814b821ed013329cc8dbc467e0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"8b6e30a20f47471a","status":"passed","time":{"start":1750253631208,"stop":1750253633092,"duration":1884}}]},"2214c0f917091cfcda832cd03e01bb76:84e28e814b821ed013329cc8dbc467e0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"bfaa389e6b880a54","status":"passed","time":{"start":1750253631638,"stop":1750253633505,"duration":1867}}]},"26486147b8778ca2341563049d2a3728:b444eb0fbe6390c71e68b51dd25701fc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"d6ec22530a71c4d6","status":"passed","time":{"start":1750253611365,"stop":1750253620996,"duration":9631}}]},"d776d5fb9c918a79827aea417bdc449a:84e28e814b821ed013329cc8dbc467e0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"f858e1d3e4667ccb","status":"passed","time":{"start":1750253625776,"stop":1750253628901,"duration":3125}}]},"c118be77fa2af6f0e0052ec7489ba66c:b444eb0fbe6390c71e68b51dd25701fc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"47ca0e41ec1ea8fb","status":"passed","time":{"start":1750253598775,"stop":1750253604401,"duration":5626}}]},"18246cf63350a71f5b46012e257bafcf:b444eb0fbe6390c71e68b51dd25701fc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"268082d8261ccc76","status":"passed","time":{"start":1750253599892,"stop":1750253602241,"duration":2349}}]},"d776d5fb9c918a79827aea417bdc449a:5bd835b0d6b1d4ada3b9f0db936e82c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"e5b2a4ada3cdd147","status":"passed","time":{"start":1750253554554,"stop":1750253556742,"duration":2188}}]},"b1726395bd827a3a21fe3c829a098be4:5bd835b0d6b1d4ada3b9f0db936e82c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"4fd8070ee07c07e1","status":"passed","time":{"start":1750253554502,"stop":1750253556660,"duration":2158}}]},"e5764a911de0175f8f7118313ae14544:5bd835b0d6b1d4ada3b9f0db936e82c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"b8861ed3561357c1","status":"passed","time":{"start":1750253543980,"stop":1750253554437,"duration":10457}}]},"3562648cd3231e14b42a7151c17c62aa:b444eb0fbe6390c71e68b51dd25701fc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"7bd365bab41d410d","status":"passed","time":{"start":1750253611748,"stop":1750253620699,"duration":8951}}]},"31f03826b2a8da254be42b2d49bc35f3:b444eb0fbe6390c71e68b51dd25701fc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"d202e4c572649d08","status":"passed","time":{"start":1750253599029,"stop":1750253601554,"duration":2525}}]},"2214c0f917091cfcda832cd03e01bb76:5bd835b0d6b1d4ada3b9f0db936e82c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"1aa50af46a2c6c85","status":"passed","time":{"start":1750253570265,"stop":1750253577600,"duration":7335}}]},"61b0fd9a6b9153c787b71ef3413cea92:84e28e814b821ed013329cc8dbc467e0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"311909f1f9bb172e","status":"passed","time":{"start":1750253629833,"stop":1750253631616,"duration":1783}}]},"e5764a911de0175f8f7118313ae14544:84e28e814b821ed013329cc8dbc467e0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"d8233d7d84131656","status":"passed","time":{"start":1750253621559,"stop":1750253626826,"duration":5267}}]},"cc4ad4b40ef726af11b2bd4f5523dbe0:5bd835b0d6b1d4ada3b9f0db936e82c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"d84d93cab9b2d9bf","status":"passed","time":{"start":1750253543998,"stop":1750253554549,"duration":10551}}]},"3562648cd3231e14b42a7151c17c62aa:5bd835b0d6b1d4ada3b9f0db936e82c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"1ffa1f32ab940059","status":"passed","time":{"start":1750253577624,"stop":1750253579862,"duration":2238}}]},"31f03826b2a8da254be42b2d49bc35f3:84e28e814b821ed013329cc8dbc467e0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"a90b7beaa711f52d","status":"passed","time":{"start":1750253627415,"stop":1750253629829,"duration":2414}}]},"1779c735aef9d62c071557455e74e57f:5bd835b0d6b1d4ada3b9f0db936e82c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"348561a89d288bda","status":"passed","time":{"start":1750253562864,"stop":1750253569405,"duration":6541}}]},"58990385f74407307e4ace7ad02abf05:84e28e814b821ed013329cc8dbc467e0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"41ad93595349c29","status":"passed","time":{"start":1750253620048,"stop":1750253625592,"duration":5544}}]},"8c67bb2f4fb916157fb6191bbb5e4267:84e28e814b821ed013329cc8dbc467e0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"74ce0bc363de24e3","status":"passed","time":{"start":1750253620373,"stop":1750253625769,"duration":5396}}]},"3a2a809b453af4fd564578d1a27f3e45:5bd835b0d6b1d4ada3b9f0db936e82c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"c7cd56bdce8656af","status":"passed","time":{"start":1750253539581,"stop":1750253541528,"duration":1947}}]},"26486147b8778ca2341563049d2a3728:5bd835b0d6b1d4ada3b9f0db936e82c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"a59360836ecd582e","status":"passed","time":{"start":1750253577607,"stop":1750253579829,"duration":2222}}]},"c118be77fa2af6f0e0052ec7489ba66c:5bd835b0d6b1d4ada3b9f0db936e82c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"edf7ac0b504065f6","status":"passed","time":{"start":1750253556276,"stop":1750253562859,"duration":6583}}]},"e6d2fb91f0b85b95c3962ffc860dddd7:b444eb0fbe6390c71e68b51dd25701fc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"c5a5985d074991f8","status":"passed","time":{"start":1750253600779,"stop":1750253603897,"duration":3118}}]},"1779c735aef9d62c071557455e74e57f:84e28e814b821ed013329cc8dbc467e0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"3ffdae9c16b02a46","status":"passed","time":{"start":1750253629450,"stop":1750253631204,"duration":1754}}]},"b1726395bd827a3a21fe3c829a098be4:b444eb0fbe6390c71e68b51dd25701fc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"dd3b057d4871238c","status":"passed","time":{"start":1750253597973,"stop":1750253599889,"duration":1916}}]},"2214c0f917091cfcda832cd03e01bb76:b444eb0fbe6390c71e68b51dd25701fc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"b6cf932c7feaf975","status":"passed","time":{"start":1750253610248,"stop":1750253612680,"duration":2432}}]},"1779c735aef9d62c071557455e74e57f:b444eb0fbe6390c71e68b51dd25701fc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"bdebd619900bc3fe","status":"passed","time":{"start":1750253602246,"stop":1750253610240,"duration":7994}}]},"91fcabcb669557e4ddb559c077420e45:84e28e814b821ed013329cc8dbc467e0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"969ce7fb67ee94cb","status":"passed","time":{"start":1750253615927,"stop":1750253618481,"duration":2554}}]},"91fcabcb669557e4ddb559c077420e45:5bd835b0d6b1d4ada3b9f0db936e82c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"de38ce213e0340ea","status":"passed","time":{"start":1750253539582,"stop":1750253541712,"duration":2130}}]},"d776d5fb9c918a79827aea417bdc449a:b444eb0fbe6390c71e68b51dd25701fc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"2d6e81b71171ace1","status":"passed","time":{"start":1750253598459,"stop":1750253600776,"duration":2317}}]},"cc4ad4b40ef726af11b2bd4f5523dbe0:b444eb0fbe6390c71e68b51dd25701fc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"8364fab107a5383f","status":"passed","time":{"start":1750253591861,"stop":1750253598453,"duration":6592}}]},"69b9236bee03ff0034bfbd5addc25f93:5bd835b0d6b1d4ada3b9f0db936e82c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"85493f33f5b82a23","status":"passed","time":{"start":1750253542024,"stop":1750253543977,"duration":1953}}]},"e6d2fb91f0b85b95c3962ffc860dddd7:84e28e814b821ed013329cc8dbc467e0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"7c195f45eccd77f0","status":"passed","time":{"start":1750253628906,"stop":1750253632674,"duration":3768}}]},"8c67bb2f4fb916157fb6191bbb5e4267:5bd835b0d6b1d4ada3b9f0db936e82c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"12daddbe908eeb70","status":"passed","time":{"start":1750253543785,"stop":1750253554497,"duration":10712}}]},"de8c598c53adc6e2133478f1b9141597:b444eb0fbe6390c71e68b51dd25701fc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"25c5b161e06d93d9","status":"passed","time":{"start":1750253604966,"stop":1750253611362,"duration":6396}}]},"58990385f74407307e4ace7ad02abf05:5bd835b0d6b1d4ada3b9f0db936e82c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"bdfb8cd05c21f618","status":"passed","time":{"start":1750253542026,"stop":1750253543994,"duration":1968}}]},"37e4aa066a5f6eac2e4d3b98a2ed98a7:5bd835b0d6b1d4ada3b9f0db936e82c8":{"statistic":{"failed":0,"broken":1,"skipped":0,"passed":0,"unknown":0,"total":1},"items":[{"uid":"6962b06e4eb06b10","status":"broken","statusDetails":"Test timeout of 30000ms exceeded.","time":{"start":1750253539580,"stop":1750253579575,"duration":39995}}]},"61b0fd9a6b9153c787b71ef3413cea92:b444eb0fbe6390c71e68b51dd25701fc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"ef734132e3fbac4f","status":"passed","time":{"start":1750253603906,"stop":1750253611740,"duration":7834}}]},"3562648cd3231e14b42a7151c17c62aa:84e28e814b821ed013329cc8dbc467e0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"161e58a3f3c0816d","status":"passed","time":{"start":1750253633097,"stop":1750253636457,"duration":3360}}]},"de8c598c53adc6e2133478f1b9141597:84e28e814b821ed013329cc8dbc467e0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"459b4b10daa488e2","status":"passed","time":{"start":1750253631623,"stop":1750253633317,"duration":1694}}]},"61b0fd9a6b9153c787b71ef3413cea92:5bd835b0d6b1d4ada3b9f0db936e82c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"ffac43d36c488156","status":"passed","time":{"start":1750253564295,"stop":1750253570263,"duration":5968}}]},"92a5ca35180a4cbe902714b987a6bf44:5bd835b0d6b1d4ada3b9f0db936e82c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"579b024130132991","status":"passed","time":{"start":1750253554444,"stop":1750253556270,"duration":1826}}]},"62db9603623bba26b6305edb541ef4fa:5bd835b0d6b1d4ada3b9f0db936e82c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"2b89ce8c9b1ff011","status":"passed","time":{"start":1750253539579,"stop":1750253541710,"duration":2131}}]},"b1726395bd827a3a21fe3c829a098be4:84e28e814b821ed013329cc8dbc467e0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"3d110a427012de38","status":"passed","time":{"start":1750253625771,"stop":1750253627417,"duration":1646}}]},"7134a02a04b606099de5c920fb62990a:b444eb0fbe6390c71e68b51dd25701fc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"f32fd3da60726a1e","status":"passed","time":{"start":1750253604406,"stop":1750253611801,"duration":7395}}]},"de8c598c53adc6e2133478f1b9141597:5bd835b0d6b1d4ada3b9f0db936e82c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"43316c0a1abf58ba","status":"passed","time":{"start":1750253569430,"stop":1750253577638,"duration":8208}}]},"69b9236bee03ff0034bfbd5addc25f93:b444eb0fbe6390c71e68b51dd25701fc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"1e1a6ccd54582ad8","status":"passed","time":{"start":1750253584291,"stop":1750253591595,"duration":7304}}]},"3a2a809b453af4fd564578d1a27f3e45:84e28e814b821ed013329cc8dbc467e0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"bde11e0db442031c","status":"passed","time":{"start":1750253612661,"stop":1750253615520,"duration":2859}}]},"26486147b8778ca2341563049d2a3728:84e28e814b821ed013329cc8dbc467e0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"1a3b3ab485523c37","status":"passed","time":{"start":1750253632679,"stop":1750253634953,"duration":2274}}]},"c118be77fa2af6f0e0052ec7489ba66c:84e28e814b821ed013329cc8dbc467e0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"2981b57719f478ef","status":"passed","time":{"start":1750253627038,"stop":1750253629360,"duration":2322}}]},"3a2a809b453af4fd564578d1a27f3e45:b444eb0fbe6390c71e68b51dd25701fc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"9e2f1dea9cfe0b65","status":"passed","time":{"start":1750253578127,"stop":1750253582408,"duration":4281}}]},"37e4aa066a5f6eac2e4d3b98a2ed98a7:84e28e814b821ed013329cc8dbc467e0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"7be5c1dfc4d42552","status":"passed","time":{"start":1750253613514,"stop":1750253616668,"duration":3154}}]},"500ad758ee2db2bb60aa832fb0abbb94:5bd835b0d6b1d4ada3b9f0db936e82c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"b47108b604f86692","status":"passed","time":{"start":1750253541844,"stop":1750253543782,"duration":1938}}]},"18246cf63350a71f5b46012e257bafcf:84e28e814b821ed013329cc8dbc467e0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"8ff2d3069826e842","status":"passed","time":{"start":1750253627424,"stop":1750253629445,"duration":2021}}]},"92a5ca35180a4cbe902714b987a6bf44:b444eb0fbe6390c71e68b51dd25701fc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"5d5913a5fa886b55","status":"passed","time":{"start":1750253592136,"stop":1750253599022,"duration":6886}}]},"92a5ca35180a4cbe902714b987a6bf44:84e28e814b821ed013329cc8dbc467e0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"8ab573c35bfcbb5a","status":"passed","time":{"start":1750253625598,"stop":1750253627407,"duration":1809}}]},"500ad758ee2db2bb60aa832fb0abbb94:84e28e814b821ed013329cc8dbc467e0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"d99021bc0bd45ce9","status":"passed","time":{"start":1750253618438,"stop":1750253620369,"duration":1931}}]},"62db9603623bba26b6305edb541ef4fa:b444eb0fbe6390c71e68b51dd25701fc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"f12e99c96967b550","status":"passed","time":{"start":1750253580604,"stop":1750253590440,"duration":9836}}]},"a7eaebb1e41fbbf13bf61195120b3ce9:84e28e814b821ed013329cc8dbc467e0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"5d12a7641d21519b","status":"passed","time":{"start":1750253629369,"stop":1750253631627,"duration":2258}}]},"18246cf63350a71f5b46012e257bafcf:5bd835b0d6b1d4ada3b9f0db936e82c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"c989d1690bcfa46f","status":"passed","time":{"start":1750253556746,"stop":1750253562562,"duration":5816}}]},"37e4aa066a5f6eac2e4d3b98a2ed98a7:b444eb0fbe6390c71e68b51dd25701fc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"9dbd22211a852adb","status":"passed","time":{"start":1750253580470,"stop":1750253583690,"duration":3220}}]},"7134a02a04b606099de5c920fb62990a:5bd835b0d6b1d4ada3b9f0db936e82c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"d449fe499514742d","status":"passed","time":{"start":1750253569409,"stop":1750253577616,"duration":8207}}]},"62db9603623bba26b6305edb541ef4fa:84e28e814b821ed013329cc8dbc467e0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"ddb409ab42c11aa9","status":"passed","time":{"start":1750253616847,"stop":1750253618431,"duration":1584}}]}} \ No newline at end of file diff --git a/allure-report/history/retry-trend.json b/allure-report/history/retry-trend.json index bfe00be..f750365 100644 --- a/allure-report/history/retry-trend.json +++ b/allure-report/history/retry-trend.json @@ -1 +1 @@ -[{"data":{"run":57,"retry":57}}] \ No newline at end of file +[{"data":{"run":75,"retry":240}}] \ No newline at end of file diff --git a/allure-report/index.html b/allure-report/index.html index b9406e4..ce6d23a 100644 --- a/allure-report/index.html +++ b/allure-report/index.html @@ -26,7 +26,7 @@ gtag('js', new Date()); gtag('config', 'G-FVWC4GKEYS', { 'allureVersion': '2.34.0', - 'reportUuid': 'c372c031-4d25-4a85-88e2-dccae9a34a5c', + 'reportUuid': '6b8d10de-16fe-45c7-ad6f-304ff8b7623e', 'single_file': false }); diff --git a/allure-report/widgets/behaviors.json b/allure-report/widgets/behaviors.json index 45646f9..cbd0e60 100644 --- a/allure-report/widgets/behaviors.json +++ b/allure-report/widgets/behaviors.json @@ -1 +1 @@ -{"total":57,"items":[]} \ No newline at end of file +{"total":75,"items":[]} \ No newline at end of file diff --git a/allure-report/widgets/categories-trend.json b/allure-report/widgets/categories-trend.json index 2f871d5..31366fe 100644 --- a/allure-report/widgets/categories-trend.json +++ b/allure-report/widgets/categories-trend.json @@ -1 +1 @@ -[{"data":{}}] \ No newline at end of file +[{"data":{"Test defects":1}}] \ No newline at end of file diff --git a/allure-report/widgets/categories.json b/allure-report/widgets/categories.json index a527ade..c4db438 100644 --- a/allure-report/widgets/categories.json +++ b/allure-report/widgets/categories.json @@ -1 +1 @@ -{"total":0,"items":[]} \ No newline at end of file +{"total":1,"items":[{"uid":"bdbf199525818fae7a8651db9eafe741","name":"Test defects","statistic":{"failed":0,"broken":1,"skipped":0,"passed":0,"unknown":0,"total":1}}]} \ No newline at end of file diff --git a/allure-report/widgets/duration-trend.json b/allure-report/widgets/duration-trend.json index 3202730..d26f328 100644 --- a/allure-report/widgets/duration-trend.json +++ b/allure-report/widgets/duration-trend.json @@ -1 +1 @@ -[{"data":{"duration":23754}}] \ No newline at end of file +[{"data":{"duration":96878}}] \ No newline at end of file diff --git a/allure-report/widgets/duration.json b/allure-report/widgets/duration.json index 09a8ef9..b20925e 100644 --- a/allure-report/widgets/duration.json +++ b/allure-report/widgets/duration.json @@ -1 +1 @@ -[{"uid":"d30e1a8a947541fc","name":"Неверный пароль","time":{"start":1750084506454,"stop":1750084507609,"duration":1155},"status":"passed","severity":"normal"},{"uid":"a53cc3de606dc5ae","name":"Переход по ссылке \"Забыли пароль?\"","time":{"start":1750084494465,"stop":1750084496561,"duration":2096},"status":"passed","severity":"normal"},{"uid":"e94724f7c9383d0e","name":"get started link","time":{"start":1750084494460,"stop":1750084496622,"duration":2162},"status":"passed","severity":"normal"},{"uid":"b714c3ef6b1955c5","name":"get started link","time":{"start":1750084487579,"stop":1750084488883,"duration":1304},"status":"passed","severity":"normal"},{"uid":"1bf14a52b790d91","name":"Неверный код подтверждения","time":{"start":1750084501594,"stop":1750084503368,"duration":1774},"status":"passed","severity":"normal"},{"uid":"701a94631e81e6af","name":"Некорректный email (формат)","time":{"start":1750084491646,"stop":1750084492211,"duration":565},"status":"passed","severity":"normal"},{"uid":"589b172d059c0837","name":"Только email без пароля","time":{"start":1750084499301,"stop":1750084500455,"duration":1154},"status":"passed","severity":"normal"},{"uid":"accf5a2fef71e751","name":"Переход по ссылке \"Забыли пароль?\"","time":{"start":1750084487578,"stop":1750084490119,"duration":2541},"status":"passed","severity":"normal"},{"uid":"b20bbc8741046798","name":"Пароли не совпадают","time":{"start":1750084492974,"stop":1750084493874,"duration":900},"status":"passed","severity":"normal"},{"uid":"f7a702fb49f5f201","name":"Оба поля пустые","time":{"start":1750084490497,"stop":1750084491239,"duration":742},"status":"passed","severity":"normal"},{"uid":"c0406bead53d77ca","name":"Регистр в email (User@test.com ≠ user@test.com)","time":{"start":1750084507958,"stop":1750084508862,"duration":904},"status":"passed","severity":"normal"},{"uid":"922c07477f21c047","name":"Пользователь успешно восстанавливает пароль","time":{"start":1750084503378,"stop":1750084505830,"duration":2452},"status":"passed","severity":"normal"},{"uid":"2e06dcefaf1e4c31","name":"Пустое поле \"Повторите пароль\"","time":{"start":1750084502343,"stop":1750084503756,"duration":1413},"status":"passed","severity":"normal"},{"uid":"13a3c47523dc168e","name":"has title","time":{"start":1750084504438,"stop":1750084505941,"duration":1503},"status":"passed","severity":"normal"},{"uid":"96736297720c2c0d","name":"Пустое поле \"Повторите пароль\"","time":{"start":1750084492375,"stop":1750084493870,"duration":1495},"status":"passed","severity":"normal"},{"uid":"31bb4ab4326f6487","name":"Переход по ссылке \"Зарегистрируйтесь\"","time":{"start":1750084487577,"stop":1750084488773,"duration":1196},"status":"passed","severity":"normal"},{"uid":"1f2ff10db5665418","name":"Пустое поле \"Повторите пароль\"","time":{"start":1750084509447,"stop":1750084510516,"duration":1069},"status":"passed","severity":"normal"},{"uid":"127e2567cd7d94f3","name":"Несуществующий email","time":{"start":1750084508872,"stop":1750084509760,"duration":888},"status":"passed","severity":"normal"},{"uid":"749fb76346883a7d","name":"Некорректный формат email","time":{"start":1750084499796,"stop":1750084501311,"duration":1515},"status":"passed","severity":"normal"},{"uid":"98e3f9bd5b0da70e","name":"Регистр в email (User@test.com ≠ user@test.com)","time":{"start":1750084500111,"stop":1750084501485,"duration":1374},"status":"passed","severity":"normal"},{"uid":"f0ec6d6d628046ac","name":"Оба поля пустые","time":{"start":1750084498792,"stop":1750084500139,"duration":1347},"status":"passed","severity":"normal"},{"uid":"1f34f20dd4a0d9fd","name":"Неверный пароль","time":{"start":1750084489259,"stop":1750084490492,"duration":1233},"status":"passed","severity":"normal"},{"uid":"9c1576c7213cf7a9","name":"Пользователь успешно восстанавливает пароль","time":{"start":1750084493416,"stop":1750084494507,"duration":1091},"status":"passed","severity":"normal"},{"uid":"e8ebfdb5511bffc3","name":"Некорректный email (формат)","time":{"start":1750084508679,"stop":1750084509441,"duration":762},"status":"passed","severity":"normal"},{"uid":"9e16f68655df37d3","name":"Пользователь должен успешно залогиниться с валидными данными","time":{"start":1750084508128,"stop":1750084509091,"duration":963},"status":"passed","severity":"normal"},{"uid":"909368716fad6c28","name":"Пользователь должен успешно залогиниться с валидными данными","time":{"start":1750084500146,"stop":1750084501725,"duration":1579},"status":"passed","severity":"normal"},{"uid":"703a2301ffdc2da7","name":"Неверный код подтверждения","time":{"start":1750084509104,"stop":1750084510143,"duration":1039},"status":"passed","severity":"normal"},{"uid":"4da4945bee2a6177","name":"Некорректный формат email","time":{"start":1750084507730,"stop":1750084508673,"duration":943},"status":"passed","severity":"normal"},{"uid":"1aae5dc9a4d21981","name":"Некорректный формат email","time":{"start":1750084490746,"stop":1750084491640,"duration":894},"status":"passed","severity":"normal"},{"uid":"8d0ccd1c875a97cc","name":"Пользователь успешно восстанавливает пароль","time":{"start":1750084510151,"stop":1750084511331,"duration":1180},"status":"passed","severity":"normal"},{"uid":"9059b807844ecd29","name":"Только email без пароля","time":{"start":1750084507616,"stop":1750084508347,"duration":731},"status":"passed","severity":"normal"},{"uid":"88a8af1bf7652c0e","name":"Неверный пароль","time":{"start":1750084497996,"stop":1750084499294,"duration":1298},"status":"passed","severity":"normal"},{"uid":"a1fd8ee0914c6a57","name":"Несуществующий email","time":{"start":1750084492074,"stop":1750084492970,"duration":896},"status":"passed","severity":"normal"},{"uid":"2f8af4d67d869f1","name":"Переключатель видимости пароля показывает и скрывает ввод","time":{"start":1750084508352,"stop":1750084509225,"duration":873},"status":"passed","severity":"normal"},{"uid":"995bb2612eda65c","name":"get started link","time":{"start":1750084504688,"stop":1750084506422,"duration":1734},"status":"passed","severity":"normal"},{"uid":"219f17571c2d2715","name":"Только email без пароля","time":{"start":1750084490528,"stop":1750084491353,"duration":825},"status":"passed","severity":"normal"},{"uid":"5c52ce3f42b81329","name":"Пользователь должен успешно залогиниться с валидными данными","time":{"start":1750084491243,"stop":1750084492069,"duration":826},"status":"passed","severity":"normal"},{"uid":"9ed8b38ec7c4a34b","name":"Пароли не совпадают","time":{"start":1750084509765,"stop":1750084510859,"duration":1094},"status":"passed","severity":"normal"},{"uid":"e07c24690f801b74","name":"Некорректный новый пароль","time":{"start":1750084492220,"stop":1750084493759,"duration":1539},"status":"passed","severity":"normal"},{"uid":"731f29d77f45de06","name":"has title","time":{"start":1750084487580,"stop":1750084490628,"duration":3048},"status":"passed","severity":"normal"},{"uid":"8af42ae3367ca0d6","name":"Некорректный новый пароль","time":{"start":1750084501747,"stop":1750084503402,"duration":1655},"status":"passed","severity":"normal"},{"uid":"f6b2716194c4ce74","name":"Несуществующий email","time":{"start":1750084498297,"stop":1750084500105,"duration":1808},"status":"passed","severity":"normal"},{"uid":"287ea007721245b5","name":"Регистр в email (User@test.com ≠ user@test.com)","time":{"start":1750084491115,"stop":1750084492165,"duration":1050},"status":"passed","severity":"normal"},{"uid":"159330e44b573ebb","name":"Пароли не совпадают","time":{"start":1750084502694,"stop":1750084504377,"duration":1683},"status":"passed","severity":"normal"},{"uid":"c9901a9937a7b7a5","name":"Переход по ссылке \"Зарегистрируйтесь\"","time":{"start":1750084506996,"stop":1750084507961,"duration":965},"status":"passed","severity":"normal"},{"uid":"ce94b9aa72086b4e","name":"Несуществующий email","time":{"start":1750084506686,"stop":1750084507723,"duration":1037},"status":"passed","severity":"normal"},{"uid":"f5ffdd03c44055b1","name":"Несуществующий email","time":{"start":1750084489363,"stop":1750084490743,"duration":1380},"status":"passed","severity":"normal"},{"uid":"c7a1902ba1108ba2","name":"Некорректный email (формат)","time":{"start":1750084501326,"stop":1750084502338,"duration":1012},"status":"passed","severity":"normal"},{"uid":"a9ee13342854924d","name":"Некорректный новый пароль","time":{"start":1750084509235,"stop":1750084510626,"duration":1391},"status":"passed","severity":"normal"},{"uid":"a2b4235c46265be0","name":"Оба поля пустые","time":{"start":1750084506701,"stop":1750084507952,"duration":1251},"status":"passed","severity":"normal"},{"uid":"34179ea7ef46fc56","name":"Переход по ссылке \"Зарегистрируйтесь\"","time":{"start":1750084494915,"stop":1750084497374,"duration":2459},"status":"passed","severity":"normal"},{"uid":"31dc1d9640018cfc","name":"Переход по ссылке \"Забыли пароль?\"","time":{"start":1750084505493,"stop":1750084506516,"duration":1023},"status":"passed","severity":"normal"},{"uid":"7b807a335cae4963","name":"Несуществующий email","time":{"start":1750084501499,"stop":1750084502685,"duration":1186},"status":"passed","severity":"normal"},{"uid":"e3d2684b480ff47b","name":"Неверный код подтверждения","time":{"start":1750084492172,"stop":1750084493410,"duration":1238},"status":"passed","severity":"normal"},{"uid":"c82bf9b727e4250d","name":"Переключатель видимости пароля показывает и скрывает ввод","time":{"start":1750084491357,"stop":1750084492371,"duration":1014},"status":"passed","severity":"normal"},{"uid":"3bba1028b851bbbc","name":"Переключатель видимости пароля показывает и скрывает ввод","time":{"start":1750084500466,"stop":1750084501581,"duration":1115},"status":"passed","severity":"normal"},{"uid":"f7bfbf67a45ab3ec","name":"has title","time":{"start":1750084494460,"stop":1750084496600,"duration":2140},"status":"passed","severity":"normal"}] \ No newline at end of file +[{"uid":"1ffa1f32ab940059","name":"Успешная регистрация нового пользователя","time":{"start":1750253577624,"stop":1750253579862,"duration":2238},"status":"passed","severity":"normal"},{"uid":"716b6c73ce6c62ba","name":"Несуществующий email","time":{"start":1750253618487,"stop":1750253620044,"duration":1557},"status":"passed","severity":"normal"},{"uid":"4fd8070ee07c07e1","name":"Переключатель видимости пароля показывает и скрывает ввод","time":{"start":1750253554502,"stop":1750253556660,"duration":2158},"status":"passed","severity":"normal"},{"uid":"47ca0e41ec1ea8fb","name":"Несуществующий email","time":{"start":1750253598775,"stop":1750253604401,"duration":5626},"status":"passed","severity":"normal"},{"uid":"d449fe499514742d","name":"Некорректное имя и фамилия (слишком длинные)","time":{"start":1750253569409,"stop":1750253577616,"duration":8207},"status":"passed","severity":"normal"},{"uid":"a59360836ecd582e","name":"Слишком длинное название организации","time":{"start":1750253577607,"stop":1750253579829,"duration":2222},"status":"passed","severity":"normal"},{"uid":"c7cd56bdce8656af","name":"has title","time":{"start":1750253539581,"stop":1750253541528,"duration":1947},"status":"passed","severity":"normal"},{"uid":"5d12a7641d21519b","name":"Пароли не совпадают","time":{"start":1750253629369,"stop":1750253631627,"duration":2258},"status":"passed","severity":"normal"},{"uid":"161e58a3f3c0816d","name":"Успешная регистрация нового пользователя","time":{"start":1750253633097,"stop":1750253636457,"duration":3360},"status":"passed","severity":"normal"},{"uid":"d99021bc0bd45ce9","name":"Неверный пароль","time":{"start":1750253618438,"stop":1750253620369,"duration":1931},"status":"passed","severity":"normal"},{"uid":"3d110a427012de38","name":"Переключатель видимости пароля показывает и скрывает ввод","time":{"start":1750253625771,"stop":1750253627417,"duration":1646},"status":"passed","severity":"normal"},{"uid":"d6ec22530a71c4d6","name":"Слишком длинное название организации","time":{"start":1750253611365,"stop":1750253620996,"duration":9631},"status":"passed","severity":"normal"},{"uid":"9dbd22211a852adb","name":"get started link","time":{"start":1750253580470,"stop":1750253583690,"duration":3220},"status":"passed","severity":"normal"},{"uid":"a64dad12f676d820","name":"Регистр в email (User@test.com ≠ user@test.com)","time":{"start":1750253621861,"stop":1750253625596,"duration":3735},"status":"passed","severity":"normal"},{"uid":"1aa50af46a2c6c85","name":"Слишком длинная должность","time":{"start":1750253570265,"stop":1750253577600,"duration":7335},"status":"passed","severity":"normal"},{"uid":"f12e99c96967b550","name":"Переход по ссылке \"Зарегистрируйтесь\"","time":{"start":1750253580604,"stop":1750253590440,"duration":9836},"status":"passed","severity":"normal"},{"uid":"ddb409ab42c11aa9","name":"Переход по ссылке \"Зарегистрируйтесь\"","time":{"start":1750253616847,"stop":1750253618431,"duration":1584},"status":"passed","severity":"normal"},{"uid":"e5b2a4ada3cdd147","name":"Некорректный email (формат)","time":{"start":1750253554554,"stop":1750253556742,"duration":2188},"status":"passed","severity":"normal"},{"uid":"1c2b927f6a4c2926","name":"Пустое поле \"Повторите пароль\"","time":{"start":1750253562565,"stop":1750253564290,"duration":1725},"status":"passed","severity":"normal"},{"uid":"25c5b161e06d93d9","name":"Некорректный email формат","time":{"start":1750253604966,"stop":1750253611362,"duration":6396},"status":"passed","severity":"normal"},{"uid":"12daddbe908eeb70","name":"Только email без пароля","time":{"start":1750253543785,"stop":1750253554497,"duration":10712},"status":"passed","severity":"normal"},{"uid":"2b89ce8c9b1ff011","name":"Переход по ссылке \"Зарегистрируйтесь\"","time":{"start":1750253539579,"stop":1750253541710,"duration":2131},"status":"passed","severity":"normal"},{"uid":"d202e4c572649d08","name":"Неверный код подтверждения","time":{"start":1750253599029,"stop":1750253601554,"duration":2525},"status":"passed","severity":"normal"},{"uid":"ef734132e3fbac4f","name":"Отправка пустой формы","time":{"start":1750253603906,"stop":1750253611740,"duration":7834},"status":"passed","severity":"normal"},{"uid":"41ad93595349c29","name":"Оба поля пустые","time":{"start":1750253620048,"stop":1750253625592,"duration":5544},"status":"passed","severity":"normal"},{"uid":"3ffdae9c16b02a46","name":"Пользователь успешно восстанавливает пароль","time":{"start":1750253629450,"stop":1750253631204,"duration":1754},"status":"passed","severity":"normal"},{"uid":"8ab573c35bfcbb5a","name":"Пользователь должен успешно залогиниться с валидными данными","time":{"start":1750253625598,"stop":1750253627407,"duration":1809},"status":"passed","severity":"normal"},{"uid":"b8861ed3561357c1","name":"Некорректный формат email","time":{"start":1750253543980,"stop":1750253554437,"duration":10457},"status":"passed","severity":"normal"},{"uid":"5d5913a5fa886b55","name":"Пользователь должен успешно залогиниться с валидными данными","time":{"start":1750253592136,"stop":1750253599022,"duration":6886},"status":"passed","severity":"normal"},{"uid":"8b6e30a20f47471a","name":"Некорректное имя и фамилия (слишком длинные)","time":{"start":1750253631208,"stop":1750253633092,"duration":1884},"status":"passed","severity":"normal"},{"uid":"bdfb8cd05c21f618","name":"Оба поля пустые","time":{"start":1750253542026,"stop":1750253543994,"duration":1968},"status":"passed","severity":"normal"},{"uid":"85493f33f5b82a23","name":"Несуществующий email","time":{"start":1750253542024,"stop":1750253543977,"duration":1953},"status":"passed","severity":"normal"},{"uid":"459b4b10daa488e2","name":"Некорректный email формат","time":{"start":1750253631623,"stop":1750253633317,"duration":1694},"status":"passed","severity":"normal"},{"uid":"2981b57719f478ef","name":"Несуществующий email","time":{"start":1750253627038,"stop":1750253629360,"duration":2322},"status":"passed","severity":"normal"},{"uid":"9e2f1dea9cfe0b65","name":"has title","time":{"start":1750253578127,"stop":1750253582408,"duration":4281},"status":"passed","severity":"normal"},{"uid":"ffac43d36c488156","name":"Отправка пустой формы","time":{"start":1750253564295,"stop":1750253570263,"duration":5968},"status":"passed","severity":"normal"},{"uid":"de659773fd4e5c6e","name":"Оба поля пустые","time":{"start":1750253585670,"stop":1750253592130,"duration":6460},"status":"passed","severity":"normal"},{"uid":"d8233d7d84131656","name":"Некорректный формат email","time":{"start":1750253621559,"stop":1750253626826,"duration":5267},"status":"passed","severity":"normal"},{"uid":"2d6e81b71171ace1","name":"Некорректный email (формат)","time":{"start":1750253598459,"stop":1750253600776,"duration":2317},"status":"passed","severity":"normal"},{"uid":"348561a89d288bda","name":"Пользователь успешно восстанавливает пароль","time":{"start":1750253562864,"stop":1750253569405,"duration":6541},"status":"passed","severity":"normal"},{"uid":"24d0761a6935af7f","name":"Только email без пароля","time":{"start":1750253591157,"stop":1750253597964,"duration":6807},"status":"passed","severity":"normal"},{"uid":"a90b7beaa711f52d","name":"Неверный код подтверждения","time":{"start":1750253627415,"stop":1750253629829,"duration":2414},"status":"passed","severity":"normal"},{"uid":"b804adb591f93bce","name":"Переход по ссылке \"Забыли пароль?\"","time":{"start":1750253580476,"stop":1750253584678,"duration":4202},"status":"passed","severity":"normal"},{"uid":"1a3b3ab485523c37","name":"Слишком длинное название организации","time":{"start":1750253632679,"stop":1750253634953,"duration":2274},"status":"passed","severity":"normal"},{"uid":"dd3b057d4871238c","name":"Переключатель видимости пароля показывает и скрывает ввод","time":{"start":1750253597973,"stop":1750253599889,"duration":1916},"status":"passed","severity":"normal"},{"uid":"579b024130132991","name":"Пользователь должен успешно залогиниться с валидными данными","time":{"start":1750253554444,"stop":1750253556270,"duration":1826},"status":"passed","severity":"normal"},{"uid":"43316c0a1abf58ba","name":"Некорректный email формат","time":{"start":1750253569430,"stop":1750253577638,"duration":8208},"status":"passed","severity":"normal"},{"uid":"bdebd619900bc3fe","name":"Пользователь успешно восстанавливает пароль","time":{"start":1750253602246,"stop":1750253610240,"duration":7994},"status":"passed","severity":"normal"},{"uid":"f858e1d3e4667ccb","name":"Некорректный email (формат)","time":{"start":1750253625776,"stop":1750253628901,"duration":3125},"status":"passed","severity":"normal"},{"uid":"bde11e0db442031c","name":"has title","time":{"start":1750253612661,"stop":1750253615520,"duration":2859},"status":"passed","severity":"normal"},{"uid":"c1ab22b3f9166450","name":"Неверный код подтверждения","time":{"start":1750253556666,"stop":1750253562794,"duration":6128},"status":"passed","severity":"normal"},{"uid":"4eebb1230811a3dd","name":"Пароли не совпадают","time":{"start":1750253562798,"stop":1750253569425,"duration":6627},"status":"passed","severity":"normal"},{"uid":"7c195f45eccd77f0","name":"Пустое поле \"Повторите пароль\"","time":{"start":1750253628906,"stop":1750253632674,"duration":3768},"status":"passed","severity":"normal"},{"uid":"268082d8261ccc76","name":"Некорректный новый пароль","time":{"start":1750253599892,"stop":1750253602241,"duration":2349},"status":"passed","severity":"normal"},{"uid":"969ce7fb67ee94cb","name":"Переход по ссылке \"Забыли пароль?\"","time":{"start":1750253615927,"stop":1750253618481,"duration":2554},"status":"passed","severity":"normal"},{"uid":"c5a5985d074991f8","name":"Пустое поле \"Повторите пароль\"","time":{"start":1750253600779,"stop":1750253603897,"duration":3118},"status":"passed","severity":"normal"},{"uid":"edf7ac0b504065f6","name":"Несуществующий email","time":{"start":1750253556276,"stop":1750253562859,"duration":6583},"status":"passed","severity":"normal"},{"uid":"bfaa389e6b880a54","name":"Слишком длинная должность","time":{"start":1750253631638,"stop":1750253633505,"duration":1867},"status":"passed","severity":"normal"},{"uid":"8554552a459385ed","name":"Некорректный формат email","time":{"start":1750253591599,"stop":1750253598769,"duration":7170},"status":"passed","severity":"normal"},{"uid":"7be5c1dfc4d42552","name":"get started link","time":{"start":1750253613514,"stop":1750253616668,"duration":3154},"status":"passed","severity":"normal"},{"uid":"8364fab107a5383f","name":"Регистр в email (User@test.com ≠ user@test.com)","time":{"start":1750253591861,"stop":1750253598453,"duration":6592},"status":"passed","severity":"normal"},{"uid":"b6cf932c7feaf975","name":"Слишком длинная должность","time":{"start":1750253610248,"stop":1750253612680,"duration":2432},"status":"passed","severity":"normal"},{"uid":"8ff2d3069826e842","name":"Некорректный новый пароль","time":{"start":1750253627424,"stop":1750253629445,"duration":2021},"status":"passed","severity":"normal"},{"uid":"c989d1690bcfa46f","name":"Некорректный новый пароль","time":{"start":1750253556746,"stop":1750253562562,"duration":5816},"status":"passed","severity":"normal"},{"uid":"311909f1f9bb172e","name":"Отправка пустой формы","time":{"start":1750253629833,"stop":1750253631616,"duration":1783},"status":"passed","severity":"normal"},{"uid":"1e1a6ccd54582ad8","name":"Несуществующий email","time":{"start":1750253584291,"stop":1750253591595,"duration":7304},"status":"passed","severity":"normal"},{"uid":"3f0e10c74637e3d3","name":"Неверный пароль","time":{"start":1750253583944,"stop":1750253591152,"duration":7208},"status":"passed","severity":"normal"},{"uid":"d84d93cab9b2d9bf","name":"Регистр в email (User@test.com ≠ user@test.com)","time":{"start":1750253543998,"stop":1750253554549,"duration":10551},"status":"passed","severity":"normal"},{"uid":"6962b06e4eb06b10","name":"get started link","time":{"start":1750253539580,"stop":1750253579575,"duration":39995},"status":"broken","severity":"normal"},{"uid":"94f1b1ff67f3d4b2","name":"Пароли не совпадают","time":{"start":1750253601557,"stop":1750253604956,"duration":3399},"status":"passed","severity":"normal"},{"uid":"de38ce213e0340ea","name":"Переход по ссылке \"Забыли пароль?\"","time":{"start":1750253539582,"stop":1750253541712,"duration":2130},"status":"passed","severity":"normal"},{"uid":"b47108b604f86692","name":"Неверный пароль","time":{"start":1750253541844,"stop":1750253543782,"duration":1938},"status":"passed","severity":"normal"},{"uid":"7bd365bab41d410d","name":"Успешная регистрация нового пользователя","time":{"start":1750253611748,"stop":1750253620699,"duration":8951},"status":"passed","severity":"normal"},{"uid":"f32fd3da60726a1e","name":"Некорректное имя и фамилия (слишком длинные)","time":{"start":1750253604406,"stop":1750253611801,"duration":7395},"status":"passed","severity":"normal"},{"uid":"74ce0bc363de24e3","name":"Только email без пароля","time":{"start":1750253620373,"stop":1750253625769,"duration":5396},"status":"passed","severity":"normal"}] \ No newline at end of file diff --git a/allure-report/widgets/history-trend.json b/allure-report/widgets/history-trend.json index 9e6f070..fc06238 100644 --- a/allure-report/widgets/history-trend.json +++ b/allure-report/widgets/history-trend.json @@ -1 +1 @@ -[{"data":{"failed":0,"broken":0,"skipped":0,"passed":57,"unknown":0,"total":57}}] \ No newline at end of file +[{"data":{"failed":0,"broken":1,"skipped":0,"passed":74,"unknown":0,"total":75}}] \ No newline at end of file diff --git a/allure-report/widgets/retry-trend.json b/allure-report/widgets/retry-trend.json index bfe00be..f750365 100644 --- a/allure-report/widgets/retry-trend.json +++ b/allure-report/widgets/retry-trend.json @@ -1 +1 @@ -[{"data":{"run":57,"retry":57}}] \ No newline at end of file +[{"data":{"run":75,"retry":240}}] \ No newline at end of file diff --git a/allure-report/widgets/severity.json b/allure-report/widgets/severity.json index f285111..eef2354 100644 --- a/allure-report/widgets/severity.json +++ b/allure-report/widgets/severity.json @@ -1 +1 @@ -[{"uid":"7b807a335cae4963","name":"Несуществующий email","time":{"start":1750084501499,"stop":1750084502685,"duration":1186},"status":"passed","severity":"normal"},{"uid":"4da4945bee2a6177","name":"Некорректный формат email","time":{"start":1750084507730,"stop":1750084508673,"duration":943},"status":"passed","severity":"normal"},{"uid":"a9ee13342854924d","name":"Некорректный новый пароль","time":{"start":1750084509235,"stop":1750084510626,"duration":1391},"status":"passed","severity":"normal"},{"uid":"703a2301ffdc2da7","name":"Неверный код подтверждения","time":{"start":1750084509104,"stop":1750084510143,"duration":1039},"status":"passed","severity":"normal"},{"uid":"731f29d77f45de06","name":"has title","time":{"start":1750084487580,"stop":1750084490628,"duration":3048},"status":"passed","severity":"normal"},{"uid":"1f34f20dd4a0d9fd","name":"Неверный пароль","time":{"start":1750084489259,"stop":1750084490492,"duration":1233},"status":"passed","severity":"normal"},{"uid":"9059b807844ecd29","name":"Только email без пароля","time":{"start":1750084507616,"stop":1750084508347,"duration":731},"status":"passed","severity":"normal"},{"uid":"1aae5dc9a4d21981","name":"Некорректный формат email","time":{"start":1750084490746,"stop":1750084491640,"duration":894},"status":"passed","severity":"normal"},{"uid":"a2b4235c46265be0","name":"Оба поля пустые","time":{"start":1750084506701,"stop":1750084507952,"duration":1251},"status":"passed","severity":"normal"},{"uid":"995bb2612eda65c","name":"get started link","time":{"start":1750084504688,"stop":1750084506422,"duration":1734},"status":"passed","severity":"normal"},{"uid":"9e16f68655df37d3","name":"Пользователь должен успешно залогиниться с валидными данными","time":{"start":1750084508128,"stop":1750084509091,"duration":963},"status":"passed","severity":"normal"},{"uid":"2f8af4d67d869f1","name":"Переключатель видимости пароля показывает и скрывает ввод","time":{"start":1750084508352,"stop":1750084509225,"duration":873},"status":"passed","severity":"normal"},{"uid":"8af42ae3367ca0d6","name":"Некорректный новый пароль","time":{"start":1750084501747,"stop":1750084503402,"duration":1655},"status":"passed","severity":"normal"},{"uid":"8d0ccd1c875a97cc","name":"Пользователь успешно восстанавливает пароль","time":{"start":1750084510151,"stop":1750084511331,"duration":1180},"status":"passed","severity":"normal"},{"uid":"e94724f7c9383d0e","name":"get started link","time":{"start":1750084494460,"stop":1750084496622,"duration":2162},"status":"passed","severity":"normal"},{"uid":"219f17571c2d2715","name":"Только email без пароля","time":{"start":1750084490528,"stop":1750084491353,"duration":825},"status":"passed","severity":"normal"},{"uid":"9ed8b38ec7c4a34b","name":"Пароли не совпадают","time":{"start":1750084509765,"stop":1750084510859,"duration":1094},"status":"passed","severity":"normal"},{"uid":"5c52ce3f42b81329","name":"Пользователь должен успешно залогиниться с валидными данными","time":{"start":1750084491243,"stop":1750084492069,"duration":826},"status":"passed","severity":"normal"},{"uid":"f0ec6d6d628046ac","name":"Оба поля пустые","time":{"start":1750084498792,"stop":1750084500139,"duration":1347},"status":"passed","severity":"normal"},{"uid":"96736297720c2c0d","name":"Пустое поле \"Повторите пароль\"","time":{"start":1750084492375,"stop":1750084493870,"duration":1495},"status":"passed","severity":"normal"},{"uid":"a53cc3de606dc5ae","name":"Переход по ссылке \"Забыли пароль?\"","time":{"start":1750084494465,"stop":1750084496561,"duration":2096},"status":"passed","severity":"normal"},{"uid":"b714c3ef6b1955c5","name":"get started link","time":{"start":1750084487579,"stop":1750084488883,"duration":1304},"status":"passed","severity":"normal"},{"uid":"88a8af1bf7652c0e","name":"Неверный пароль","time":{"start":1750084497996,"stop":1750084499294,"duration":1298},"status":"passed","severity":"normal"},{"uid":"c9901a9937a7b7a5","name":"Переход по ссылке \"Зарегистрируйтесь\"","time":{"start":1750084506996,"stop":1750084507961,"duration":965},"status":"passed","severity":"normal"},{"uid":"1f2ff10db5665418","name":"Пустое поле \"Повторите пароль\"","time":{"start":1750084509447,"stop":1750084510516,"duration":1069},"status":"passed","severity":"normal"},{"uid":"749fb76346883a7d","name":"Некорректный формат email","time":{"start":1750084499796,"stop":1750084501311,"duration":1515},"status":"passed","severity":"normal"},{"uid":"f7bfbf67a45ab3ec","name":"has title","time":{"start":1750084494460,"stop":1750084496600,"duration":2140},"status":"passed","severity":"normal"},{"uid":"98e3f9bd5b0da70e","name":"Регистр в email (User@test.com ≠ user@test.com)","time":{"start":1750084500111,"stop":1750084501485,"duration":1374},"status":"passed","severity":"normal"},{"uid":"13a3c47523dc168e","name":"has title","time":{"start":1750084504438,"stop":1750084505941,"duration":1503},"status":"passed","severity":"normal"},{"uid":"e8ebfdb5511bffc3","name":"Некорректный email (формат)","time":{"start":1750084508679,"stop":1750084509441,"duration":762},"status":"passed","severity":"normal"},{"uid":"287ea007721245b5","name":"Регистр в email (User@test.com ≠ user@test.com)","time":{"start":1750084491115,"stop":1750084492165,"duration":1050},"status":"passed","severity":"normal"},{"uid":"589b172d059c0837","name":"Только email без пароля","time":{"start":1750084499301,"stop":1750084500455,"duration":1154},"status":"passed","severity":"normal"},{"uid":"f6b2716194c4ce74","name":"Несуществующий email","time":{"start":1750084498297,"stop":1750084500105,"duration":1808},"status":"passed","severity":"normal"},{"uid":"909368716fad6c28","name":"Пользователь должен успешно залогиниться с валидными данными","time":{"start":1750084500146,"stop":1750084501725,"duration":1579},"status":"passed","severity":"normal"},{"uid":"c0406bead53d77ca","name":"Регистр в email (User@test.com ≠ user@test.com)","time":{"start":1750084507958,"stop":1750084508862,"duration":904},"status":"passed","severity":"normal"},{"uid":"1bf14a52b790d91","name":"Неверный код подтверждения","time":{"start":1750084501594,"stop":1750084503368,"duration":1774},"status":"passed","severity":"normal"},{"uid":"c7a1902ba1108ba2","name":"Некорректный email (формат)","time":{"start":1750084501326,"stop":1750084502338,"duration":1012},"status":"passed","severity":"normal"},{"uid":"34179ea7ef46fc56","name":"Переход по ссылке \"Зарегистрируйтесь\"","time":{"start":1750084494915,"stop":1750084497374,"duration":2459},"status":"passed","severity":"normal"},{"uid":"159330e44b573ebb","name":"Пароли не совпадают","time":{"start":1750084502694,"stop":1750084504377,"duration":1683},"status":"passed","severity":"normal"},{"uid":"f5ffdd03c44055b1","name":"Несуществующий email","time":{"start":1750084489363,"stop":1750084490743,"duration":1380},"status":"passed","severity":"normal"},{"uid":"ce94b9aa72086b4e","name":"Несуществующий email","time":{"start":1750084506686,"stop":1750084507723,"duration":1037},"status":"passed","severity":"normal"},{"uid":"c82bf9b727e4250d","name":"Переключатель видимости пароля показывает и скрывает ввод","time":{"start":1750084491357,"stop":1750084492371,"duration":1014},"status":"passed","severity":"normal"},{"uid":"922c07477f21c047","name":"Пользователь успешно восстанавливает пароль","time":{"start":1750084503378,"stop":1750084505830,"duration":2452},"status":"passed","severity":"normal"},{"uid":"e3d2684b480ff47b","name":"Неверный код подтверждения","time":{"start":1750084492172,"stop":1750084493410,"duration":1238},"status":"passed","severity":"normal"},{"uid":"701a94631e81e6af","name":"Некорректный email (формат)","time":{"start":1750084491646,"stop":1750084492211,"duration":565},"status":"passed","severity":"normal"},{"uid":"3bba1028b851bbbc","name":"Переключатель видимости пароля показывает и скрывает ввод","time":{"start":1750084500466,"stop":1750084501581,"duration":1115},"status":"passed","severity":"normal"},{"uid":"31dc1d9640018cfc","name":"Переход по ссылке \"Забыли пароль?\"","time":{"start":1750084505493,"stop":1750084506516,"duration":1023},"status":"passed","severity":"normal"},{"uid":"9c1576c7213cf7a9","name":"Пользователь успешно восстанавливает пароль","time":{"start":1750084493416,"stop":1750084494507,"duration":1091},"status":"passed","severity":"normal"},{"uid":"accf5a2fef71e751","name":"Переход по ссылке \"Забыли пароль?\"","time":{"start":1750084487578,"stop":1750084490119,"duration":2541},"status":"passed","severity":"normal"},{"uid":"31bb4ab4326f6487","name":"Переход по ссылке \"Зарегистрируйтесь\"","time":{"start":1750084487577,"stop":1750084488773,"duration":1196},"status":"passed","severity":"normal"},{"uid":"a1fd8ee0914c6a57","name":"Несуществующий email","time":{"start":1750084492074,"stop":1750084492970,"duration":896},"status":"passed","severity":"normal"},{"uid":"d30e1a8a947541fc","name":"Неверный пароль","time":{"start":1750084506454,"stop":1750084507609,"duration":1155},"status":"passed","severity":"normal"},{"uid":"e07c24690f801b74","name":"Некорректный новый пароль","time":{"start":1750084492220,"stop":1750084493759,"duration":1539},"status":"passed","severity":"normal"},{"uid":"b20bbc8741046798","name":"Пароли не совпадают","time":{"start":1750084492974,"stop":1750084493874,"duration":900},"status":"passed","severity":"normal"},{"uid":"f7a702fb49f5f201","name":"Оба поля пустые","time":{"start":1750084490497,"stop":1750084491239,"duration":742},"status":"passed","severity":"normal"},{"uid":"127e2567cd7d94f3","name":"Несуществующий email","time":{"start":1750084508872,"stop":1750084509760,"duration":888},"status":"passed","severity":"normal"},{"uid":"2e06dcefaf1e4c31","name":"Пустое поле \"Повторите пароль\"","time":{"start":1750084502343,"stop":1750084503756,"duration":1413},"status":"passed","severity":"normal"}] \ No newline at end of file +[{"uid":"c1ab22b3f9166450","name":"Неверный код подтверждения","time":{"start":1750253556666,"stop":1750253562794,"duration":6128},"status":"passed","severity":"normal"},{"uid":"2b89ce8c9b1ff011","name":"Переход по ссылке \"Зарегистрируйтесь\"","time":{"start":1750253539579,"stop":1750253541710,"duration":2131},"status":"passed","severity":"normal"},{"uid":"de38ce213e0340ea","name":"Переход по ссылке \"Забыли пароль?\"","time":{"start":1750253539582,"stop":1750253541712,"duration":2130},"status":"passed","severity":"normal"},{"uid":"dd3b057d4871238c","name":"Переключатель видимости пароля показывает и скрывает ввод","time":{"start":1750253597973,"stop":1750253599889,"duration":1916},"status":"passed","severity":"normal"},{"uid":"311909f1f9bb172e","name":"Отправка пустой формы","time":{"start":1750253629833,"stop":1750253631616,"duration":1783},"status":"passed","severity":"normal"},{"uid":"85493f33f5b82a23","name":"Несуществующий email","time":{"start":1750253542024,"stop":1750253543977,"duration":1953},"status":"passed","severity":"normal"},{"uid":"6962b06e4eb06b10","name":"get started link","time":{"start":1750253539580,"stop":1750253579575,"duration":39995},"status":"broken","severity":"normal"},{"uid":"e5b2a4ada3cdd147","name":"Некорректный email (формат)","time":{"start":1750253554554,"stop":1750253556742,"duration":2188},"status":"passed","severity":"normal"},{"uid":"2981b57719f478ef","name":"Несуществующий email","time":{"start":1750253627038,"stop":1750253629360,"duration":2322},"status":"passed","severity":"normal"},{"uid":"1c2b927f6a4c2926","name":"Пустое поле \"Повторите пароль\"","time":{"start":1750253562565,"stop":1750253564290,"duration":1725},"status":"passed","severity":"normal"},{"uid":"8554552a459385ed","name":"Некорректный формат email","time":{"start":1750253591599,"stop":1750253598769,"duration":7170},"status":"passed","severity":"normal"},{"uid":"d99021bc0bd45ce9","name":"Неверный пароль","time":{"start":1750253618438,"stop":1750253620369,"duration":1931},"status":"passed","severity":"normal"},{"uid":"43316c0a1abf58ba","name":"Некорректный email формат","time":{"start":1750253569430,"stop":1750253577638,"duration":8208},"status":"passed","severity":"normal"},{"uid":"579b024130132991","name":"Пользователь должен успешно залогиниться с валидными данными","time":{"start":1750253554444,"stop":1750253556270,"duration":1826},"status":"passed","severity":"normal"},{"uid":"7c195f45eccd77f0","name":"Пустое поле \"Повторите пароль\"","time":{"start":1750253628906,"stop":1750253632674,"duration":3768},"status":"passed","severity":"normal"},{"uid":"bfaa389e6b880a54","name":"Слишком длинная должность","time":{"start":1750253631638,"stop":1750253633505,"duration":1867},"status":"passed","severity":"normal"},{"uid":"5d5913a5fa886b55","name":"Пользователь должен успешно залогиниться с валидными данными","time":{"start":1750253592136,"stop":1750253599022,"duration":6886},"status":"passed","severity":"normal"},{"uid":"8b6e30a20f47471a","name":"Некорректное имя и фамилия (слишком длинные)","time":{"start":1750253631208,"stop":1750253633092,"duration":1884},"status":"passed","severity":"normal"},{"uid":"969ce7fb67ee94cb","name":"Переход по ссылке \"Забыли пароль?\"","time":{"start":1750253615927,"stop":1750253618481,"duration":2554},"status":"passed","severity":"normal"},{"uid":"4eebb1230811a3dd","name":"Пароли не совпадают","time":{"start":1750253562798,"stop":1750253569425,"duration":6627},"status":"passed","severity":"normal"},{"uid":"edf7ac0b504065f6","name":"Несуществующий email","time":{"start":1750253556276,"stop":1750253562859,"duration":6583},"status":"passed","severity":"normal"},{"uid":"d202e4c572649d08","name":"Неверный код подтверждения","time":{"start":1750253599029,"stop":1750253601554,"duration":2525},"status":"passed","severity":"normal"},{"uid":"25c5b161e06d93d9","name":"Некорректный email формат","time":{"start":1750253604966,"stop":1750253611362,"duration":6396},"status":"passed","severity":"normal"},{"uid":"3ffdae9c16b02a46","name":"Пользователь успешно восстанавливает пароль","time":{"start":1750253629450,"stop":1750253631204,"duration":1754},"status":"passed","severity":"normal"},{"uid":"348561a89d288bda","name":"Пользователь успешно восстанавливает пароль","time":{"start":1750253562864,"stop":1750253569405,"duration":6541},"status":"passed","severity":"normal"},{"uid":"24d0761a6935af7f","name":"Только email без пароля","time":{"start":1750253591157,"stop":1750253597964,"duration":6807},"status":"passed","severity":"normal"},{"uid":"1ffa1f32ab940059","name":"Успешная регистрация нового пользователя","time":{"start":1750253577624,"stop":1750253579862,"duration":2238},"status":"passed","severity":"normal"},{"uid":"268082d8261ccc76","name":"Некорректный новый пароль","time":{"start":1750253599892,"stop":1750253602241,"duration":2349},"status":"passed","severity":"normal"},{"uid":"f12e99c96967b550","name":"Переход по ссылке \"Зарегистрируйтесь\"","time":{"start":1750253580604,"stop":1750253590440,"duration":9836},"status":"passed","severity":"normal"},{"uid":"bde11e0db442031c","name":"has title","time":{"start":1750253612661,"stop":1750253615520,"duration":2859},"status":"passed","severity":"normal"},{"uid":"ef734132e3fbac4f","name":"Отправка пустой формы","time":{"start":1750253603906,"stop":1750253611740,"duration":7834},"status":"passed","severity":"normal"},{"uid":"a64dad12f676d820","name":"Регистр в email (User@test.com ≠ user@test.com)","time":{"start":1750253621861,"stop":1750253625596,"duration":3735},"status":"passed","severity":"normal"},{"uid":"3d110a427012de38","name":"Переключатель видимости пароля показывает и скрывает ввод","time":{"start":1750253625771,"stop":1750253627417,"duration":1646},"status":"passed","severity":"normal"},{"uid":"9e2f1dea9cfe0b65","name":"has title","time":{"start":1750253578127,"stop":1750253582408,"duration":4281},"status":"passed","severity":"normal"},{"uid":"b47108b604f86692","name":"Неверный пароль","time":{"start":1750253541844,"stop":1750253543782,"duration":1938},"status":"passed","severity":"normal"},{"uid":"de659773fd4e5c6e","name":"Оба поля пустые","time":{"start":1750253585670,"stop":1750253592130,"duration":6460},"status":"passed","severity":"normal"},{"uid":"a59360836ecd582e","name":"Слишком длинное название организации","time":{"start":1750253577607,"stop":1750253579829,"duration":2222},"status":"passed","severity":"normal"},{"uid":"12daddbe908eeb70","name":"Только email без пароля","time":{"start":1750253543785,"stop":1750253554497,"duration":10712},"status":"passed","severity":"normal"},{"uid":"459b4b10daa488e2","name":"Некорректный email формат","time":{"start":1750253631623,"stop":1750253633317,"duration":1694},"status":"passed","severity":"normal"},{"uid":"c7cd56bdce8656af","name":"has title","time":{"start":1750253539581,"stop":1750253541528,"duration":1947},"status":"passed","severity":"normal"},{"uid":"161e58a3f3c0816d","name":"Успешная регистрация нового пользователя","time":{"start":1750253633097,"stop":1750253636457,"duration":3360},"status":"passed","severity":"normal"},{"uid":"41ad93595349c29","name":"Оба поля пустые","time":{"start":1750253620048,"stop":1750253625592,"duration":5544},"status":"passed","severity":"normal"},{"uid":"b8861ed3561357c1","name":"Некорректный формат email","time":{"start":1750253543980,"stop":1750253554437,"duration":10457},"status":"passed","severity":"normal"},{"uid":"8ff2d3069826e842","name":"Некорректный новый пароль","time":{"start":1750253627424,"stop":1750253629445,"duration":2021},"status":"passed","severity":"normal"},{"uid":"94f1b1ff67f3d4b2","name":"Пароли не совпадают","time":{"start":1750253601557,"stop":1750253604956,"duration":3399},"status":"passed","severity":"normal"},{"uid":"f32fd3da60726a1e","name":"Некорректное имя и фамилия (слишком длинные)","time":{"start":1750253604406,"stop":1750253611801,"duration":7395},"status":"passed","severity":"normal"},{"uid":"ddb409ab42c11aa9","name":"Переход по ссылке \"Зарегистрируйтесь\"","time":{"start":1750253616847,"stop":1750253618431,"duration":1584},"status":"passed","severity":"normal"},{"uid":"d8233d7d84131656","name":"Некорректный формат email","time":{"start":1750253621559,"stop":1750253626826,"duration":5267},"status":"passed","severity":"normal"},{"uid":"8364fab107a5383f","name":"Регистр в email (User@test.com ≠ user@test.com)","time":{"start":1750253591861,"stop":1750253598453,"duration":6592},"status":"passed","severity":"normal"},{"uid":"bdfb8cd05c21f618","name":"Оба поля пустые","time":{"start":1750253542026,"stop":1750253543994,"duration":1968},"status":"passed","severity":"normal"},{"uid":"2d6e81b71171ace1","name":"Некорректный email (формат)","time":{"start":1750253598459,"stop":1750253600776,"duration":2317},"status":"passed","severity":"normal"},{"uid":"74ce0bc363de24e3","name":"Только email без пароля","time":{"start":1750253620373,"stop":1750253625769,"duration":5396},"status":"passed","severity":"normal"},{"uid":"4fd8070ee07c07e1","name":"Переключатель видимости пароля показывает и скрывает ввод","time":{"start":1750253554502,"stop":1750253556660,"duration":2158},"status":"passed","severity":"normal"},{"uid":"ffac43d36c488156","name":"Отправка пустой формы","time":{"start":1750253564295,"stop":1750253570263,"duration":5968},"status":"passed","severity":"normal"},{"uid":"c5a5985d074991f8","name":"Пустое поле \"Повторите пароль\"","time":{"start":1750253600779,"stop":1750253603897,"duration":3118},"status":"passed","severity":"normal"},{"uid":"7bd365bab41d410d","name":"Успешная регистрация нового пользователя","time":{"start":1750253611748,"stop":1750253620699,"duration":8951},"status":"passed","severity":"normal"},{"uid":"d449fe499514742d","name":"Некорректное имя и фамилия (слишком длинные)","time":{"start":1750253569409,"stop":1750253577616,"duration":8207},"status":"passed","severity":"normal"},{"uid":"bdebd619900bc3fe","name":"Пользователь успешно восстанавливает пароль","time":{"start":1750253602246,"stop":1750253610240,"duration":7994},"status":"passed","severity":"normal"},{"uid":"47ca0e41ec1ea8fb","name":"Несуществующий email","time":{"start":1750253598775,"stop":1750253604401,"duration":5626},"status":"passed","severity":"normal"},{"uid":"a90b7beaa711f52d","name":"Неверный код подтверждения","time":{"start":1750253627415,"stop":1750253629829,"duration":2414},"status":"passed","severity":"normal"},{"uid":"b804adb591f93bce","name":"Переход по ссылке \"Забыли пароль?\"","time":{"start":1750253580476,"stop":1750253584678,"duration":4202},"status":"passed","severity":"normal"},{"uid":"8ab573c35bfcbb5a","name":"Пользователь должен успешно залогиниться с валидными данными","time":{"start":1750253625598,"stop":1750253627407,"duration":1809},"status":"passed","severity":"normal"},{"uid":"d84d93cab9b2d9bf","name":"Регистр в email (User@test.com ≠ user@test.com)","time":{"start":1750253543998,"stop":1750253554549,"duration":10551},"status":"passed","severity":"normal"},{"uid":"f858e1d3e4667ccb","name":"Некорректный email (формат)","time":{"start":1750253625776,"stop":1750253628901,"duration":3125},"status":"passed","severity":"normal"},{"uid":"3f0e10c74637e3d3","name":"Неверный пароль","time":{"start":1750253583944,"stop":1750253591152,"duration":7208},"status":"passed","severity":"normal"},{"uid":"1e1a6ccd54582ad8","name":"Несуществующий email","time":{"start":1750253584291,"stop":1750253591595,"duration":7304},"status":"passed","severity":"normal"},{"uid":"7be5c1dfc4d42552","name":"get started link","time":{"start":1750253613514,"stop":1750253616668,"duration":3154},"status":"passed","severity":"normal"},{"uid":"5d12a7641d21519b","name":"Пароли не совпадают","time":{"start":1750253629369,"stop":1750253631627,"duration":2258},"status":"passed","severity":"normal"},{"uid":"d6ec22530a71c4d6","name":"Слишком длинное название организации","time":{"start":1750253611365,"stop":1750253620996,"duration":9631},"status":"passed","severity":"normal"},{"uid":"b6cf932c7feaf975","name":"Слишком длинная должность","time":{"start":1750253610248,"stop":1750253612680,"duration":2432},"status":"passed","severity":"normal"},{"uid":"c989d1690bcfa46f","name":"Некорректный новый пароль","time":{"start":1750253556746,"stop":1750253562562,"duration":5816},"status":"passed","severity":"normal"},{"uid":"1a3b3ab485523c37","name":"Слишком длинное название организации","time":{"start":1750253632679,"stop":1750253634953,"duration":2274},"status":"passed","severity":"normal"},{"uid":"716b6c73ce6c62ba","name":"Несуществующий email","time":{"start":1750253618487,"stop":1750253620044,"duration":1557},"status":"passed","severity":"normal"},{"uid":"9dbd22211a852adb","name":"get started link","time":{"start":1750253580470,"stop":1750253583690,"duration":3220},"status":"passed","severity":"normal"},{"uid":"1aa50af46a2c6c85","name":"Слишком длинная должность","time":{"start":1750253570265,"stop":1750253577600,"duration":7335},"status":"passed","severity":"normal"}] \ No newline at end of file diff --git a/allure-report/widgets/status-chart.json b/allure-report/widgets/status-chart.json index 09a8ef9..b20925e 100644 --- a/allure-report/widgets/status-chart.json +++ b/allure-report/widgets/status-chart.json @@ -1 +1 @@ -[{"uid":"d30e1a8a947541fc","name":"Неверный пароль","time":{"start":1750084506454,"stop":1750084507609,"duration":1155},"status":"passed","severity":"normal"},{"uid":"a53cc3de606dc5ae","name":"Переход по ссылке \"Забыли пароль?\"","time":{"start":1750084494465,"stop":1750084496561,"duration":2096},"status":"passed","severity":"normal"},{"uid":"e94724f7c9383d0e","name":"get started link","time":{"start":1750084494460,"stop":1750084496622,"duration":2162},"status":"passed","severity":"normal"},{"uid":"b714c3ef6b1955c5","name":"get started link","time":{"start":1750084487579,"stop":1750084488883,"duration":1304},"status":"passed","severity":"normal"},{"uid":"1bf14a52b790d91","name":"Неверный код подтверждения","time":{"start":1750084501594,"stop":1750084503368,"duration":1774},"status":"passed","severity":"normal"},{"uid":"701a94631e81e6af","name":"Некорректный email (формат)","time":{"start":1750084491646,"stop":1750084492211,"duration":565},"status":"passed","severity":"normal"},{"uid":"589b172d059c0837","name":"Только email без пароля","time":{"start":1750084499301,"stop":1750084500455,"duration":1154},"status":"passed","severity":"normal"},{"uid":"accf5a2fef71e751","name":"Переход по ссылке \"Забыли пароль?\"","time":{"start":1750084487578,"stop":1750084490119,"duration":2541},"status":"passed","severity":"normal"},{"uid":"b20bbc8741046798","name":"Пароли не совпадают","time":{"start":1750084492974,"stop":1750084493874,"duration":900},"status":"passed","severity":"normal"},{"uid":"f7a702fb49f5f201","name":"Оба поля пустые","time":{"start":1750084490497,"stop":1750084491239,"duration":742},"status":"passed","severity":"normal"},{"uid":"c0406bead53d77ca","name":"Регистр в email (User@test.com ≠ user@test.com)","time":{"start":1750084507958,"stop":1750084508862,"duration":904},"status":"passed","severity":"normal"},{"uid":"922c07477f21c047","name":"Пользователь успешно восстанавливает пароль","time":{"start":1750084503378,"stop":1750084505830,"duration":2452},"status":"passed","severity":"normal"},{"uid":"2e06dcefaf1e4c31","name":"Пустое поле \"Повторите пароль\"","time":{"start":1750084502343,"stop":1750084503756,"duration":1413},"status":"passed","severity":"normal"},{"uid":"13a3c47523dc168e","name":"has title","time":{"start":1750084504438,"stop":1750084505941,"duration":1503},"status":"passed","severity":"normal"},{"uid":"96736297720c2c0d","name":"Пустое поле \"Повторите пароль\"","time":{"start":1750084492375,"stop":1750084493870,"duration":1495},"status":"passed","severity":"normal"},{"uid":"31bb4ab4326f6487","name":"Переход по ссылке \"Зарегистрируйтесь\"","time":{"start":1750084487577,"stop":1750084488773,"duration":1196},"status":"passed","severity":"normal"},{"uid":"1f2ff10db5665418","name":"Пустое поле \"Повторите пароль\"","time":{"start":1750084509447,"stop":1750084510516,"duration":1069},"status":"passed","severity":"normal"},{"uid":"127e2567cd7d94f3","name":"Несуществующий email","time":{"start":1750084508872,"stop":1750084509760,"duration":888},"status":"passed","severity":"normal"},{"uid":"749fb76346883a7d","name":"Некорректный формат email","time":{"start":1750084499796,"stop":1750084501311,"duration":1515},"status":"passed","severity":"normal"},{"uid":"98e3f9bd5b0da70e","name":"Регистр в email (User@test.com ≠ user@test.com)","time":{"start":1750084500111,"stop":1750084501485,"duration":1374},"status":"passed","severity":"normal"},{"uid":"f0ec6d6d628046ac","name":"Оба поля пустые","time":{"start":1750084498792,"stop":1750084500139,"duration":1347},"status":"passed","severity":"normal"},{"uid":"1f34f20dd4a0d9fd","name":"Неверный пароль","time":{"start":1750084489259,"stop":1750084490492,"duration":1233},"status":"passed","severity":"normal"},{"uid":"9c1576c7213cf7a9","name":"Пользователь успешно восстанавливает пароль","time":{"start":1750084493416,"stop":1750084494507,"duration":1091},"status":"passed","severity":"normal"},{"uid":"e8ebfdb5511bffc3","name":"Некорректный email (формат)","time":{"start":1750084508679,"stop":1750084509441,"duration":762},"status":"passed","severity":"normal"},{"uid":"9e16f68655df37d3","name":"Пользователь должен успешно залогиниться с валидными данными","time":{"start":1750084508128,"stop":1750084509091,"duration":963},"status":"passed","severity":"normal"},{"uid":"909368716fad6c28","name":"Пользователь должен успешно залогиниться с валидными данными","time":{"start":1750084500146,"stop":1750084501725,"duration":1579},"status":"passed","severity":"normal"},{"uid":"703a2301ffdc2da7","name":"Неверный код подтверждения","time":{"start":1750084509104,"stop":1750084510143,"duration":1039},"status":"passed","severity":"normal"},{"uid":"4da4945bee2a6177","name":"Некорректный формат email","time":{"start":1750084507730,"stop":1750084508673,"duration":943},"status":"passed","severity":"normal"},{"uid":"1aae5dc9a4d21981","name":"Некорректный формат email","time":{"start":1750084490746,"stop":1750084491640,"duration":894},"status":"passed","severity":"normal"},{"uid":"8d0ccd1c875a97cc","name":"Пользователь успешно восстанавливает пароль","time":{"start":1750084510151,"stop":1750084511331,"duration":1180},"status":"passed","severity":"normal"},{"uid":"9059b807844ecd29","name":"Только email без пароля","time":{"start":1750084507616,"stop":1750084508347,"duration":731},"status":"passed","severity":"normal"},{"uid":"88a8af1bf7652c0e","name":"Неверный пароль","time":{"start":1750084497996,"stop":1750084499294,"duration":1298},"status":"passed","severity":"normal"},{"uid":"a1fd8ee0914c6a57","name":"Несуществующий email","time":{"start":1750084492074,"stop":1750084492970,"duration":896},"status":"passed","severity":"normal"},{"uid":"2f8af4d67d869f1","name":"Переключатель видимости пароля показывает и скрывает ввод","time":{"start":1750084508352,"stop":1750084509225,"duration":873},"status":"passed","severity":"normal"},{"uid":"995bb2612eda65c","name":"get started link","time":{"start":1750084504688,"stop":1750084506422,"duration":1734},"status":"passed","severity":"normal"},{"uid":"219f17571c2d2715","name":"Только email без пароля","time":{"start":1750084490528,"stop":1750084491353,"duration":825},"status":"passed","severity":"normal"},{"uid":"5c52ce3f42b81329","name":"Пользователь должен успешно залогиниться с валидными данными","time":{"start":1750084491243,"stop":1750084492069,"duration":826},"status":"passed","severity":"normal"},{"uid":"9ed8b38ec7c4a34b","name":"Пароли не совпадают","time":{"start":1750084509765,"stop":1750084510859,"duration":1094},"status":"passed","severity":"normal"},{"uid":"e07c24690f801b74","name":"Некорректный новый пароль","time":{"start":1750084492220,"stop":1750084493759,"duration":1539},"status":"passed","severity":"normal"},{"uid":"731f29d77f45de06","name":"has title","time":{"start":1750084487580,"stop":1750084490628,"duration":3048},"status":"passed","severity":"normal"},{"uid":"8af42ae3367ca0d6","name":"Некорректный новый пароль","time":{"start":1750084501747,"stop":1750084503402,"duration":1655},"status":"passed","severity":"normal"},{"uid":"f6b2716194c4ce74","name":"Несуществующий email","time":{"start":1750084498297,"stop":1750084500105,"duration":1808},"status":"passed","severity":"normal"},{"uid":"287ea007721245b5","name":"Регистр в email (User@test.com ≠ user@test.com)","time":{"start":1750084491115,"stop":1750084492165,"duration":1050},"status":"passed","severity":"normal"},{"uid":"159330e44b573ebb","name":"Пароли не совпадают","time":{"start":1750084502694,"stop":1750084504377,"duration":1683},"status":"passed","severity":"normal"},{"uid":"c9901a9937a7b7a5","name":"Переход по ссылке \"Зарегистрируйтесь\"","time":{"start":1750084506996,"stop":1750084507961,"duration":965},"status":"passed","severity":"normal"},{"uid":"ce94b9aa72086b4e","name":"Несуществующий email","time":{"start":1750084506686,"stop":1750084507723,"duration":1037},"status":"passed","severity":"normal"},{"uid":"f5ffdd03c44055b1","name":"Несуществующий email","time":{"start":1750084489363,"stop":1750084490743,"duration":1380},"status":"passed","severity":"normal"},{"uid":"c7a1902ba1108ba2","name":"Некорректный email (формат)","time":{"start":1750084501326,"stop":1750084502338,"duration":1012},"status":"passed","severity":"normal"},{"uid":"a9ee13342854924d","name":"Некорректный новый пароль","time":{"start":1750084509235,"stop":1750084510626,"duration":1391},"status":"passed","severity":"normal"},{"uid":"a2b4235c46265be0","name":"Оба поля пустые","time":{"start":1750084506701,"stop":1750084507952,"duration":1251},"status":"passed","severity":"normal"},{"uid":"34179ea7ef46fc56","name":"Переход по ссылке \"Зарегистрируйтесь\"","time":{"start":1750084494915,"stop":1750084497374,"duration":2459},"status":"passed","severity":"normal"},{"uid":"31dc1d9640018cfc","name":"Переход по ссылке \"Забыли пароль?\"","time":{"start":1750084505493,"stop":1750084506516,"duration":1023},"status":"passed","severity":"normal"},{"uid":"7b807a335cae4963","name":"Несуществующий email","time":{"start":1750084501499,"stop":1750084502685,"duration":1186},"status":"passed","severity":"normal"},{"uid":"e3d2684b480ff47b","name":"Неверный код подтверждения","time":{"start":1750084492172,"stop":1750084493410,"duration":1238},"status":"passed","severity":"normal"},{"uid":"c82bf9b727e4250d","name":"Переключатель видимости пароля показывает и скрывает ввод","time":{"start":1750084491357,"stop":1750084492371,"duration":1014},"status":"passed","severity":"normal"},{"uid":"3bba1028b851bbbc","name":"Переключатель видимости пароля показывает и скрывает ввод","time":{"start":1750084500466,"stop":1750084501581,"duration":1115},"status":"passed","severity":"normal"},{"uid":"f7bfbf67a45ab3ec","name":"has title","time":{"start":1750084494460,"stop":1750084496600,"duration":2140},"status":"passed","severity":"normal"}] \ No newline at end of file +[{"uid":"1ffa1f32ab940059","name":"Успешная регистрация нового пользователя","time":{"start":1750253577624,"stop":1750253579862,"duration":2238},"status":"passed","severity":"normal"},{"uid":"716b6c73ce6c62ba","name":"Несуществующий email","time":{"start":1750253618487,"stop":1750253620044,"duration":1557},"status":"passed","severity":"normal"},{"uid":"4fd8070ee07c07e1","name":"Переключатель видимости пароля показывает и скрывает ввод","time":{"start":1750253554502,"stop":1750253556660,"duration":2158},"status":"passed","severity":"normal"},{"uid":"47ca0e41ec1ea8fb","name":"Несуществующий email","time":{"start":1750253598775,"stop":1750253604401,"duration":5626},"status":"passed","severity":"normal"},{"uid":"d449fe499514742d","name":"Некорректное имя и фамилия (слишком длинные)","time":{"start":1750253569409,"stop":1750253577616,"duration":8207},"status":"passed","severity":"normal"},{"uid":"a59360836ecd582e","name":"Слишком длинное название организации","time":{"start":1750253577607,"stop":1750253579829,"duration":2222},"status":"passed","severity":"normal"},{"uid":"c7cd56bdce8656af","name":"has title","time":{"start":1750253539581,"stop":1750253541528,"duration":1947},"status":"passed","severity":"normal"},{"uid":"5d12a7641d21519b","name":"Пароли не совпадают","time":{"start":1750253629369,"stop":1750253631627,"duration":2258},"status":"passed","severity":"normal"},{"uid":"161e58a3f3c0816d","name":"Успешная регистрация нового пользователя","time":{"start":1750253633097,"stop":1750253636457,"duration":3360},"status":"passed","severity":"normal"},{"uid":"d99021bc0bd45ce9","name":"Неверный пароль","time":{"start":1750253618438,"stop":1750253620369,"duration":1931},"status":"passed","severity":"normal"},{"uid":"3d110a427012de38","name":"Переключатель видимости пароля показывает и скрывает ввод","time":{"start":1750253625771,"stop":1750253627417,"duration":1646},"status":"passed","severity":"normal"},{"uid":"d6ec22530a71c4d6","name":"Слишком длинное название организации","time":{"start":1750253611365,"stop":1750253620996,"duration":9631},"status":"passed","severity":"normal"},{"uid":"9dbd22211a852adb","name":"get started link","time":{"start":1750253580470,"stop":1750253583690,"duration":3220},"status":"passed","severity":"normal"},{"uid":"a64dad12f676d820","name":"Регистр в email (User@test.com ≠ user@test.com)","time":{"start":1750253621861,"stop":1750253625596,"duration":3735},"status":"passed","severity":"normal"},{"uid":"1aa50af46a2c6c85","name":"Слишком длинная должность","time":{"start":1750253570265,"stop":1750253577600,"duration":7335},"status":"passed","severity":"normal"},{"uid":"f12e99c96967b550","name":"Переход по ссылке \"Зарегистрируйтесь\"","time":{"start":1750253580604,"stop":1750253590440,"duration":9836},"status":"passed","severity":"normal"},{"uid":"ddb409ab42c11aa9","name":"Переход по ссылке \"Зарегистрируйтесь\"","time":{"start":1750253616847,"stop":1750253618431,"duration":1584},"status":"passed","severity":"normal"},{"uid":"e5b2a4ada3cdd147","name":"Некорректный email (формат)","time":{"start":1750253554554,"stop":1750253556742,"duration":2188},"status":"passed","severity":"normal"},{"uid":"1c2b927f6a4c2926","name":"Пустое поле \"Повторите пароль\"","time":{"start":1750253562565,"stop":1750253564290,"duration":1725},"status":"passed","severity":"normal"},{"uid":"25c5b161e06d93d9","name":"Некорректный email формат","time":{"start":1750253604966,"stop":1750253611362,"duration":6396},"status":"passed","severity":"normal"},{"uid":"12daddbe908eeb70","name":"Только email без пароля","time":{"start":1750253543785,"stop":1750253554497,"duration":10712},"status":"passed","severity":"normal"},{"uid":"2b89ce8c9b1ff011","name":"Переход по ссылке \"Зарегистрируйтесь\"","time":{"start":1750253539579,"stop":1750253541710,"duration":2131},"status":"passed","severity":"normal"},{"uid":"d202e4c572649d08","name":"Неверный код подтверждения","time":{"start":1750253599029,"stop":1750253601554,"duration":2525},"status":"passed","severity":"normal"},{"uid":"ef734132e3fbac4f","name":"Отправка пустой формы","time":{"start":1750253603906,"stop":1750253611740,"duration":7834},"status":"passed","severity":"normal"},{"uid":"41ad93595349c29","name":"Оба поля пустые","time":{"start":1750253620048,"stop":1750253625592,"duration":5544},"status":"passed","severity":"normal"},{"uid":"3ffdae9c16b02a46","name":"Пользователь успешно восстанавливает пароль","time":{"start":1750253629450,"stop":1750253631204,"duration":1754},"status":"passed","severity":"normal"},{"uid":"8ab573c35bfcbb5a","name":"Пользователь должен успешно залогиниться с валидными данными","time":{"start":1750253625598,"stop":1750253627407,"duration":1809},"status":"passed","severity":"normal"},{"uid":"b8861ed3561357c1","name":"Некорректный формат email","time":{"start":1750253543980,"stop":1750253554437,"duration":10457},"status":"passed","severity":"normal"},{"uid":"5d5913a5fa886b55","name":"Пользователь должен успешно залогиниться с валидными данными","time":{"start":1750253592136,"stop":1750253599022,"duration":6886},"status":"passed","severity":"normal"},{"uid":"8b6e30a20f47471a","name":"Некорректное имя и фамилия (слишком длинные)","time":{"start":1750253631208,"stop":1750253633092,"duration":1884},"status":"passed","severity":"normal"},{"uid":"bdfb8cd05c21f618","name":"Оба поля пустые","time":{"start":1750253542026,"stop":1750253543994,"duration":1968},"status":"passed","severity":"normal"},{"uid":"85493f33f5b82a23","name":"Несуществующий email","time":{"start":1750253542024,"stop":1750253543977,"duration":1953},"status":"passed","severity":"normal"},{"uid":"459b4b10daa488e2","name":"Некорректный email формат","time":{"start":1750253631623,"stop":1750253633317,"duration":1694},"status":"passed","severity":"normal"},{"uid":"2981b57719f478ef","name":"Несуществующий email","time":{"start":1750253627038,"stop":1750253629360,"duration":2322},"status":"passed","severity":"normal"},{"uid":"9e2f1dea9cfe0b65","name":"has title","time":{"start":1750253578127,"stop":1750253582408,"duration":4281},"status":"passed","severity":"normal"},{"uid":"ffac43d36c488156","name":"Отправка пустой формы","time":{"start":1750253564295,"stop":1750253570263,"duration":5968},"status":"passed","severity":"normal"},{"uid":"de659773fd4e5c6e","name":"Оба поля пустые","time":{"start":1750253585670,"stop":1750253592130,"duration":6460},"status":"passed","severity":"normal"},{"uid":"d8233d7d84131656","name":"Некорректный формат email","time":{"start":1750253621559,"stop":1750253626826,"duration":5267},"status":"passed","severity":"normal"},{"uid":"2d6e81b71171ace1","name":"Некорректный email (формат)","time":{"start":1750253598459,"stop":1750253600776,"duration":2317},"status":"passed","severity":"normal"},{"uid":"348561a89d288bda","name":"Пользователь успешно восстанавливает пароль","time":{"start":1750253562864,"stop":1750253569405,"duration":6541},"status":"passed","severity":"normal"},{"uid":"24d0761a6935af7f","name":"Только email без пароля","time":{"start":1750253591157,"stop":1750253597964,"duration":6807},"status":"passed","severity":"normal"},{"uid":"a90b7beaa711f52d","name":"Неверный код подтверждения","time":{"start":1750253627415,"stop":1750253629829,"duration":2414},"status":"passed","severity":"normal"},{"uid":"b804adb591f93bce","name":"Переход по ссылке \"Забыли пароль?\"","time":{"start":1750253580476,"stop":1750253584678,"duration":4202},"status":"passed","severity":"normal"},{"uid":"1a3b3ab485523c37","name":"Слишком длинное название организации","time":{"start":1750253632679,"stop":1750253634953,"duration":2274},"status":"passed","severity":"normal"},{"uid":"dd3b057d4871238c","name":"Переключатель видимости пароля показывает и скрывает ввод","time":{"start":1750253597973,"stop":1750253599889,"duration":1916},"status":"passed","severity":"normal"},{"uid":"579b024130132991","name":"Пользователь должен успешно залогиниться с валидными данными","time":{"start":1750253554444,"stop":1750253556270,"duration":1826},"status":"passed","severity":"normal"},{"uid":"43316c0a1abf58ba","name":"Некорректный email формат","time":{"start":1750253569430,"stop":1750253577638,"duration":8208},"status":"passed","severity":"normal"},{"uid":"bdebd619900bc3fe","name":"Пользователь успешно восстанавливает пароль","time":{"start":1750253602246,"stop":1750253610240,"duration":7994},"status":"passed","severity":"normal"},{"uid":"f858e1d3e4667ccb","name":"Некорректный email (формат)","time":{"start":1750253625776,"stop":1750253628901,"duration":3125},"status":"passed","severity":"normal"},{"uid":"bde11e0db442031c","name":"has title","time":{"start":1750253612661,"stop":1750253615520,"duration":2859},"status":"passed","severity":"normal"},{"uid":"c1ab22b3f9166450","name":"Неверный код подтверждения","time":{"start":1750253556666,"stop":1750253562794,"duration":6128},"status":"passed","severity":"normal"},{"uid":"4eebb1230811a3dd","name":"Пароли не совпадают","time":{"start":1750253562798,"stop":1750253569425,"duration":6627},"status":"passed","severity":"normal"},{"uid":"7c195f45eccd77f0","name":"Пустое поле \"Повторите пароль\"","time":{"start":1750253628906,"stop":1750253632674,"duration":3768},"status":"passed","severity":"normal"},{"uid":"268082d8261ccc76","name":"Некорректный новый пароль","time":{"start":1750253599892,"stop":1750253602241,"duration":2349},"status":"passed","severity":"normal"},{"uid":"969ce7fb67ee94cb","name":"Переход по ссылке \"Забыли пароль?\"","time":{"start":1750253615927,"stop":1750253618481,"duration":2554},"status":"passed","severity":"normal"},{"uid":"c5a5985d074991f8","name":"Пустое поле \"Повторите пароль\"","time":{"start":1750253600779,"stop":1750253603897,"duration":3118},"status":"passed","severity":"normal"},{"uid":"edf7ac0b504065f6","name":"Несуществующий email","time":{"start":1750253556276,"stop":1750253562859,"duration":6583},"status":"passed","severity":"normal"},{"uid":"bfaa389e6b880a54","name":"Слишком длинная должность","time":{"start":1750253631638,"stop":1750253633505,"duration":1867},"status":"passed","severity":"normal"},{"uid":"8554552a459385ed","name":"Некорректный формат email","time":{"start":1750253591599,"stop":1750253598769,"duration":7170},"status":"passed","severity":"normal"},{"uid":"7be5c1dfc4d42552","name":"get started link","time":{"start":1750253613514,"stop":1750253616668,"duration":3154},"status":"passed","severity":"normal"},{"uid":"8364fab107a5383f","name":"Регистр в email (User@test.com ≠ user@test.com)","time":{"start":1750253591861,"stop":1750253598453,"duration":6592},"status":"passed","severity":"normal"},{"uid":"b6cf932c7feaf975","name":"Слишком длинная должность","time":{"start":1750253610248,"stop":1750253612680,"duration":2432},"status":"passed","severity":"normal"},{"uid":"8ff2d3069826e842","name":"Некорректный новый пароль","time":{"start":1750253627424,"stop":1750253629445,"duration":2021},"status":"passed","severity":"normal"},{"uid":"c989d1690bcfa46f","name":"Некорректный новый пароль","time":{"start":1750253556746,"stop":1750253562562,"duration":5816},"status":"passed","severity":"normal"},{"uid":"311909f1f9bb172e","name":"Отправка пустой формы","time":{"start":1750253629833,"stop":1750253631616,"duration":1783},"status":"passed","severity":"normal"},{"uid":"1e1a6ccd54582ad8","name":"Несуществующий email","time":{"start":1750253584291,"stop":1750253591595,"duration":7304},"status":"passed","severity":"normal"},{"uid":"3f0e10c74637e3d3","name":"Неверный пароль","time":{"start":1750253583944,"stop":1750253591152,"duration":7208},"status":"passed","severity":"normal"},{"uid":"d84d93cab9b2d9bf","name":"Регистр в email (User@test.com ≠ user@test.com)","time":{"start":1750253543998,"stop":1750253554549,"duration":10551},"status":"passed","severity":"normal"},{"uid":"6962b06e4eb06b10","name":"get started link","time":{"start":1750253539580,"stop":1750253579575,"duration":39995},"status":"broken","severity":"normal"},{"uid":"94f1b1ff67f3d4b2","name":"Пароли не совпадают","time":{"start":1750253601557,"stop":1750253604956,"duration":3399},"status":"passed","severity":"normal"},{"uid":"de38ce213e0340ea","name":"Переход по ссылке \"Забыли пароль?\"","time":{"start":1750253539582,"stop":1750253541712,"duration":2130},"status":"passed","severity":"normal"},{"uid":"b47108b604f86692","name":"Неверный пароль","time":{"start":1750253541844,"stop":1750253543782,"duration":1938},"status":"passed","severity":"normal"},{"uid":"7bd365bab41d410d","name":"Успешная регистрация нового пользователя","time":{"start":1750253611748,"stop":1750253620699,"duration":8951},"status":"passed","severity":"normal"},{"uid":"f32fd3da60726a1e","name":"Некорректное имя и фамилия (слишком длинные)","time":{"start":1750253604406,"stop":1750253611801,"duration":7395},"status":"passed","severity":"normal"},{"uid":"74ce0bc363de24e3","name":"Только email без пароля","time":{"start":1750253620373,"stop":1750253625769,"duration":5396},"status":"passed","severity":"normal"}] \ No newline at end of file diff --git a/allure-report/widgets/suites.json b/allure-report/widgets/suites.json index 2ead460..557bcfb 100644 --- a/allure-report/widgets/suites.json +++ b/allure-report/widgets/suites.json @@ -1 +1 @@ -{"total":3,"items":[{"uid":"36c900977e1d8b81a2c6893cc82bfc01","name":"chromium","statistic":{"failed":0,"broken":0,"skipped":0,"passed":19,"unknown":0,"total":19}},{"uid":"ed39c131db56604842b18253a0c76267","name":"firefox","statistic":{"failed":0,"broken":0,"skipped":0,"passed":19,"unknown":0,"total":19}},{"uid":"44063b3706d66b0d346705a4a77c6704","name":"webkit","statistic":{"failed":0,"broken":0,"skipped":0,"passed":19,"unknown":0,"total":19}}]} \ No newline at end of file +{"total":3,"items":[{"uid":"36c900977e1d8b81a2c6893cc82bfc01","name":"chromium","statistic":{"failed":0,"broken":1,"skipped":0,"passed":24,"unknown":0,"total":25}},{"uid":"ed39c131db56604842b18253a0c76267","name":"firefox","statistic":{"failed":0,"broken":0,"skipped":0,"passed":25,"unknown":0,"total":25}},{"uid":"44063b3706d66b0d346705a4a77c6704","name":"webkit","statistic":{"failed":0,"broken":0,"skipped":0,"passed":25,"unknown":0,"total":25}}]} \ No newline at end of file diff --git a/allure-report/widgets/summary.json b/allure-report/widgets/summary.json index 006cb63..4400711 100644 --- a/allure-report/widgets/summary.json +++ b/allure-report/widgets/summary.json @@ -1 +1 @@ -{"reportName":"Allure Report","testRuns":[],"statistic":{"failed":0,"broken":0,"skipped":0,"passed":57,"unknown":0,"total":57},"time":{"start":1750084487577,"stop":1750084511331,"duration":23754,"minDuration":565,"maxDuration":3048,"sumDuration":75504}} \ No newline at end of file +{"reportName":"Allure Report","testRuns":[],"statistic":{"failed":0,"broken":1,"skipped":0,"passed":74,"unknown":0,"total":75},"time":{"start":1750253539579,"stop":1750253636457,"duration":96878,"minDuration":1557,"maxDuration":39995,"sumDuration":366961}} \ No newline at end of file diff --git a/allure-results/035e9c13-dbd2-4109-8156-c35f37568027-result.json b/allure-results/035e9c13-dbd2-4109-8156-c35f37568027-result.json new file mode 100644 index 0000000..97b477a --- /dev/null +++ b/allure-results/035e9c13-dbd2-4109-8156-c35f37568027-result.json @@ -0,0 +1 @@ +{"uuid":"035e9c13-dbd2-4109-8156-c35f37568027","name":"Несуществующий email","historyId":"c118be77fa2af6f0e0052ec7489ba66c:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252844815,"uuid":"5a41bccf-6dc3-45c5-b91c-aab0c9e837c2","stop":1750252844820}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252844815,"uuid":"a3465b53-e442-4538-ba97-1d4819fb9b9e","stop":1750252844821},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252844821,"uuid":"1ac7d1a7-6a62-43a1-b5d3-d00c52132b50","stop":1750252844987}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252844821,"uuid":"5ce510a4-f5f4-4362-a3bb-29b920f77d91","stop":1750252844987}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252844814,"uuid":"f89ecbca-8b76-463c-bc50-a35d1d6b4609","stop":1750252844987},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252844989,"name":"page.goto(/recoverpassword)","uuid":"63f8ab9b-3c23-4c08-8c61-85f9d555f39a","stop":1750252847083},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252847084,"name":"locator.fill(nobody@example.com)","uuid":"01de4d47-6921-41b8-9dd1-ce0c0da73fa9","stop":1750252847116},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252847118,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"4b391a83-5030-42ea-8724-43dbb0df3959","stop":1750252847167},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252847167,"name":"expect.toBeVisible","uuid":"7808afd7-4b95-4d25-95d4-9945b4c90af0","stop":1750252847284},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252847284,"uuid":"bf31e5a1-d18b-4aaf-887d-e0dc26c70608","stop":1750252847284},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252847284,"uuid":"edc84e43-670e-4cb6-b0a3-86bfcf1024b3","stop":1750252847284}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252847284,"uuid":"78133cb7-c9bc-4cd3-9ea5-5d03c048037a","stop":1750252847297}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-1"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"}],"links":[],"start":1750252844811,"testCaseId":"c118be77fa2af6f0e0052ec7489ba66c","fullName":"ui/recovery/recover-negative.spec.ts:15:7","stop":1750252847292} \ No newline at end of file diff --git a/allure-results/036f4b75-5dac-410a-bcf4-01e8ba29ea07-result.json b/allure-results/036f4b75-5dac-410a-bcf4-01e8ba29ea07-result.json new file mode 100644 index 0000000..a021c67 --- /dev/null +++ b/allure-results/036f4b75-5dac-410a-bcf4-01e8ba29ea07-result.json @@ -0,0 +1 @@ +{"uuid":"036f4b75-5dac-410a-bcf4-01e8ba29ea07","name":"Некорректный формат email","historyId":"e5764a911de0175f8f7118313ae14544:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserType.launch","start":1750253621566,"uuid":"4f2a1106-e023-48dd-adac-d10633837ca8","stop":1750253621765}],"attachments":[],"parameters":[],"name":"fixture: browser","start":1750253621563,"uuid":"d02c4651-9bf7-4723-aed4-540975254a8b","stop":1750253621765},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253621766,"uuid":"a08c275c-4c2e-40fd-99c0-88b87d926ae8","stop":1750253621803}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253621765,"uuid":"c92ebe48-76b4-4892-a88f-7937f07fcf99","stop":1750253621807},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253621808,"uuid":"1d9208d2-2eb4-440c-a579-2007735b0a7f","stop":1750253622062}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253621807,"uuid":"2a3c6601-bc58-415b-9c43-88afdbddd6da","stop":1750253622062}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253621560,"uuid":"b75a45e6-0943-4738-b7c3-5e39ea46d938","stop":1750253622062},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253622064,"name":"page.goto(/login/authorization)","uuid":"78ea263b-cb27-47c6-9ac7-2d6171e4452a","stop":1750253626601},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253626603,"name":"locator.fill(invalid-email)","uuid":"fa5c6d8a-35ae-43a8-979e-03ba1639911d","stop":1750253626687},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253626688,"name":"locator.fill(anyPassword123)","uuid":"47d132b4-117f-4da3-81b6-07796c116092","stop":1750253626726},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253626727,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"cd48d54c-1d9b-4592-9259-7c9950181d86","stop":1750253626800},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253626801,"name":"expect.toBeVisible","uuid":"1bcfec86-6445-4337-b898-5c2a01377d17","stop":1750253626829},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253626830,"uuid":"58e8dc0d-dc08-4085-80a1-61ecd52b866d","stop":1750253626830},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253626830,"uuid":"486c1a54-114f-47d1-8a6b-2adb3f78baf3","stop":1750253626830}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253626829,"uuid":"446853d1-0f0a-4edc-8a88-5cf84b2a0e35","stop":1750253627032}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-1"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"}],"links":[],"start":1750253621559,"testCaseId":"e5764a911de0175f8f7118313ae14544","fullName":"ui/login/login.negative.spec.ts:46:7","stop":1750253626826} \ No newline at end of file diff --git a/allure-results/03a31503-9552-435f-b79a-8e7ca300d82f-result.json b/allure-results/03a31503-9552-435f-b79a-8e7ca300d82f-result.json new file mode 100644 index 0000000..0a0a950 --- /dev/null +++ b/allure-results/03a31503-9552-435f-b79a-8e7ca300d82f-result.json @@ -0,0 +1 @@ +{"uuid":"03a31503-9552-435f-b79a-8e7ca300d82f","name":"Неверный пароль","historyId":"500ad758ee2db2bb60aa832fb0abbb94:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252835857,"uuid":"cf27b523-d4c7-4b61-a8fe-8faf92a2afca","stop":1750252835877}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252835857,"uuid":"a5f6768c-4319-4684-ad19-b982edff5493","stop":1750252835877},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252835878,"uuid":"305d331f-a2b6-48e0-843b-7ba027cf8367","stop":1750252835949}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252835877,"uuid":"e6dcdbab-17fd-44f1-9f82-f7a9fe6ff873","stop":1750252835949}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252835855,"uuid":"48b57b17-7976-47bc-834f-1e8f482360c2","stop":1750252835949},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252835950,"name":"page.goto(/login/authorization)","uuid":"7724a4e0-9a4a-4639-8897-65dc31bab20b","stop":1750252841424},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252841426,"name":"locator.fill(autotest@example.com)","uuid":"0d762e29-85d6-4897-8fb9-cb8d1a55afb9","stop":1750252841465},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252841467,"name":"locator.fill(wrongpass)","uuid":"30822097-b031-41f4-a5cd-538e095bab31","stop":1750252841483},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252841484,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"c977abd0-f406-45f5-b7bb-0dc9d57b27f4","stop":1750252841555},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252841556,"name":"expect.toBeVisible","uuid":"5b961411-1a95-4785-be65-1a4d25986b1c","stop":1750252841670},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252841671,"uuid":"c2cdc4d8-90e4-4125-87d2-fa9a43373553","stop":1750252841671},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252841671,"uuid":"be8ce873-cfe1-486a-8dff-47784a29e12f","stop":1750252841671}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252841671,"uuid":"721be696-ed2d-43d6-8408-443f9d2d6db2","stop":1750252841678}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"}],"links":[],"start":1750252835856,"testCaseId":"500ad758ee2db2bb60aa832fb0abbb94","fullName":"ui/login/login.negative.spec.ts:7:7","stop":1750252841676} \ No newline at end of file diff --git a/allure-results/0605bcb9-a633-46ce-8264-fcc39d615874-result.json b/allure-results/0605bcb9-a633-46ce-8264-fcc39d615874-result.json new file mode 100644 index 0000000..65ed5b1 --- /dev/null +++ b/allure-results/0605bcb9-a633-46ce-8264-fcc39d615874-result.json @@ -0,0 +1 @@ +{"uuid":"0605bcb9-a633-46ce-8264-fcc39d615874","name":"Только email без пароля","historyId":"8c67bb2f4fb916157fb6191bbb5e4267:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253591158,"uuid":"a7e3b93a-a118-48d4-a511-df346bf7e08c","stop":1750253591160}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253591157,"uuid":"d99823cd-dea9-4a29-b7af-ffd477478837","stop":1750253591165},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253591166,"uuid":"494000c5-98d9-43f4-8470-8efe6236a4b3","stop":1750253591339}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253591165,"uuid":"ae235e44-73bf-47f3-a809-ea74189b4222","stop":1750253591339}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253591157,"uuid":"ac95181d-ca5b-4bdf-85dd-b37a0d45ddac","stop":1750253591339},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253591340,"name":"page.goto(/login/authorization)","uuid":"771a0fde-8f29-48ed-8b3b-741d3162a5a7","stop":1750253597824},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253597826,"name":"locator.fill(autotest@example.com)","uuid":"d44ac87a-c8d1-431c-8105-9a4fe932cd5d","stop":1750253597856},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253597857,"name":"locator.fill()","uuid":"881848d3-5152-422f-a500-840c358c0084","stop":1750253597870},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253597871,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"1397df57-a1b9-4150-947d-389352a7adea","stop":1750253597926},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253597926,"name":"expect.toBeVisible","uuid":"ad9ebbc9-5ae9-48c5-ace5-71ac1ef806aa","stop":1750253597933},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253597933,"uuid":"19ed969c-55cf-4eb2-a785-ba13196124de","stop":1750253597933},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253597933,"uuid":"949d1870-0245-4e1b-bca8-5b9d3051d792","stop":1750253597933}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253597933,"uuid":"4fa16ea6-41b5-4d68-85a3-e0429566d33f","stop":1750253597965}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"}],"links":[],"start":1750253591157,"testCaseId":"8c67bb2f4fb916157fb6191bbb5e4267","fullName":"ui/login/login.negative.spec.ts:37:7","stop":1750253597964} \ No newline at end of file diff --git a/allure-results/0621f4d3-acf5-46ea-b29d-e732bc74b657-result.json b/allure-results/0621f4d3-acf5-46ea-b29d-e732bc74b657-result.json new file mode 100644 index 0000000..d0ce078 --- /dev/null +++ b/allure-results/0621f4d3-acf5-46ea-b29d-e732bc74b657-result.json @@ -0,0 +1 @@ +{"uuid":"0621f4d3-acf5-46ea-b29d-e732bc74b657","name":"Неверный пароль","historyId":"500ad758ee2db2bb60aa832fb0abbb94:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253618439,"uuid":"183774f5-7580-47fd-8370-352f1a2af64d","stop":1750253618440}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253618438,"uuid":"8e763fb6-c43b-44c6-9e78-66369ae2967e","stop":1750253618442},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253618442,"uuid":"e97bbc59-d45f-4726-a82a-2f0a60e5bb96","stop":1750253618559}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253618442,"uuid":"96c70753-b57b-48bb-aa54-e5ab95c70971","stop":1750253618559}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253618438,"uuid":"a1abee4a-32aa-401a-be81-7ac44e46add7","stop":1750253618559},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253618559,"name":"page.goto(/login/authorization)","uuid":"44ed97c5-580a-4a44-b430-6215ca27ea9e","stop":1750253619897},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253619898,"name":"locator.fill(autotest@example.com)","uuid":"edbed4a7-41be-42b2-a6f4-56d593d48dee","stop":1750253619981},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253619983,"name":"locator.fill(wrongpass)","uuid":"8f5df5b6-2312-437e-952c-8849e0b98083","stop":1750253620049},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253620050,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"7a5e391f-b79a-47da-9b9a-77745b84ee7e","stop":1750253620122},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253620124,"name":"expect.toBeVisible","uuid":"b88989ea-6d13-43e4-8981-74a22342e1c9","stop":1750253620247},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253620247,"uuid":"387d82d1-9889-4c5e-9178-9e0c11668520","stop":1750253620247},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253620247,"uuid":"545828f1-56b3-46b5-a892-950ab75336d5","stop":1750253620247}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253620247,"uuid":"d4ee3dd0-e48e-4b57-a904-431a729847c7","stop":1750253620370}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-0"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"}],"links":[],"start":1750253618438,"testCaseId":"500ad758ee2db2bb60aa832fb0abbb94","fullName":"ui/login/login.negative.spec.ts:7:7","stop":1750253620369} \ No newline at end of file diff --git a/allure-results/077160d0-52ad-45f4-a97d-d52766358989-result.json b/allure-results/077160d0-52ad-45f4-a97d-d52766358989-result.json new file mode 100644 index 0000000..a467f89 --- /dev/null +++ b/allure-results/077160d0-52ad-45f4-a97d-d52766358989-result.json @@ -0,0 +1 @@ +{"uuid":"077160d0-52ad-45f4-a97d-d52766358989","name":"Некорректный email (формат)","historyId":"d776d5fb9c918a79827aea417bdc449a:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252843946,"uuid":"13605ec8-46ab-4cc7-89a7-29abd1be667a","stop":1750252843949}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252843946,"uuid":"d876e188-e340-49d6-885a-e42878f8e5a4","stop":1750252843950},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252843950,"uuid":"14dc5368-be50-41df-bd3b-4ffaa40602a3","stop":1750252844102}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252843950,"uuid":"f9050bcb-afcf-477e-ac0b-c50bd61c9ee5","stop":1750252844102}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252843945,"uuid":"120da9fc-6a3d-4366-b178-99891f9b21ac","stop":1750252844102},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252844103,"name":"page.goto(/recoverpassword)","uuid":"c910c446-57c0-42d0-8c34-f024fd971d5b","stop":1750252845736},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252845737,"name":"locator.fill(invalid-email)","uuid":"389458eb-12e4-48e4-b77c-f479abd08ba6","stop":1750252845771},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252845771,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"3dde575c-636e-4389-88aa-d1d55d012532","stop":1750252845840},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252845840,"name":"expect.toBeVisible","uuid":"d802ec7f-adf7-4980-8dec-45867f495356","stop":1750252845846},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252845846,"uuid":"20f0fca5-5cb0-4a59-8708-157e12e0a4be","stop":1750252845846},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252845846,"uuid":"2aa1c55c-0805-489f-9240-b3813363b0bd","stop":1750252845846}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252845846,"uuid":"2b6fc572-4454-41b0-9132-acbb36f9b92a","stop":1750252845852}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-3"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"}],"links":[],"start":1750252843942,"testCaseId":"d776d5fb9c918a79827aea417bdc449a","fullName":"ui/recovery/recover-negative.spec.ts:7:7","stop":1750252845848} \ No newline at end of file diff --git a/allure-results/0c2b3f25-a5c0-41ff-b8e8-b69f2befb05a-attachment.md b/allure-results/0c2b3f25-a5c0-41ff-b8e8-b69f2befb05a-attachment.md new file mode 100644 index 0000000..7b952cc --- /dev/null +++ b/allure-results/0c2b3f25-a5c0-41ff-b8e8-b69f2befb05a-attachment.md @@ -0,0 +1,140 @@ +# Test info + +- Name: Негативные сценарии восстановления пароля >> Неверный код подтверждения +- Location: /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/recovery/recover-negative.spec.ts:23:7 + +# Error details + +``` +Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected) + +Locator: locator(':root') +Expected pattern: /\/recoverpassword\/checkemail/ +Received string: "https://ssas.dev.rdcenter.ru/recoverpassword" +Call log: + - expect.toHaveURL with timeout 5000ms + - waiting for locator(':root') + 9 × locator resolved to … + - unexpected value "https://ssas.dev.rdcenter.ru/recoverpassword" + + at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/recovery/recover-negative.spec.ts:28:24 +``` + +# Page snapshot + +```yaml +- main: + - button + - button "Скрыть Close": + - text: Скрыть + - img "Close" + - list: + - listitem: + - text: Вход/Регистрация + - img "Arrow" + - listitem: + - text: Главная + - img "Arrow" + - listitem: + - text: Автору + - img "Arrow" + - listitem: + - text: Новости + - img "Arrow" + - listitem: + - text: Участники + - img "Arrow" + - listitem: + - text: Оргкомитет + - img "Arrow" + - img "Логотип" + - heading "Забыли пароль?" [level=2] + - paragraph: Чтобы задать новый пароль, введите электронную почту своего аккаунта + - img + - textbox "Email": autotest@example.com + - button "Далее" + - paragraph: Всероссийская научная конференция "Системный синтез и прикладная синергетика" + - paragraph + - paragraph: "Напишите нам:" + - paragraph: + - text: "e-mail:" + - link "ssas@ictis.sfedu.ru": + - /url: mailto:ssas@ictis.sfedu.ru + - text: Сайт разработан Центром исследований и разработки ИКТИБ + - link "Ознакомиться с руководством пользователя": + - /url: /static/media/user_manual.f1df94e2c5143919fb0d.pdf +``` + +# Test source + +```ts + 1 | import { test, expect } from '@playwright/test'; + 2 | import { RecoverPage } from '../../../page-objects/RecoverPage'; + 3 | import { recovery, recoveryErrors, users } from '../../../utils/test-data'; + 4 | + 5 | test.describe('Негативные сценарии восстановления пароля', () => { + 6 | + 7 | test('Некорректный email (формат)', async ({ page }) => { + 8 | const recoverPage = new RecoverPage(page); + 9 | await recoverPage.goto(); + 10 | + 11 | await recoverPage.enterEmail('invalid-email'); + 12 | await expect(recoverPage.emailFormatError).toBeVisible(); + 13 | }); + 14 | + 15 | test('Несуществующий email', async ({ page }) => { + 16 | const recoverPage = new RecoverPage(page); + 17 | await recoverPage.goto(); + 18 | + 19 | await recoverPage.enterEmail(recovery.emailNotFound); + 20 | await expect(recoverPage.emailFormatError).toBeVisible(); // сервер показывает ту же ошибку + 21 | }); + 22 | + 23 | test('Неверный код подтверждения', async ({ page }) => { + 24 | const recoverPage = new RecoverPage(page); + 25 | await recoverPage.goto(); + 26 | + 27 | await recoverPage.enterEmail(recovery.emailExists); +> 28 | await expect(page).toHaveURL(/\/recoverpassword\/checkemail/); + | ^ Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected) + 29 | + 30 | await recoverPage.enterVerificationCode('654321'); // неверный + 31 | await expect(recoverPage.codeError).toBeVisible(); + 32 | }); + 33 | + 34 | test('Некорректный новый пароль', async ({ page }) => { + 35 | const recoverPage = new RecoverPage(page); + 36 | await recoverPage.goto(); + 37 | + 38 | await recoverPage.enterEmail(recovery.emailExists); + 39 | await recoverPage.enterVerificationCode(recovery.verificationCode); + 40 | + 41 | await recoverPage.enterNewPassword(users.newPassword.weakPassword, users.newPassword.weakPassword); + 42 | await expect(recoverPage.passwordError).toBeVisible(); + 43 | }); + 44 | + 45 | test('Пустое поле "Повторите пароль"', async ({ page }) => { + 46 | const recoverPage = new RecoverPage(page); + 47 | await recoverPage.goto(); + 48 | + 49 | await recoverPage.enterEmail(recovery.emailExists); + 50 | await recoverPage.enterVerificationCode(recovery.verificationCode); + 51 | + 52 | await recoverPage.enterNewPassword(users.newPassword.password, ''); + 53 | await expect(recoverPage.passwordRepeatError).toBeVisible(); + 54 | }); + 55 | + 56 | test('Пароли не совпадают', async ({ page }) => { + 57 | const recoverPage = new RecoverPage(page); + 58 | await recoverPage.goto(); + 59 | + 60 | await recoverPage.enterEmail(recovery.emailExists); + 61 | await recoverPage.enterVerificationCode(recovery.verificationCode); + 62 | + 63 | await recoverPage.enterNewPassword(users.newPassword.password, users.newPassword.mismatchPassword); + 64 | await expect(recoverPage.mismatchPasswordError).toBeVisible(); + 65 | }); + 66 | + 67 | }); + 68 | +``` \ No newline at end of file diff --git a/allure-results/0ce0b9c9-456b-4c63-82b5-ce06d9ad4dc6-result.json b/allure-results/0ce0b9c9-456b-4c63-82b5-ce06d9ad4dc6-result.json new file mode 100644 index 0000000..dc1279b --- /dev/null +++ b/allure-results/0ce0b9c9-456b-4c63-82b5-ce06d9ad4dc6-result.json @@ -0,0 +1 @@ +{"uuid":"0ce0b9c9-456b-4c63-82b5-ce06d9ad4dc6","name":"Успешная регистрация нового пользователя","historyId":"3562648cd3231e14b42a7151c17c62aa:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253577627,"uuid":"ec78efaf-e46f-409f-ae46-55607b978edd","stop":1750253577630}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253577626,"uuid":"0e249093-bbfc-41f3-8e0f-91dbcfb13b31","stop":1750253577632},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253577633,"uuid":"973fe389-3a69-49f3-83f4-3e7171bfa532","stop":1750253577672}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253577632,"uuid":"b6db90bf-b632-42ce-85bd-ccebcf35ea0b","stop":1750253577672}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253577626,"uuid":"1ae32356-eb89-4fae-be51-7b69df49af6e","stop":1750253577672},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253577673,"name":"page.goto(/login/registration)","uuid":"b839b1a9-5563-4b16-b7ce-411527b1d940","stop":1750253578479},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253578480,"name":"locator.fill(Иван)","uuid":"50b431c1-c298-45e8-96ca-62e761d27f1d","stop":1750253578500},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253578501,"name":"locator.fill(Тестов)","uuid":"3901d1b7-c22a-4a7c-a674-c9706bdcbece","stop":1750253578511},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253578512,"name":"locator.fill(Александрович)","uuid":"22a41a34-fde6-49a3-bf41-810448151079","stop":1750253578522},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253578523,"name":"locator.getByPlaceholder('Учёное звание*').click","uuid":"67738201-57be-45c6-8954-3c1c136e052a","stop":1750253578573},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253578573,"name":"locator.click(li >> internal:has-text=\"Доцент\"i)","uuid":"aa223afa-7890-4a3a-be6b-a0cba126c6d0","stop":1750253578648},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253578649,"name":"locator.getByPlaceholder('Учёная степень*').click","uuid":"f6392d6f-7e02-447c-a90e-de8d88072aaf","stop":1750253579549},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253579550,"name":"locator.click(li >> internal:has-text=\"Кандидат наук\"i)","uuid":"8ca9b365-a326-426c-9738-f35db7735360","stop":1750253579584},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253579585,"name":"locator.fill(Преподаватель)","uuid":"eeedc8fb-9422-4659-a5a7-527d4dbfd81c","stop":1750253579591},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253579593,"name":"locator.fill(ЮФУ)","uuid":"2cf1cfd3-acbd-4cd3-83b1-3ad23e06db9c","stop":1750253579606},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253579606,"name":"locator.fill(autotest1356@example.com)","uuid":"8f962de9-6d50-4896-a09b-b9be60a1d1ea","stop":1750253579615},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253579616,"name":"locator.fill(+79000001356)","uuid":"f6439e07-45c8-4566-bef9-e8f84f66d2b0","stop":1750253579622},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253579623,"name":"locator.fill(!Test123456)","uuid":"39d38a82-449e-4f24-8faf-0a6c535689b7","stop":1750253579633},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253579634,"name":"locator.fill(!Test123456)","uuid":"7b8a149e-babd-4bf0-bfe4-45ce724788b4","stop":1750253579643},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253579644,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"8783ebcd-fcf0-4304-973a-680f11624514","stop":1750253579685},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253579686,"name":"expect.toHaveURL","uuid":"05309985-b183-49a1-b1ce-5fb7a1446615","stop":1750253579792},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253579793,"name":"expect.toBeVisible","uuid":"82e254fa-8ab3-478c-98f6-9ff656358271","stop":1750253579797},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253579798,"uuid":"6d7049bf-5229-42f7-8056-0bdac9076f1c","stop":1750253579798},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253579798,"uuid":"2fea45a6-ae81-43c5-9ac3-bd0fd81711f8","stop":1750253579798}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253579797,"uuid":"d196a3cd-41bf-4428-a31e-1c3641c79937","stop":1750253579866}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.spec.ts > Позитивные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.spec.ts"},{"name":"subSuite","value":"Позитивные сценарии регистрации"}],"links":[],"start":1750253577624,"testCaseId":"3562648cd3231e14b42a7151c17c62aa","fullName":"ui/registration/register.spec.ts:6:7","stop":1750253579862} \ No newline at end of file diff --git a/allure-results/0d0df8dc-0daa-4ccc-a3df-695d757f8162-result.json b/allure-results/0d0df8dc-0daa-4ccc-a3df-695d757f8162-result.json new file mode 100644 index 0000000..a70e98a --- /dev/null +++ b/allure-results/0d0df8dc-0daa-4ccc-a3df-695d757f8162-result.json @@ -0,0 +1 @@ +{"uuid":"0d0df8dc-0daa-4ccc-a3df-695d757f8162","name":"Слишком длинная должность","historyId":"2214c0f917091cfcda832cd03e01bb76:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253610248,"uuid":"eb7fbdfc-a4dc-43b2-9825-f0ebbff10dce","stop":1750253610250}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253610248,"uuid":"a7440c89-a692-43ee-87da-075b7f7dc943","stop":1750253610252},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253610253,"uuid":"4882a819-3f94-4a1d-a9e7-6e586d8124a0","stop":1750253610437}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253610253,"uuid":"e309f03a-d193-48bc-8ff7-7c219ddbcfe2","stop":1750253610437}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253610247,"uuid":"409c5360-6646-46aa-bc2f-6df362c19d59","stop":1750253610437},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253610438,"name":"page.goto(/login/registration)","uuid":"3cb44c77-ac7c-4142-8b78-dfc281f6691b","stop":1750253612520},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253612521,"name":"locator.fill(XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX)","uuid":"8ac14644-0f84-4458-9d83-c0481f53ab6f","stop":1750253612551},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253612552,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"87d4a9a9-c7d7-46e4-9354-8db167c508b0","stop":1750253612637},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253612637,"name":"expect.toBeVisible","uuid":"f0a27d32-5346-4576-8c9a-1878a85aab16","stop":1750253612645},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253612646,"uuid":"fadc100b-5d9b-4512-ab88-3025cf01de28","stop":1750253612646},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253612646,"uuid":"f239afdc-e3ba-4706-aa07-bf47126c3502","stop":1750253612646}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253612646,"uuid":"274f84a6-c86e-4ec3-be95-db1ba0fe5e5e","stop":1750253612681}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750253610248,"testCaseId":"2214c0f917091cfcda832cd03e01bb76","fullName":"ui/registration/register.negative.spec.ts:38:7","stop":1750253612680} \ No newline at end of file diff --git a/allure-results/13e1ea61-09cb-402b-b7fe-80c3528572a7-result.json b/allure-results/13e1ea61-09cb-402b-b7fe-80c3528572a7-result.json new file mode 100644 index 0000000..c2e2790 --- /dev/null +++ b/allure-results/13e1ea61-09cb-402b-b7fe-80c3528572a7-result.json @@ -0,0 +1 @@ +{"uuid":"13e1ea61-09cb-402b-b7fe-80c3528572a7","name":"Успешная регистрация нового пользователя","historyId":"3562648cd3231e14b42a7151c17c62aa:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252863248,"uuid":"e8d7bf59-d5a1-4574-accd-fd0ff09388e8","stop":1750252863250}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252863248,"uuid":"33b4f036-aff6-4cb2-9a5b-ccb51395a27f","stop":1750252863250},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252863250,"uuid":"c2e55770-a6d4-4740-a913-6f83fce55000","stop":1750252863356}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252863250,"uuid":"f3afa6cf-3842-418c-8673-5fc5e743db1e","stop":1750252863356}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252863247,"uuid":"11b48d32-b071-4f26-a9e8-c50537d5843d","stop":1750252863356},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252863357,"name":"page.goto(/login/registration)","uuid":"c5bc54f0-7e6f-4c15-bada-03681a7853f0","stop":1750252864414},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252864415,"name":"locator.fill(Иван)","uuid":"4d9c56b4-3681-4209-afbe-495f0bfaac61","stop":1750252864436},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252864437,"name":"locator.fill(Тестов)","uuid":"ad323e8f-414d-4ec4-b6b9-1988083d0138","stop":1750252864442},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252864443,"name":"locator.fill(Александрович)","uuid":"be9303a5-0359-433b-8648-fef85f128b5a","stop":1750252864459},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252864461,"name":"locator.getByPlaceholder('Учёное звание*').click","uuid":"9b628245-1199-4e31-b69d-c01f73f8e296","stop":1750252864542},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252864543,"name":"locator.click(li >> internal:has-text=\"Доцент\"i)","uuid":"e4f49472-a39a-4f64-915e-edf66f916b74","stop":1750252864947},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252864949,"name":"locator.getByPlaceholder('Учёная степень*').click","uuid":"b23b34fa-74f0-4ba7-af8b-b501e243a0af","stop":1750252865338},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252865339,"name":"locator.click(li >> internal:has-text=\"Кандидат наук\"i)","uuid":"09adf90e-c750-47d7-b3d2-89df65c67962","stop":1750252865371},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252865372,"name":"locator.fill(Преподаватель)","uuid":"0c8e09d9-8227-40a6-94c1-ee7ddca17ebd","stop":1750252865379},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252865379,"name":"locator.fill(ЮФУ)","uuid":"d17b2481-b907-4782-bda3-1e49722ed407","stop":1750252865388},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252865388,"name":"locator.fill(autotest79738@example.com)","uuid":"c286860a-0856-4034-9bf5-2c318c53134c","stop":1750252865394},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252865395,"name":"locator.fill(+79000079738)","uuid":"983d76c7-8b6d-4dd9-af88-06e8a1bc7c46","stop":1750252865402},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252865402,"name":"locator.fill(!Test123456)","uuid":"7d8adc39-9f7e-42e1-a3c1-9a3b72750533","stop":1750252865409},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252865410,"name":"locator.fill(!Test123456)","uuid":"7b2c9b46-a34d-41fa-8aae-a3d2f1d51a81","stop":1750252865419},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252865420,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"bbbe2147-b4fa-44af-8624-5269010696d0","stop":1750252865468},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252865468,"name":"expect.toHaveURL","uuid":"ff039ed2-60ef-4f30-9337-1c09ef152276","stop":1750252865828},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252865829,"name":"expect.toBeVisible","uuid":"2a70853d-737d-4b74-8af7-24db4f6ce0b4","stop":1750252865835},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252865836,"uuid":"479c65c5-a190-486c-b664-7ed9fec8cdd9","stop":1750252865836},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252865836,"uuid":"95db27db-c3f5-40c6-a6e2-eaa16d7be082","stop":1750252865836}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252865835,"uuid":"7062d3dd-405f-4af7-b977-9575ee6f1f52","stop":1750252865840}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.spec.ts"},{"name":"titlePath","value":" > webkit > ui/registration/register.spec.ts > Позитивные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-0"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/registration/register.spec.ts"},{"name":"subSuite","value":"Позитивные сценарии регистрации"}],"links":[],"start":1750252863247,"testCaseId":"3562648cd3231e14b42a7151c17c62aa","fullName":"ui/registration/register.spec.ts:6:7","stop":1750252865838} \ No newline at end of file diff --git a/allure-results/1452be83-f076-4e64-86fd-c0de38a6d066-result.json b/allure-results/1452be83-f076-4e64-86fd-c0de38a6d066-result.json new file mode 100644 index 0000000..b395013 --- /dev/null +++ b/allure-results/1452be83-f076-4e64-86fd-c0de38a6d066-result.json @@ -0,0 +1 @@ +{"uuid":"1452be83-f076-4e64-86fd-c0de38a6d066","name":"get started link","historyId":"37e4aa066a5f6eac2e4d3b98a2ed98a7:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserType.launch","start":1750252826967,"uuid":"1d5b5ecf-ceea-4409-a225-5e2925f43476","stop":1750252829263}],"attachments":[],"parameters":[],"name":"fixture: browser","start":1750252826965,"uuid":"54d185b7-a361-41da-97b7-9e1988614bbc","stop":1750252829264},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252829267,"uuid":"52e6d27d-6bff-4313-952e-597d068d9f80","stop":1750252829444}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252829265,"uuid":"73b95262-ab84-4d8f-8b61-02e924ce4975","stop":1750252829445},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252829448,"uuid":"4761ea64-4567-4fc4-a412-2cb21fa1d659","stop":1750252830071}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252829446,"uuid":"5984b15c-039e-4c5d-a78c-f10a9c642d6e","stop":1750252830071}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252826953,"uuid":"23b572d2-129c-4eaf-8f0d-7c10177daefa","stop":1750252830071},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252830073,"name":"page.goto(https://playwright.dev/)","uuid":"b397ffb1-034e-4bd5-970d-330306df4e7b","stop":1750252835324},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252835329,"name":"locator.getByRole('link', { name: 'Get started' }).click","uuid":"4ea0541e-4428-4224-8ad8-4c219d499d31","stop":1750252835436},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252835437,"name":"expect.toBeVisible","uuid":"6057e0f0-34d6-4baf-b28e-40cc7c150336","stop":1750252835832},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252835833,"uuid":"b474517b-e18f-4d2b-a4cd-a397ce6f7834","stop":1750252835833},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252835833,"uuid":"467ace56-ede7-421d-a33b-6c15b536431a","stop":1750252835833}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252835832,"uuid":"366fa418-3009-475b-b2ba-4b1ab2d94e58","stop":1750252835847}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > firefox > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"example.spec.ts"}],"links":[],"start":1750252826950,"testCaseId":"37e4aa066a5f6eac2e4d3b98a2ed98a7","fullName":"example.spec.ts:10:5","stop":1750252833537} \ No newline at end of file diff --git a/allure-results/1735cf5e-96b2-4fa5-90d6-beff04ef3d28-result.json b/allure-results/1735cf5e-96b2-4fa5-90d6-beff04ef3d28-result.json new file mode 100644 index 0000000..a99f7e5 --- /dev/null +++ b/allure-results/1735cf5e-96b2-4fa5-90d6-beff04ef3d28-result.json @@ -0,0 +1 @@ +{"uuid":"1735cf5e-96b2-4fa5-90d6-beff04ef3d28","name":"Некорректный email формат","historyId":"de8c598c53adc6e2133478f1b9141597:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252750886,"uuid":"8d80350e-9c58-4a6a-9004-38c9ee7fa106","stop":1750252751581}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252750885,"uuid":"865a4e5d-c4ec-460e-a9ef-bd19615227d1","stop":1750252751584},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252751586,"uuid":"a595032d-bb37-4065-bbcd-c03b5bc2924c","stop":1750252751820}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252751584,"uuid":"cdd43095-74f7-4f98-87c4-a6bb91df8727","stop":1750252751820}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252750883,"uuid":"d921fc10-a49b-40c0-a0f6-8b4c75e119b7","stop":1750252751820},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252751820,"name":"page.goto(/login/registration)","uuid":"0482f3aa-c3fb-45e1-a2f1-30bbb9012681","stop":1750252754439},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252754440,"name":"locator.fill(invalid-email)","uuid":"d011139f-45ba-485b-bb0d-7601cf4fe910","stop":1750252754502},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252754503,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"76ad8fe5-1933-4543-a4c3-44ba5a75bfdb","stop":1750252754536},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252754536,"name":"expect.toBeVisible","uuid":"6864f9e8-41a0-4978-8405-78cbc0250a4f","stop":1750252754542},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252754543,"uuid":"5c53fb72-6c96-4dd5-9a5b-7485ee2b965f","stop":1750252754543},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252754543,"uuid":"43f2d5df-5688-4c79-9317-e56612ff2239","stop":1750252754543}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252754542,"uuid":"19c7aa2d-1e72-4c43-a04f-08a555c7d801","stop":1750252754591}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-57952-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750252750885,"testCaseId":"de8c598c53adc6e2133478f1b9141597","fullName":"ui/registration/register.negative.spec.ts:28:7","stop":1750252754589} \ No newline at end of file diff --git a/allure-results/17870967-1bfb-462f-bc13-e903665a1481-result.json b/allure-results/17870967-1bfb-462f-bc13-e903665a1481-result.json new file mode 100644 index 0000000..e328bb6 --- /dev/null +++ b/allure-results/17870967-1bfb-462f-bc13-e903665a1481-result.json @@ -0,0 +1 @@ +{"uuid":"17870967-1bfb-462f-bc13-e903665a1481","name":"Регистр в email (User@test.com ≠ user@test.com)","historyId":"cc4ad4b40ef726af11b2bd4f5523dbe0:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253480153,"uuid":"12461ba2-93f0-4a8a-8ae2-ef51db8f709d","stop":1750253480155}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253480153,"uuid":"c26d5fa5-e8c8-4f9f-a9ae-9d50b5e01645","stop":1750253480156},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253480157,"uuid":"1e01e888-3478-42e0-8d13-f1564c30dcf9","stop":1750253480190}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253480156,"uuid":"8c160743-fd5e-42ff-92f6-bfcc59861d2f","stop":1750253480190}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253480153,"uuid":"f870ef7c-c0b6-4005-9b75-fdab8342e47a","stop":1750253480190},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253480190,"name":"page.goto(/login/authorization)","uuid":"0d5d9a6c-6dcc-4ba1-81aa-3ad0e248a3fe","stop":1750253481503},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253481504,"name":"locator.fill(Autotest@Example.com)","uuid":"bec599b2-dba2-4e62-9b52-3325fbc101fd","stop":1750253481526},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253481527,"name":"locator.fill(!Test123456)","uuid":"5681fbcf-2903-4ccf-906d-f5eb5b570a22","stop":1750253481568},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253481570,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"e6b3fcb0-d31c-49c6-9071-b38e44ec2c22","stop":1750253481615},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253481616,"name":"expect.toBeVisible","uuid":"87aff2f8-774a-4b61-8d1a-5a1e4f1197aa","stop":1750253481726},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253481726,"uuid":"2b9d19ce-9038-465c-9fbb-04db9d24f66f","stop":1750253481726},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253481726,"uuid":"72bf716f-1146-4d46-9818-834dd57d96ac","stop":1750253481726}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253481726,"uuid":"5dfd093b-c12a-4478-a509-973744d96973","stop":1750253482553}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"tag","value":"test.com"},{"name":"tag","value":"test.com)"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"}],"links":[],"start":1750253480153,"testCaseId":"cc4ad4b40ef726af11b2bd4f5523dbe0","fullName":"ui/login/login.negative.spec.ts:58:7","stop":1750253482552} \ No newline at end of file diff --git a/allure-results/17cd5a0e-585c-42e1-9cd9-1027bfc44a06-result.json b/allure-results/17cd5a0e-585c-42e1-9cd9-1027bfc44a06-result.json new file mode 100644 index 0000000..c4a8ff4 --- /dev/null +++ b/allure-results/17cd5a0e-585c-42e1-9cd9-1027bfc44a06-result.json @@ -0,0 +1 @@ +{"uuid":"17cd5a0e-585c-42e1-9cd9-1027bfc44a06","name":"get started link","historyId":"37e4aa066a5f6eac2e4d3b98a2ed98a7:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserType.launch","start":1750253580477,"uuid":"15b2e40d-bcf3-47e9-bbf2-8d1ceb46c496","stop":1750253581066}],"attachments":[],"parameters":[],"name":"fixture: browser","start":1750253580475,"uuid":"cd1825b0-1fd8-46e3-a25d-08ce302b114f","stop":1750253581067},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253581068,"uuid":"526ccaca-3b56-402d-bb2c-e1f61a4688d1","stop":1750253581179}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253581067,"uuid":"ff612827-5749-47a1-bdd1-c4185451275a","stop":1750253581205},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253581206,"uuid":"cb9fc066-55c3-4291-9036-df559e04e116","stop":1750253581716}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253581205,"uuid":"52eba4e2-768b-4ef2-8a38-addc5f25bb36","stop":1750253581716}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253580471,"uuid":"6a78d06f-f50f-479d-aefc-4010346482aa","stop":1750253581716},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253581717,"name":"page.goto(https://playwright.dev/)","uuid":"ec7ab1c3-3f17-4eea-8bff-66b9bf89abf6","stop":1750253583677},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253583680,"name":"locator.getByRole('link', { name: 'Get started' }).click","uuid":"905f0810-9042-459d-a258-196de77198a5","stop":1750253583788},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253583789,"name":"expect.toBeVisible","uuid":"5df51833-b3da-4e64-a6d5-59a059fce0ca","stop":1750253584210},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253584211,"uuid":"06876147-a163-4cda-975c-5b34949dfd26","stop":1750253584211},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253584211,"uuid":"b14f20e9-96bf-4825-b985-788896b63692","stop":1750253584211}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253584210,"uuid":"abe41e68-13f1-4d03-b8b6-33bbe6e10ee6","stop":1750253584286}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > firefox > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-3"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"example.spec.ts"}],"links":[],"start":1750253580470,"testCaseId":"37e4aa066a5f6eac2e4d3b98a2ed98a7","fullName":"example.spec.ts:10:5","stop":1750253583690} \ No newline at end of file diff --git a/allure-results/1aa39ae4-642c-4135-8158-918d63d7c7e4-result.json b/allure-results/1aa39ae4-642c-4135-8158-918d63d7c7e4-result.json new file mode 100644 index 0000000..dc8c932 --- /dev/null +++ b/allure-results/1aa39ae4-642c-4135-8158-918d63d7c7e4-result.json @@ -0,0 +1 @@ +{"uuid":"1aa39ae4-642c-4135-8158-918d63d7c7e4","name":"Несуществующий email","historyId":"69b9236bee03ff0034bfbd5addc25f93:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253584292,"uuid":"12eb508a-595c-4e32-ba09-e6afedfe1572","stop":1750253584294}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253584292,"uuid":"77d76d02-486f-42a6-8d6c-d6c922b38d22","stop":1750253584296},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253584297,"uuid":"f67bf6ac-8a87-4081-ada5-4bf90d74d0ea","stop":1750253584377}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253584296,"uuid":"7aafcdb3-ec06-4940-a55e-5705ba600773","stop":1750253584378}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253584291,"uuid":"2d0c4c1a-bc86-49d0-8e0f-e7e0763e4747","stop":1750253584378},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253584379,"name":"page.goto(/login/authorization)","uuid":"20748022-7594-4124-a41b-e14d7ff7d7b1","stop":1750253591317},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253591318,"name":"locator.fill(wrong@example.com)","uuid":"e76d37cf-588d-42a4-917a-1d595827ebcf","stop":1750253591364},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253591364,"name":"locator.fill(anyPassword123)","uuid":"3a7834cb-21c2-42ca-bda8-7238ed86da34","stop":1750253591375},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253591376,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"fc8d2ea1-232a-459e-bf16-cd855367c4fa","stop":1750253591444},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253591445,"name":"expect.toBeVisible","uuid":"20ad2182-8113-4b4a-adfa-45d8293aedc4","stop":1750253591560},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253591560,"uuid":"61bf7bdf-3702-4416-9b04-a49ab113be22","stop":1750253591560},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253591560,"uuid":"50c7ab43-ad27-4414-ba6e-3c304def0d52","stop":1750253591560}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253591560,"uuid":"48dd431f-9ddb-4c53-8490-fb9edae16c1f","stop":1750253591596}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-3"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"}],"links":[],"start":1750253584291,"testCaseId":"69b9236bee03ff0034bfbd5addc25f93","fullName":"ui/login/login.negative.spec.ts:17:7","stop":1750253591595} \ No newline at end of file diff --git a/allure-results/1b5480b8-bd12-4c8f-9be6-41c35189f378-result.json b/allure-results/1b5480b8-bd12-4c8f-9be6-41c35189f378-result.json new file mode 100644 index 0000000..868133e --- /dev/null +++ b/allure-results/1b5480b8-bd12-4c8f-9be6-41c35189f378-result.json @@ -0,0 +1 @@ +{"uuid":"1b5480b8-bd12-4c8f-9be6-41c35189f378","name":"Несуществующий email","historyId":"c118be77fa2af6f0e0052ec7489ba66c:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253627042,"uuid":"da23db19-ecb9-4b6e-a23a-99c87a13d57a","stop":1750253627052}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253627041,"uuid":"eeb0bd20-4bc5-4d4d-ad16-493faf230b30","stop":1750253627066},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253627068,"uuid":"4c1929d3-162b-4ab3-b619-ef8cc04001e5","stop":1750253627213}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253627067,"uuid":"1ce0d070-7fac-4ec5-aea0-da57c618450d","stop":1750253627213}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253627038,"uuid":"6adedddb-fe67-4eae-ad00-54b93b2ff463","stop":1750253627213},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253627215,"name":"page.goto(/recoverpassword)","uuid":"fd7b8ed2-b103-4d28-946c-ac685b6d082b","stop":1750253628841},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253628842,"name":"locator.fill(nobody@example.com)","uuid":"7d1aab3a-5def-41f8-8fc5-91c3fefb9561","stop":1750253628890},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253628892,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"238e1e05-4033-4c2a-be3b-ee71b2bc4d29","stop":1750253629163},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253629164,"name":"expect.toBeVisible","uuid":"02822f99-b68f-4c1c-88e0-462883de5ad6","stop":1750253629288},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253629289,"uuid":"72a08403-c7bd-454d-b973-d93be02377d6","stop":1750253629289},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253629289,"uuid":"285f84ff-6e24-42f3-a082-86da42b9394a","stop":1750253629289}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253629288,"uuid":"ce41a0f6-0902-48d9-aa94-d32942bd3441","stop":1750253629364}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-1"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"}],"links":[],"start":1750253627038,"testCaseId":"c118be77fa2af6f0e0052ec7489ba66c","fullName":"ui/recovery/recover-negative.spec.ts:15:7","stop":1750253629360} \ No newline at end of file diff --git a/allure-results/1c045007-e641-43cf-ba8d-3ffcc9588fb2-result.json b/allure-results/1c045007-e641-43cf-ba8d-3ffcc9588fb2-result.json new file mode 100644 index 0000000..58fad6c --- /dev/null +++ b/allure-results/1c045007-e641-43cf-ba8d-3ffcc9588fb2-result.json @@ -0,0 +1 @@ +{"uuid":"1c045007-e641-43cf-ba8d-3ffcc9588fb2","name":"Некорректный формат email","historyId":"e5764a911de0175f8f7118313ae14544:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252811929,"uuid":"59d8568e-1ebe-42f1-abc8-ddd28fedda84","stop":1750252811930}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252811928,"uuid":"a6445ded-4eae-441f-9788-3d16281e4e11","stop":1750252811930},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252811931,"uuid":"e12d86fc-7294-4fa2-af69-5c27eb8b60ab","stop":1750252811970}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252811930,"uuid":"d8813adc-4f0b-4b7f-9777-81dc31563fff","stop":1750252811970}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252811927,"uuid":"b0da80d3-3ee5-460c-b86f-1a9b46d4e2e4","stop":1750252811970},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252811971,"name":"page.goto(/login/authorization)","uuid":"f1cd1a0e-f162-4cc1-9a4c-59c87745dda6","stop":1750252812879},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252812880,"name":"locator.fill(invalid-email)","uuid":"b3c332aa-89b0-4415-be6b-9b09e7620dd3","stop":1750252812933},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252812933,"name":"locator.fill(anyPassword123)","uuid":"fd324e71-5f8b-4ae9-b977-c6f0bdc3e5fc","stop":1750252812964},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252812965,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"a4b43dec-9d26-4bee-8e0a-b801db47582b","stop":1750252813027},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252813028,"name":"expect.toBeVisible","uuid":"98e4c0ff-ff9f-4611-b6dc-ec2219169856","stop":1750252813030},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252813030,"uuid":"9cbb933a-ac77-4500-a3cd-faba5fd68d35","stop":1750252813030},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252813030,"uuid":"f57c025d-77e5-4c3b-9e82-50c9566bebe6","stop":1750252813030}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252813030,"uuid":"e51e1229-8a80-45d8-9a00-32db7e7a2db7","stop":1750252813033}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"}],"links":[],"start":1750252811927,"testCaseId":"e5764a911de0175f8f7118313ae14544","fullName":"ui/login/login.negative.spec.ts:46:7","stop":1750252813032} \ No newline at end of file diff --git a/allure-results/1c1c0fc1-aa8b-4d85-b050-fd5b512434cd-result.json b/allure-results/1c1c0fc1-aa8b-4d85-b050-fd5b512434cd-result.json new file mode 100644 index 0000000..8e96bb2 --- /dev/null +++ b/allure-results/1c1c0fc1-aa8b-4d85-b050-fd5b512434cd-result.json @@ -0,0 +1 @@ +{"uuid":"1c1c0fc1-aa8b-4d85-b050-fd5b512434cd","name":"Пользователь успешно восстанавливает пароль","historyId":"1779c735aef9d62c071557455e74e57f:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253562864,"uuid":"7b151f33-a4b2-46ff-8965-c98603828078","stop":1750253562866}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253562864,"uuid":"0c325d7f-b8e7-470d-9c84-f2b73036af94","stop":1750253562868},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253562868,"uuid":"dfcd1206-fd9e-4bc9-a0cc-915d15e719d2","stop":1750253562902}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253562868,"uuid":"667c808a-653a-46ca-9522-a14bc32ed1ef","stop":1750253562902}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253562864,"uuid":"bdf24ca1-daf5-4569-b7cd-03c1b89beb7c","stop":1750253562902},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253562903,"name":"page.goto(/recoverpassword)","uuid":"59e3966d-2867-4fe2-91c5-d77143940b69","stop":1750253563678},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253563679,"name":"locator.fill(autotest@example.com)","uuid":"95f6c604-376a-4895-83bd-f6c343b4b372","stop":1750253563700},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253563700,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"8c631ffe-dbac-4a7c-a0a4-793db7c24f79","stop":1750253563731},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253563732,"name":"expect.toHaveURL","uuid":"d1d13c25-ac02-4bb5-9dfe-c3de300b4d78","stop":1750253563839},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253563840,"name":"locator.count(input[type=\"text\"])","uuid":"0206e905-0bc8-4671-aa6e-7b5cb619ba65","stop":1750253563843},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253563843,"name":"locator.fill(0)","uuid":"45b5483e-021c-4c78-adc5-4f71c4827d90","stop":1750253563855},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253563855,"name":"locator.fill(0)","uuid":"6550e0c9-f35c-4c94-baeb-a82cac39597c","stop":1750253563870},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253563871,"name":"locator.fill(0)","uuid":"e90c3269-5b75-4d19-a9d7-133a21083fa4","stop":1750253563877},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253563877,"name":"locator.fill(0)","uuid":"a2671f9f-3f55-4f10-97ab-9be4d2518d4b","stop":1750253563886},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253563887,"name":"locator.fill(0)","uuid":"f936d068-4e13-40ff-be2b-8ad7ed8f1e14","stop":1750253563894},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253563895,"name":"locator.fill(0)","uuid":"e4b6ec14-a5a7-4146-94df-025bc4c5b17d","stop":1750253563904},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253563904,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"b8e8ec12-ff27-42b6-a86f-ce07720745fb","stop":1750253563935},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253563935,"name":"expect.toBeVisible","uuid":"24bf9e92-89ff-4b70-9b45-4258943eac42","stop":1750253564041},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253564041,"name":"locator.fill(!Test123456)","uuid":"2c7a896d-4c35-41b6-a004-c9dd5a56ba92","stop":1750253564049},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253564049,"name":"locator.fill(!Test123456)","uuid":"75ab26fe-8f33-4a00-bb84-3d5305ff8c78","stop":1750253564058},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253564060,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"552b5dec-f655-48c4-a099-0f218d441393","stop":1750253564098},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253564098,"name":"expect.toHaveURL","uuid":"9ee3a253-d886-4512-913b-459b0020b174","stop":1750253564204},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253564204,"name":"expect.toBeVisible","uuid":"ffd04cc6-c4d1-4940-9ed1-2985b69a7d68","stop":1750253564208},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253564209,"uuid":"32875944-ec4a-4e0d-874a-9a4ea7728b08","stop":1750253564209},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253564209,"uuid":"e10f432a-6ec7-4953-b9a4-eb210710d728","stop":1750253564209}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253564208,"uuid":"3d5eef5b-d35c-405a-a035-72db2172cf41","stop":1750253569406}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-password.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-password.spec.ts > Восстановление пароля — позитивные сценарии"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-password.spec.ts"},{"name":"subSuite","value":"Восстановление пароля — позитивные сценарии"}],"links":[],"start":1750253562864,"testCaseId":"1779c735aef9d62c071557455e74e57f","fullName":"ui/recovery/recover-password.spec.ts:7:7","stop":1750253569405} \ No newline at end of file diff --git a/allure-results/1ee683c1-5f02-44f5-bb33-ed747588faa7-result.json b/allure-results/1ee683c1-5f02-44f5-bb33-ed747588faa7-result.json new file mode 100644 index 0000000..f4ff813 --- /dev/null +++ b/allure-results/1ee683c1-5f02-44f5-bb33-ed747588faa7-result.json @@ -0,0 +1 @@ +{"uuid":"1ee683c1-5f02-44f5-bb33-ed747588faa7","name":"Некорректный формат email","historyId":"e5764a911de0175f8f7118313ae14544:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252857700,"uuid":"29e388e6-757b-4b03-a8dc-4c4c6dad85fc","stop":1750252857705}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252857699,"uuid":"662645c5-73b2-422a-84da-24b9dac911ae","stop":1750252857705},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252857706,"uuid":"d1d8e886-21e2-481d-8fd3-2d4b6d4d1b0f","stop":1750252857897}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252857706,"uuid":"553a5d9a-fa2c-4115-bc38-9266604782e1","stop":1750252857897}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252857696,"uuid":"176e6ebf-7e2e-465b-8faa-d26ce39012b4","stop":1750252857897},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252857898,"name":"page.goto(/login/authorization)","uuid":"22bb437d-5194-40af-b2f1-63d5b9213e8d","stop":1750252858846},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252858847,"name":"locator.fill(invalid-email)","uuid":"a53ac4be-3764-4e45-9b02-13bef349251a","stop":1750252858881},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252858882,"name":"locator.fill(anyPassword123)","uuid":"05938814-d76e-4ef3-86c7-edb261189150","stop":1750252858887},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252858888,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"580c4d00-c3b4-4606-b9ef-1962b0ed93c0","stop":1750252858936},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252858937,"name":"expect.toBeVisible","uuid":"6d1f353f-dc90-47e7-82cd-9b15a628ba45","stop":1750252858941},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252858941,"uuid":"b44b9b4e-8f11-4f23-8498-49d2065e01ea","stop":1750252858941},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252858941,"uuid":"cf2dfeed-2e47-4d3b-8d8e-3fbd778af378","stop":1750252858941}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252858941,"uuid":"682be273-b769-42f4-aecb-ba8c734367dc","stop":1750252858944}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-3"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"}],"links":[],"start":1750252857696,"testCaseId":"e5764a911de0175f8f7118313ae14544","fullName":"ui/login/login.negative.spec.ts:46:7","stop":1750252858941} \ No newline at end of file diff --git a/allure-results/227904ac-b0e3-4e70-af86-b0ede6480ed6-result.json b/allure-results/227904ac-b0e3-4e70-af86-b0ede6480ed6-result.json new file mode 100644 index 0000000..2ad4d9b --- /dev/null +++ b/allure-results/227904ac-b0e3-4e70-af86-b0ede6480ed6-result.json @@ -0,0 +1 @@ +{"uuid":"227904ac-b0e3-4e70-af86-b0ede6480ed6","name":"get started link","historyId":"37e4aa066a5f6eac2e4d3b98a2ed98a7:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserType.launch","start":1750252808951,"uuid":"d92ca8e1-6ace-4e62-b91a-fd5dff997c34","stop":1750252809252}],"attachments":[],"parameters":[],"name":"fixture: browser","start":1750252808949,"uuid":"b1d7535e-1ee6-496e-b593-1fe5c02532b9","stop":1750252809252},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252809255,"uuid":"a5d69616-c515-4cd5-95ed-4b0e4bc7c81b","stop":1750252809273}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252809252,"uuid":"ef88b104-7741-409e-941f-1aeb31343a95","stop":1750252809279},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252809282,"uuid":"033ac9a8-1f0b-4fe1-8f36-607f4dffe47e","stop":1750252809507}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252809279,"uuid":"dc07d3b0-4c8d-4aa3-9316-d95877f2c251","stop":1750252809507}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252808944,"uuid":"a51fbfbd-e020-44c2-9a18-d2c443913766","stop":1750252809508},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252809511,"name":"page.goto(https://playwright.dev/)","uuid":"72e22dcf-a3d6-4b6e-8e47-6e250e7cd230","stop":1750252821513},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252821517,"name":"locator.getByRole('link', { name: 'Get started' }).click","uuid":"99ddb753-8a84-402a-ad64-d21ba8436aae","stop":1750252821617},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252821618,"name":"expect.toBeVisible","uuid":"72821be4-38e0-467f-9313-f413860a9ad4","stop":1750252822485},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252822487,"uuid":"126c7796-a2f5-4f6b-a9a5-c44418d620ed","stop":1750252822488},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252822488,"uuid":"9f41b401-db8d-49ec-9abb-1f394f9c0bd5","stop":1750252822488}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252822486,"uuid":"4b2c772e-1e68-4d44-8656-40803a4ca273","stop":1750252822507}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > chromium > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-1"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"example.spec.ts"}],"links":[],"start":1750252808949,"testCaseId":"37e4aa066a5f6eac2e4d3b98a2ed98a7","fullName":"example.spec.ts:10:5","stop":1750252822202} \ No newline at end of file diff --git a/allure-results/2543ea9b-4bec-430a-bc0d-eaccfc707d22-result.json b/allure-results/2543ea9b-4bec-430a-bc0d-eaccfc707d22-result.json new file mode 100644 index 0000000..06a8acf --- /dev/null +++ b/allure-results/2543ea9b-4bec-430a-bc0d-eaccfc707d22-result.json @@ -0,0 +1 @@ +{"uuid":"2543ea9b-4bec-430a-bc0d-eaccfc707d22","name":"Неверный код подтверждения","historyId":"31f03826b2a8da254be42b2d49bc35f3:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252845303,"uuid":"22e1ed1f-bddc-490c-b2d4-055ba433bdd9","stop":1750252845308}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252845302,"uuid":"edaf84a7-86f6-45bf-a1c2-74dfe4365740","stop":1750252845309},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252845309,"uuid":"f719d293-a1bf-4683-926d-bce7e8a0353e","stop":1750252845473}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252845309,"uuid":"e3da194b-a443-4695-b3c5-5e5d8026d79b","stop":1750252845473}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252845302,"uuid":"a4e4a26e-7fc4-451e-84f7-acf7cd546cc6","stop":1750252845473},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252845474,"name":"page.goto(/recoverpassword)","uuid":"2326f6f6-6258-42df-afa8-66525659a75a","stop":1750252847121},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252847123,"name":"locator.fill(autotest@example.com)","uuid":"5c13496b-d58d-4638-8f81-9ee6cf04f789","stop":1750252847153},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252847155,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"ee53e636-1ae8-4e09-8021-2a99dcdeb298","stop":1750252847232},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252847233,"name":"expect.toHaveURL","uuid":"e2b1dbfe-2f71-4b2b-92ea-9ae91f872a17","stop":1750252847340},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252847340,"name":"locator.count(input[type=\"text\"])","uuid":"0cf2dce4-1800-49dc-a1df-a594bf2dc08b","stop":1750252847342},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252847343,"name":"locator.fill(6)","uuid":"04aa8a04-a7c6-40dc-b2a4-89a0ecc79513","stop":1750252847356},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252847356,"name":"locator.fill(5)","uuid":"c8f3b53f-db90-4d68-b13e-9acecf1be41e","stop":1750252847367},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252847367,"name":"locator.fill(4)","uuid":"858a346b-2b3e-4267-bbb9-e6300ec87798","stop":1750252847378},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252847380,"name":"locator.fill(3)","uuid":"30e47bc8-7375-4276-bd0d-c5f4fd7819c1","stop":1750252847401},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252847402,"name":"locator.fill(2)","uuid":"9a569439-e9aa-4572-9351-5dc960f00761","stop":1750252847430},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252847431,"name":"locator.fill(1)","uuid":"7a17d27a-5835-45d3-b73c-87e3e140cb79","stop":1750252847474},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252847475,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"8d75a58b-42bb-4e64-8177-921bd1dfacce","stop":1750252847540},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252847541,"name":"expect.toBeVisible","uuid":"e139c82a-e582-4953-9d78-fa9deb87d4b0","stop":1750252847655},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252847656,"uuid":"6eeead48-f820-450b-8fd7-a5eff4ac2e10","stop":1750252847656},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252847656,"uuid":"a1991887-18bc-40e5-aa01-e01e36d9fbe8","stop":1750252847656}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252847656,"uuid":"c39d914e-8d40-4619-819b-46dc2c10a025","stop":1750252847663}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"}],"links":[],"start":1750252845302,"testCaseId":"31f03826b2a8da254be42b2d49bc35f3","fullName":"ui/recovery/recover-negative.spec.ts:23:7","stop":1750252847662} \ No newline at end of file diff --git a/allure-results/26c05bb0-0fcd-4d6d-8ad8-a9c079c9e4a6-result.json b/allure-results/26c05bb0-0fcd-4d6d-8ad8-a9c079c9e4a6-result.json new file mode 100644 index 0000000..2d62932 --- /dev/null +++ b/allure-results/26c05bb0-0fcd-4d6d-8ad8-a9c079c9e4a6-result.json @@ -0,0 +1 @@ +{"uuid":"26c05bb0-0fcd-4d6d-8ad8-a9c079c9e4a6","name":"Некорректное имя и фамилия (слишком длинные)","historyId":"7134a02a04b606099de5c920fb62990a:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252747044,"uuid":"89762db6-2c2d-4823-b31d-18a71dc26960","stop":1750252747847}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252747043,"uuid":"ec86c4df-9816-4514-a2b4-6b2809feba23","stop":1750252747847},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252747848,"uuid":"558a3ad3-5372-4ae5-8838-8c766cf67e6e","stop":1750252748101}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252747848,"uuid":"c2845d4d-2d10-4f4c-9475-bcc5e67abeac","stop":1750252748101}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252747041,"uuid":"5636dceb-9b8f-4996-be17-2d9e505f3e7c","stop":1750252748101},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252748102,"name":"page.goto(/login/registration)","uuid":"40d2d518-f0b8-473f-8192-b11f2b293daa","stop":1750252750678},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252750680,"name":"locator.fill(ААААААААААААААААААААААААААААААААААААААААААААААААААА)","uuid":"d4d6c4ae-5126-40a6-8fc0-d9051ec3059e","stop":1750252750748},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252750748,"name":"locator.fill(БББББББББББББББББББББББББББББББББББББББББББББББББББ)","uuid":"a0ec234d-c1b2-4074-98d2-ce0e7bb61735","stop":1750252750762},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252750764,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"ad3e52d6-ac2b-4859-bcd5-75c01d2e2fe0","stop":1750252750802},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252750803,"name":"expect.toBeVisible","uuid":"df9f7f8d-426a-4ec7-b67c-eb32b663f68f","stop":1750252750811},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252750811,"name":"expect.toBeVisible","uuid":"a8eda098-668e-44a4-8afe-730cc1f6f1d3","stop":1750252750856},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252750856,"uuid":"d50a198f-b68f-4e05-974b-7c64d9665da3","stop":1750252750856},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252750857,"uuid":"58420cf4-4a69-4290-a6b4-6c5aaf711aad","stop":1750252750857}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252750856,"uuid":"8cf1883d-c8d1-43fe-9d5a-84e170d3aa95","stop":1750252750880}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-57952-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750252747042,"testCaseId":"7134a02a04b606099de5c920fb62990a","fullName":"ui/registration/register.negative.spec.ts:16:7","stop":1750252750879} \ No newline at end of file diff --git a/allure-results/286b5287-b6e0-4d67-9075-59f4885f1165-result.json b/allure-results/286b5287-b6e0-4d67-9075-59f4885f1165-result.json new file mode 100644 index 0000000..7f30bad --- /dev/null +++ b/allure-results/286b5287-b6e0-4d67-9075-59f4885f1165-result.json @@ -0,0 +1 @@ +{"uuid":"286b5287-b6e0-4d67-9075-59f4885f1165","name":"Некорректное имя и фамилия (слишком длинные)","historyId":"7134a02a04b606099de5c920fb62990a:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253569410,"uuid":"81bf7064-0dba-46f0-bda5-b6051353fa30","stop":1750253569411}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253569410,"uuid":"5ea595dc-cb38-45a1-818a-080edfadd6c7","stop":1750253569412},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253569413,"uuid":"e6ab8c0a-874e-4337-b19d-59fd54475374","stop":1750253569450}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253569412,"uuid":"78b16eac-da1a-423e-be99-03a025bcfae4","stop":1750253569450}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253569409,"uuid":"24c8896a-3252-4bf5-9ecd-e4d47bbe009e","stop":1750253569450},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253569452,"name":"page.goto(/login/registration)","uuid":"704bee11-07d6-4378-b35e-90d1b9f06ad8","stop":1750253575330},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253575337,"name":"locator.fill(ААААААААААААААААААААААААААААААААААААААААААААААААААА)","uuid":"15f90992-a87c-42e3-aced-8035bfe3e351","stop":1750253575380},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253575386,"name":"locator.fill(БББББББББББББББББББББББББББББББББББББББББББББББББББ)","uuid":"2e29ab4a-2bd5-4f67-a757-ffd96303f08e","stop":1750253575420},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253575421,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"92ed1a48-9012-4858-bd86-b354dec834d7","stop":1750253575538},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253575539,"name":"expect.toBeVisible","uuid":"e811d55d-ffd6-4b5e-a558-2e96fb7f3604","stop":1750253575578},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253575579,"name":"expect.toBeVisible","uuid":"90b94831-5299-4073-bb24-64b119332df3","stop":1750253575585},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253575585,"uuid":"f8c5a99c-efb5-44ef-a0f4-04f4464fae7a","stop":1750253575585},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253575585,"uuid":"6f2ea075-4a37-4604-9b9e-646929fee513","stop":1750253575585}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253575585,"uuid":"1b63cd3e-e047-4fd7-9c5b-d37e3af3b6f1","stop":1750253577617}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750253569409,"testCaseId":"7134a02a04b606099de5c920fb62990a","fullName":"ui/registration/register.negative.spec.ts:16:7","stop":1750253577616} \ No newline at end of file diff --git a/allure-results/28c8ea8a-aa4e-4af0-add6-cf0f6935ac77-result.json b/allure-results/28c8ea8a-aa4e-4af0-add6-cf0f6935ac77-result.json new file mode 100644 index 0000000..bec0c8f --- /dev/null +++ b/allure-results/28c8ea8a-aa4e-4af0-add6-cf0f6935ac77-result.json @@ -0,0 +1 @@ +{"uuid":"28c8ea8a-aa4e-4af0-add6-cf0f6935ac77","name":"Пароли не совпадают","historyId":"a7eaebb1e41fbbf13bf61195120b3ce9:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253562799,"uuid":"9bed088e-5ade-4b8e-a371-4ca3cc3c2f3d","stop":1750253562800}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253562799,"uuid":"b777bc42-bba1-40d1-874d-a08d32fb858d","stop":1750253562801},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253562802,"uuid":"b9956592-1347-4699-aa2d-6d79649823d6","stop":1750253562839}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253562802,"uuid":"df32306e-0457-49c4-9829-fd811ff50da3","stop":1750253562839}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253562798,"uuid":"54017f88-1018-4eae-845a-f56c263f259a","stop":1750253562840},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253562840,"name":"page.goto(/recoverpassword)","uuid":"77fe4a45-50a7-4373-8228-a9581645c9df","stop":1750253563862},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253563865,"name":"locator.fill(autotest@example.com)","uuid":"e7326249-6b8f-4576-a770-1ebe7474dfef","stop":1750253563888},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253563889,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"b73e024c-8ac2-4a26-a2d0-49a36d842baf","stop":1750253563934},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253563934,"name":"locator.count(input[type=\"text\"])","uuid":"d31bb5c3-9da5-419d-b844-4da88513a78b","stop":1750253563937},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253563937,"name":"locator.fill(0)","uuid":"f785abb7-6623-493f-8c57-a9ffc5d24c6f","stop":1750253564050},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253564050,"name":"locator.fill(0)","uuid":"a3e57734-95e6-473c-b461-493796f9af85","stop":1750253564058},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253564058,"name":"locator.fill(0)","uuid":"401e2017-2ffb-44a1-b025-90b649b8f765","stop":1750253564069},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253564069,"name":"locator.fill(0)","uuid":"5cbc3b91-3b05-4b93-a489-7a15f94cbde4","stop":1750253564074},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253564075,"name":"locator.fill(0)","uuid":"cd150fd2-c9c3-48a2-bb7b-6b20356c0750","stop":1750253564079},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253564080,"name":"locator.fill(0)","uuid":"49a8b925-2cbc-4f3e-8fd2-545afc7aa855","stop":1750253564085},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253564086,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"c9a20dd0-ab54-4873-b6f0-97964a500a2a","stop":1750253564117},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253564117,"name":"locator.fill(!Test123456)","uuid":"9646fed8-eca7-4975-90b3-8c0c89aa28d1","stop":1750253564203},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253564203,"name":"locator.fill(!OtherPass123)","uuid":"5c0c44a9-28d5-4995-902c-4712950eaec5","stop":1750253564209},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253564209,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"bb57e8e8-4a2c-4be9-9586-edb38889e347","stop":1750253564251},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253564252,"name":"expect.toBeVisible","uuid":"9bd85a68-e38d-488f-a124-7047e476f4d9","stop":1750253564255},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253564255,"uuid":"843da859-7d0a-4671-a573-fdc3c398c02b","stop":1750253564255},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253564256,"uuid":"0204c345-ccb8-4757-a2e3-e8fce8d2b9ee","stop":1750253564256}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253564255,"uuid":"510fade0-d08f-4f07-8313-29bf9cd13a08","stop":1750253569426}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"}],"links":[],"start":1750253562798,"testCaseId":"a7eaebb1e41fbbf13bf61195120b3ce9","fullName":"ui/recovery/recover-negative.spec.ts:56:7","stop":1750253569425} \ No newline at end of file diff --git a/allure-results/2baa05dc-289b-44f7-aa95-d775695e6bd2-result.json b/allure-results/2baa05dc-289b-44f7-aa95-d775695e6bd2-result.json new file mode 100644 index 0000000..49dbaaf --- /dev/null +++ b/allure-results/2baa05dc-289b-44f7-aa95-d775695e6bd2-result.json @@ -0,0 +1 @@ +{"uuid":"2baa05dc-289b-44f7-aa95-d775695e6bd2","name":"Успешная регистрация нового пользователя","historyId":"3562648cd3231e14b42a7151c17c62aa:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252851087,"uuid":"5a2d72be-6dec-4e1e-ae8a-a0d3651fa25b","stop":1750252851093}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252851087,"uuid":"593a695a-aaf3-473a-987a-7da0eb539c39","stop":1750252851094},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252851095,"uuid":"36cf3e30-9f7a-4386-8c4b-05ee98cbbfb7","stop":1750252851288}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252851094,"uuid":"9680f677-a495-4440-89b7-dc6be6aa1ef4","stop":1750252851288}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252851086,"uuid":"417cf555-fe81-4440-a101-e771a83f234b","stop":1750252851288},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252851288,"name":"page.goto(/login/registration)","uuid":"02ba19a0-789d-49d1-8cbd-22e50e557564","stop":1750252853439},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252853440,"name":"locator.fill(Иван)","uuid":"43cc2a0f-d2a8-4c40-bffe-e44b429a136f","stop":1750252853481},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252853482,"name":"locator.fill(Тестов)","uuid":"52af5b3b-2e9e-4bcd-b096-a527596d5e12","stop":1750252853489},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252853489,"name":"locator.fill(Александрович)","uuid":"2eb266fa-f5bb-4d2e-b1aa-dfbd70f2d774","stop":1750252853497},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252853497,"name":"locator.getByPlaceholder('Учёное звание*').click","uuid":"35d9ebd5-8426-48f8-a650-58725ae11b20","stop":1750252853553},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252853553,"name":"locator.click(li >> internal:has-text=\"Доцент\"i)","uuid":"5d1013aa-849e-4d78-b062-09d1d98cb144","stop":1750252853602},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252853603,"name":"locator.getByPlaceholder('Учёная степень*').click","uuid":"74b0b933-9811-4f44-8c41-7e40062d21e8","stop":1750252853732},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252853732,"name":"locator.click(li >> internal:has-text=\"Кандидат наук\"i)","uuid":"9a7fda7b-b6ce-4890-9b86-d18fefecfc02","stop":1750252854154},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252854155,"name":"locator.fill(Преподаватель)","uuid":"7b9c2932-561e-4a46-a37f-b172730b9b5f","stop":1750252854164},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252854164,"name":"locator.fill(ЮФУ)","uuid":"a5c56193-52fc-47f8-af63-5b21f75fc08e","stop":1750252854175},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252854176,"name":"locator.fill(autotest17716@example.com)","uuid":"c6ad6e3c-a79f-42c1-8d28-0d1e9a71a4aa","stop":1750252854184},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252854184,"name":"locator.fill(+79000017716)","uuid":"47773b65-3b91-4821-9885-ba8776068210","stop":1750252854198},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252854199,"name":"locator.fill(!Test123456)","uuid":"5272381f-2eaf-456f-8f9f-4610a801e285","stop":1750252854221},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252854222,"name":"locator.fill(!Test123456)","uuid":"bad34505-7346-479a-8b5c-4bb1c299be1a","stop":1750252854239},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252854239,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"972a7671-f998-40e8-aa85-d0d3707e9086","stop":1750252854305},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252854306,"name":"expect.toHaveURL","uuid":"faca9668-3c18-459f-aa99-b0adbb5c4149","stop":1750252854677},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252854678,"name":"expect.toBeVisible","uuid":"c4632edd-fdd3-41cc-81a8-b1f4d97bc72f","stop":1750252854754},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252854754,"uuid":"da7a919d-7805-4899-8bfc-856f3d2f81f6","stop":1750252854754},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252854754,"uuid":"3cba82fe-8f42-4be3-b3de-cf68afc0bf85","stop":1750252854754}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252854754,"uuid":"192ab69b-a4f5-4a26-af86-87dd2a7f7500","stop":1750252854768}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.spec.ts"},{"name":"titlePath","value":" > firefox > ui/registration/register.spec.ts > Позитивные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-3"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/registration/register.spec.ts"},{"name":"subSuite","value":"Позитивные сценарии регистрации"}],"links":[],"start":1750252851086,"testCaseId":"3562648cd3231e14b42a7151c17c62aa","fullName":"ui/registration/register.spec.ts:6:7","stop":1750252854766} \ No newline at end of file diff --git a/allure-results/2bbb175b-d47a-43ee-8617-265124ea6b87-result.json b/allure-results/2bbb175b-d47a-43ee-8617-265124ea6b87-result.json new file mode 100644 index 0000000..69a7980 --- /dev/null +++ b/allure-results/2bbb175b-d47a-43ee-8617-265124ea6b87-result.json @@ -0,0 +1 @@ +{"uuid":"2bbb175b-d47a-43ee-8617-265124ea6b87","name":"Слишком длинное название организации","historyId":"26486147b8778ca2341563049d2a3728:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253632680,"uuid":"4b7a9a14-7ebd-4d0b-a33f-d16bcea1f79c","stop":1750253632682}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253632680,"uuid":"883c9f1a-d2c3-42dd-8f85-0270445b22e4","stop":1750253632683},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253632683,"uuid":"55bc8d13-48ba-403e-a8e8-d5cbd3f7f78d","stop":1750253632796}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253632683,"uuid":"c929b3cf-a166-4e94-b8e3-5e34d3f8a9df","stop":1750253632796}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253632679,"uuid":"5e7f5fb2-e26c-4be8-9bae-2925b04d9186","stop":1750253632796},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253632797,"name":"page.goto(/login/registration)","uuid":"29615c6e-cf0d-468a-b210-c4ababb47600","stop":1750253633589},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253633590,"name":"locator.fill(Иван)","uuid":"dc8a4828-b602-4698-aa77-636ad0e4027c","stop":1750253633651},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253633651,"name":"locator.fill(Иванов)","uuid":"700ca8a9-0814-4e5c-8137-96f2502a6fab","stop":1750253633660},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253633661,"name":"locator.getByPlaceholder('Учёное звание*').click","uuid":"be4b8423-2230-49e4-9862-a12375de5bff","stop":1750253633714},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253633714,"name":"locator.click(li >> internal:has-text=\"Доцент\"i)","uuid":"2c14c245-b1a3-40b5-9248-f7a17957d264","stop":1750253634126},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253634126,"name":"locator.getByPlaceholder('Учёная степень*').click","uuid":"f0659f44-0f1c-4d26-bcde-37334b490a0b","stop":1750253634509},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253634509,"name":"locator.click(li >> internal:has-text=\"Кандидат наук\"i)","uuid":"601b42ff-fe92-4b35-9120-97b7d86dbcaa","stop":1750253634560},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253634560,"name":"locator.fill(Преподаватель)","uuid":"0083781e-11ab-4848-9b99-4dafd00a183b","stop":1750253634586},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253634587,"name":"locator.fill(ООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООО)","uuid":"9d4af8b6-81a2-4eaa-ba37-3bbb710d458f","stop":1750253634595},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253634596,"name":"locator.fill(test1750253633589@example.com)","uuid":"31a050b4-2db8-4b05-90f5-12fb134f4325","stop":1750253634605},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253634607,"name":"locator.fill(+79990866063)","uuid":"be5e47d5-454b-4b04-baf8-e8c8ba499b6e","stop":1750253634646},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253634647,"name":"locator.fill(!Test123)","uuid":"b2396a45-965c-4b0b-a0f1-2e9a1680c01f","stop":1750253634664},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253634664,"name":"locator.fill(!Test123)","uuid":"f75d3b38-10ae-49a5-9515-c12b3c215b53","stop":1750253634693},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253634694,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"9315f315-86db-4cd1-8da9-5cf550d847f1","stop":1750253634745},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253634745,"name":"expect.toBeVisible","uuid":"c18d9d6d-bb6b-44ba-9cfe-ba8902439219","stop":1750253634852},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253634852,"uuid":"2c0cb863-2728-411b-8bda-943546e9d81b","stop":1750253634852},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253634852,"uuid":"6f8b2d9a-33c9-4cfb-9b74-a285b076190e","stop":1750253634852}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253634852,"uuid":"a1f0ed90-eaa4-4701-bd3d-5442a2aa1037","stop":1750253634954}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-0"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750253632679,"testCaseId":"26486147b8778ca2341563049d2a3728","fullName":"ui/registration/register.negative.spec.ts:48:7","stop":1750253634953} \ No newline at end of file diff --git a/allure-results/2bf5eff2-8bfd-4335-8dca-9f7bacb71976-result.json b/allure-results/2bf5eff2-8bfd-4335-8dca-9f7bacb71976-result.json new file mode 100644 index 0000000..f006ad8 --- /dev/null +++ b/allure-results/2bf5eff2-8bfd-4335-8dca-9f7bacb71976-result.json @@ -0,0 +1 @@ +{"uuid":"2bf5eff2-8bfd-4335-8dca-9f7bacb71976","name":"Оба поля пустые","historyId":"58990385f74407307e4ace7ad02abf05:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252811791,"uuid":"22f06d2c-5853-4a5a-ba5e-8aa60a72b454","stop":1750252811792}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252811790,"uuid":"50e33535-1e93-44b6-af02-b63e0c195998","stop":1750252811792},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252811792,"uuid":"b2f46460-fd3d-4497-9bcb-3d0b32eebacd","stop":1750252811833}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252811792,"uuid":"e43b8233-ef5d-45bf-a5d9-0a37eeffec8f","stop":1750252811833}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252811790,"uuid":"69b4f1f7-25b2-43fc-9e0e-809ea8229055","stop":1750252811833},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252811834,"name":"page.goto(/login/authorization)","uuid":"7ef352a8-61d7-4629-b5c6-54e4e3e80dab","stop":1750252812540},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252812541,"name":"locator.fill()","uuid":"a4d341bc-f902-44b6-af56-0f3a974cd487","stop":1750252812599},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252812599,"name":"locator.fill()","uuid":"0f925d33-fab5-427c-915e-26814c6597a7","stop":1750252812632},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252812632,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"b344a901-a3ce-42f4-aed6-75738b6085ae","stop":1750252812676},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252812677,"name":"expect.toBeVisible","uuid":"5da0ccc6-f945-4c89-b041-a55943ea29f2","stop":1750252812682},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252812682,"name":"expect.toBeVisible","uuid":"2774a1da-5135-41b5-81e8-a5c6d97adf52","stop":1750252812684},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252812684,"uuid":"437cfbd9-1e70-43ed-bcb8-4b384e976a34","stop":1750252812684},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252812685,"uuid":"53d036fd-fea8-4919-9527-b6af31421ba4","stop":1750252812685}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252812684,"uuid":"44c5f3dd-6e9a-45b8-8f7a-3d73975bda8b","stop":1750252812689}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"}],"links":[],"start":1750252811790,"testCaseId":"58990385f74407307e4ace7ad02abf05","fullName":"ui/login/login.negative.spec.ts:27:7","stop":1750252812688} \ No newline at end of file diff --git a/allure-results/2e567d28-b4ce-496d-a7b6-2c08c6e87ec0-result.json b/allure-results/2e567d28-b4ce-496d-a7b6-2c08c6e87ec0-result.json new file mode 100644 index 0000000..34f64dd --- /dev/null +++ b/allure-results/2e567d28-b4ce-496d-a7b6-2c08c6e87ec0-result.json @@ -0,0 +1 @@ +{"uuid":"2e567d28-b4ce-496d-a7b6-2c08c6e87ec0","name":"Пустое поле \"Повторите пароль\"","historyId":"e6d2fb91f0b85b95c3962ffc860dddd7:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252845856,"uuid":"a0f129ea-9b9a-49bf-8c94-cb25306c1521","stop":1750252845861}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252845856,"uuid":"26fcefb0-670e-46b9-ae1c-4a1616086fb3","stop":1750252845861},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252845862,"uuid":"ac0bc402-34f7-46f7-88f6-f4924e1a8494","stop":1750252846021}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252845861,"uuid":"1d491143-cb6f-45cd-9bf8-b7951af22113","stop":1750252846021}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252845855,"uuid":"46a7c523-4934-490d-ba22-54824f9007b3","stop":1750252846021},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252846022,"name":"page.goto(/recoverpassword)","uuid":"5009e6b9-2202-4e37-97ea-d906724603bd","stop":1750252847357},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252847358,"name":"locator.fill(autotest@example.com)","uuid":"e7f902f6-8c89-4e62-8fcf-e798e48d5e1b","stop":1750252847422},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252847423,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"f3f25cb0-0009-4fae-923a-4ffa1feef3e0","stop":1750252847527},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252847528,"name":"locator.count(input[type=\"text\"])","uuid":"d34963c7-fa4b-4d9b-8658-2a2fca80ade2","stop":1750252847531},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252847532,"name":"locator.fill(0)","uuid":"33acabb1-3844-41ab-a612-df1042b5a57c","stop":1750252847631},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252847631,"name":"locator.fill(0)","uuid":"e6290574-7e1d-4936-acdb-ef22e373b499","stop":1750252847636},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252847637,"name":"locator.fill(0)","uuid":"a012e7dd-02d9-4182-9c61-96eef73d8fa5","stop":1750252847642},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252847643,"name":"locator.fill(0)","uuid":"aa24166c-8332-406e-9032-a99cc02e2f2f","stop":1750252847652},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252847653,"name":"locator.fill(0)","uuid":"ecd25225-e5fb-487e-9439-367883d43a87","stop":1750252847658},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252847659,"name":"locator.fill(0)","uuid":"86f3cb04-7d21-4b35-9691-7a37e14bcd83","stop":1750252847673},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252847673,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"4df0ac0e-7228-43cd-89b4-fc0a6378f1ae","stop":1750252847734},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252847735,"name":"locator.fill(!Test123456)","uuid":"21756fbd-08e7-433a-9f4b-471bc1629771","stop":1750252847837},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252847838,"name":"locator.fill()","uuid":"1b849f91-af15-473f-906d-9154be32c0f9","stop":1750252847852},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252847853,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"8b269f3b-63d6-4631-9abb-201fc206fb6e","stop":1750252847902},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252847903,"name":"expect.toBeVisible","uuid":"60202d81-171b-4b7b-b1fd-007b4bc8c4c8","stop":1750252847908},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252847908,"uuid":"93b37358-7f05-4900-8f69-85ffd48a18be","stop":1750252847908},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252847908,"uuid":"9b3766b0-50fd-40c3-9892-5ae24a129cd0","stop":1750252847909}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252847908,"uuid":"43e2cd6a-5b5f-4924-a6d3-4a088bc4cfa1","stop":1750252847922}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-3"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"}],"links":[],"start":1750252845854,"testCaseId":"e6d2fb91f0b85b95c3962ffc860dddd7","fullName":"ui/recovery/recover-negative.spec.ts:45:7","stop":1750252847920} \ No newline at end of file diff --git a/allure-results/2f3e0cd8-3d9a-4d21-8e7a-d9871a8762f0-result.json b/allure-results/2f3e0cd8-3d9a-4d21-8e7a-d9871a8762f0-result.json new file mode 100644 index 0000000..3888b2d --- /dev/null +++ b/allure-results/2f3e0cd8-3d9a-4d21-8e7a-d9871a8762f0-result.json @@ -0,0 +1 @@ +{"uuid":"2f3e0cd8-3d9a-4d21-8e7a-d9871a8762f0","name":"Пароли не совпадают","historyId":"a7eaebb1e41fbbf13bf61195120b3ce9:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserType.launch","start":1750252820412,"uuid":"a341aa86-e6d4-439d-adcc-d48b429b36d2","stop":1750252820524}],"attachments":[],"parameters":[],"name":"fixture: browser","start":1750252820410,"uuid":"681a6f7b-2ce7-49a0-9a00-6af21771a4e8","stop":1750252820524},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252820526,"uuid":"ff363e19-42db-4e42-b20d-cf2007c245e4","stop":1750252820532}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252820525,"uuid":"f4dfc602-eeb6-46b1-a0aa-093834fa4a63","stop":1750252820533},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252820534,"uuid":"bf56d3d9-5471-4b1a-bbfe-880bf2cb8a7c","stop":1750252820618}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252820533,"uuid":"2a4ecceb-8651-4a9c-8204-e7049d9c32c6","stop":1750252820618}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252820407,"uuid":"611735ef-b556-4e69-a8fc-7251e52093a6","stop":1750252820618},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252820620,"name":"page.goto(/recoverpassword)","uuid":"e2bc6a78-1d8f-48ac-9355-109e10f80664","stop":1750252821458},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252821459,"name":"locator.fill(autotest@example.com)","uuid":"b3733002-9fdd-4d2f-a8a8-4c581395710f","stop":1750252821535},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252821538,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"131b33f2-1dee-4c4f-ae70-5ceb1a0b0aa0","stop":1750252821602},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252821603,"name":"locator.count(input[type=\"text\"])","uuid":"cf26837e-1286-4fec-959d-39f1ddc8cf4b","stop":1750252821610},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252821611,"name":"locator.fill(0)","uuid":"63d7bda3-4d19-4fba-823c-14cddf8554a9","stop":1750252824415},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252824416,"name":"locator.fill(0)","uuid":"3b15614f-64c0-4f57-b0d8-a725e2fe953c","stop":1750252824426},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252824428,"name":"locator.fill(0)","uuid":"a3a7033a-5255-46f8-ac55-7390b3d3cb8d","stop":1750252824438},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252824439,"name":"locator.fill(0)","uuid":"51a7d75a-550d-4dc1-bca6-518ffa6d75ab","stop":1750252824443},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252824443,"name":"locator.fill(0)","uuid":"90dcc99c-31f9-4ccd-9b1d-a65509044fbb","stop":1750252824447},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252824447,"name":"locator.fill(0)","uuid":"e44e7a3b-9d10-4224-a139-b1d15ec1d4d1","stop":1750252824451},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252824453,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"4b462ed7-ac6b-442c-875f-c3864fd338cf","stop":1750252824493},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252824493,"name":"locator.fill(!Test123456)","uuid":"9a5521ee-b4e2-4a57-bf83-2ec67dea3dbe","stop":1750252824574},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252824575,"name":"locator.fill(!OtherPass123)","uuid":"bc6f6479-798f-4598-99e2-ce49ffb725ee","stop":1750252824585},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252824587,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"e3e1ad28-aac3-4603-bd72-997e6fa359b9","stop":1750252824627},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252824633,"name":"expect.toBeVisible","uuid":"cfe3d5e4-5ced-4bb1-961c-63b55aded628","stop":1750252824643},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252824646,"uuid":"309bb58b-c5fb-4251-8b67-2c2c81521545","stop":1750252824646},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252824646,"uuid":"cbf90f3a-47a0-47fc-8392-373a11160946","stop":1750252824646}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252824644,"uuid":"f5927a8b-c2ea-42c6-b13c-5c76de9d2468","stop":1750252824653}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"}],"links":[],"start":1750252820406,"testCaseId":"a7eaebb1e41fbbf13bf61195120b3ce9","fullName":"ui/recovery/recover-negative.spec.ts:56:7","stop":1750252824534} \ No newline at end of file diff --git a/allure-results/34bb0d92-77e2-433f-8cac-4de42986e3cf-result.json b/allure-results/34bb0d92-77e2-433f-8cac-4de42986e3cf-result.json new file mode 100644 index 0000000..acb3019 --- /dev/null +++ b/allure-results/34bb0d92-77e2-433f-8cac-4de42986e3cf-result.json @@ -0,0 +1 @@ +{"uuid":"34bb0d92-77e2-433f-8cac-4de42986e3cf","name":"Переход по ссылке \"Зарегистрируйтесь\"","historyId":"62db9603623bba26b6305edb541ef4fa:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserType.launch","start":1750253580620,"uuid":"0a271484-86a6-4ae1-bb55-971e744c2a06","stop":1750253582026}],"attachments":[],"parameters":[],"name":"fixture: browser","start":1750253580618,"uuid":"29c82843-3087-46a9-b294-d0a1682b7767","stop":1750253582026},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253582031,"uuid":"10b9b0b7-f82e-4ad7-8a80-51c8163f3ea3","stop":1750253582245}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253582028,"uuid":"1ed99ed0-5a29-4b89-87ec-197e6b298766","stop":1750253582265},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253582267,"uuid":"9a2f3a00-5721-4eec-81b6-0511feb69b8e","stop":1750253582771}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253582266,"uuid":"4f17a4df-0a84-429b-bdb4-907e893f9f5a","stop":1750253582771}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253580605,"uuid":"7efb25fc-0786-4793-8360-ecec1b688a12","stop":1750253582771},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253582773,"name":"page.goto(/login/authorization)","uuid":"08883de4-43ca-487c-90d5-0441408ed0f9","stop":1750253591682},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253591685,"name":"locator.getByText('Зарегистрируйтесь').click","uuid":"47970437-d6fe-4088-9d0a-f10d8eeea283","stop":1750253591777},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253591780,"name":"expect.toHaveURL","uuid":"0024dfe3-d9f1-484a-b6ab-16e13db70e71","stop":1750253591798},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253591798,"name":"expect.toBeVisible","uuid":"597782af-18d1-4775-bf4a-3672f3803ffc","stop":1750253591808},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253591808,"uuid":"e523bff2-43f8-4ed8-bf8e-ccb36423df59","stop":1750253591808},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253591808,"uuid":"cb178667-485b-478d-899d-55c667261475","stop":1750253591808}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253591808,"uuid":"af522d78-ff97-46b2-84fc-776e34989353","stop":1750253591856}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-1"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"}],"links":[],"start":1750253580604,"testCaseId":"62db9603623bba26b6305edb541ef4fa","fullName":"ui/login/login.link.spec.ts:15:5","stop":1750253590440} \ No newline at end of file diff --git a/allure-results/358b93d2-b22b-458d-83a7-ee77fc289325-result.json b/allure-results/358b93d2-b22b-458d-83a7-ee77fc289325-result.json new file mode 100644 index 0000000..e78f2db --- /dev/null +++ b/allure-results/358b93d2-b22b-458d-83a7-ee77fc289325-result.json @@ -0,0 +1 @@ +{"uuid":"358b93d2-b22b-458d-83a7-ee77fc289325","name":"Слишком длинная должность","historyId":"2214c0f917091cfcda832cd03e01bb76:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252862651,"uuid":"9ed6005f-5a8c-47a9-94f2-9d0e0d7e3830","stop":1750252862661}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252862648,"uuid":"5c9db6b2-4ce6-43a4-baac-8327767b783a","stop":1750252862662},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252862663,"uuid":"cfa574dd-f4dd-4304-846a-59ed8c310654","stop":1750252862808}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252862662,"uuid":"7a0c753c-a075-45b5-9a4b-94088f010dde","stop":1750252862808}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252862646,"uuid":"ac59f33f-4f10-4031-a170-950dd3b17845","stop":1750252862808},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252862810,"name":"page.goto(/login/registration)","uuid":"5ea59352-f36e-47c7-9376-1ac8c0b08df3","stop":1750252863559},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252863560,"name":"locator.fill(XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX)","uuid":"f47d1ebd-0814-41c4-851f-388a07610f46","stop":1750252863634},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252863635,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"de933890-0321-4488-a869-b074651dcf48","stop":1750252863702},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252863703,"name":"expect.toBeVisible","uuid":"409b16de-9ec9-493d-93f9-93b99acbd1cc","stop":1750252863715},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252863716,"uuid":"b9bedc44-c145-4d5e-839b-6e1ba1e79e8f","stop":1750252863716},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252863716,"uuid":"09650f47-6dc7-46b2-a192-926863741213","stop":1750252863716}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252863716,"uuid":"31322353-ea27-482e-87c3-43b194386195","stop":1750252863723}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-2"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750252862644,"testCaseId":"2214c0f917091cfcda832cd03e01bb76","fullName":"ui/registration/register.negative.spec.ts:38:7","stop":1750252863718} \ No newline at end of file diff --git a/allure-results/379b596b-2e58-4998-9012-d4bf98925fe4-result.json b/allure-results/379b596b-2e58-4998-9012-d4bf98925fe4-result.json new file mode 100644 index 0000000..9ca9822 --- /dev/null +++ b/allure-results/379b596b-2e58-4998-9012-d4bf98925fe4-result.json @@ -0,0 +1 @@ +{"uuid":"379b596b-2e58-4998-9012-d4bf98925fe4","name":"Некорректный email формат","historyId":"de8c598c53adc6e2133478f1b9141597:b444eb0fbe6390c71e68b51dd25701fc","status":"failed","statusDetails":{"message":"Error: page.goto: Target page, context or browser has been closed\nCall log:\n - navigating to \"https://ssas.dev.rdcenter.ru/login/registration\", waiting until \"load\"\n","trace":"Error: page.goto: Target page, context or browser has been closed\nCall log:\n - navigating to \"https://ssas.dev.rdcenter.ru/login/registration\", waiting until \"load\"\n\n at RegisterPage.goto (/Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/page-objects/RegisterPage.ts:81:21)\n at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.negative.spec.ts:30:24"},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252791923,"uuid":"7283c223-1218-4d8b-a632-2fb77f171cd2","stop":1750252792594}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252791922,"uuid":"e34e50f1-26e7-468a-a522-692bb271bb7c","stop":1750252792594},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252792595,"uuid":"bf7372df-85a4-4b05-b859-4ade10e70382","stop":1750252792766}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252792594,"uuid":"7d513e09-dd1d-4a67-ad76-968352eeb952","stop":1750252792767}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252791920,"uuid":"e206eb9e-abc8-4146-8058-72e067e01de3","stop":1750252792767},{"status":"failed","statusDetails":{"message":"Error: page.goto: Target page, context or browser has been closed\nCall log:\n - navigating to \"https://ssas.dev.rdcenter.ru/login/registration\", waiting until \"load\"\n","trace":"Error: page.goto: Target page, context or browser has been closed\nCall log:\n - navigating to \"https://ssas.dev.rdcenter.ru/login/registration\", waiting until \"load\"\n\n at RegisterPage.goto (/Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/page-objects/RegisterPage.ts:81:21)\n at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.negative.spec.ts:30:24"},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252792768,"name":"page.goto(/login/registration)","uuid":"5c8c1d43-fb9c-4545-a6aa-ac28c846b84d","stop":1750252795301},{"statusDetails":{},"stage":"finished","steps":[],"attachments":[{"name":"_error-context-0","source":"fbcffb41-682b-4a9e-bd19-1de068d13574-attachment.md","type":"text/markdown"}],"parameters":[],"start":1750252795326,"name":"_error-context-0","stop":1750252795326},{"status":"failed","statusDetails":{"message":"Error: browserContext._wrapApiCall: Target page, context or browser has been closed","trace":"Error: browserContext._wrapApiCall: Target page, context or browser has been closed"},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252795292,"uuid":"888bcfde-dcb1-4375-8a78-3eff20f505a6","stop":1750252795292},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252795292,"uuid":"915a3b28-7890-4c7b-b060-935fcf7a1cd5","stop":1750252795292}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252795291,"uuid":"422058d8-166f-4eff-ae92-a6a9608142a9","stop":1750252795308}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-57952-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750252791920,"testCaseId":"de8c598c53adc6e2133478f1b9141597","fullName":"ui/registration/register.negative.spec.ts:28:7","stop":1750252795300} \ No newline at end of file diff --git a/allure-results/37eecfcd-2f2c-4a67-b613-7bd1533e5658-result.json b/allure-results/37eecfcd-2f2c-4a67-b613-7bd1533e5658-result.json new file mode 100644 index 0000000..973510d --- /dev/null +++ b/allure-results/37eecfcd-2f2c-4a67-b613-7bd1533e5658-result.json @@ -0,0 +1 @@ +{"uuid":"37eecfcd-2f2c-4a67-b613-7bd1533e5658","name":"Отправка пустой формы","historyId":"61b0fd9a6b9153c787b71ef3413cea92:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserType.launch","start":1750252781055,"uuid":"0bd1d72a-e7ac-4638-9df6-49245e63b2f5","stop":1750252781711}],"attachments":[],"parameters":[],"name":"fixture: browser","start":1750252781054,"uuid":"b1de27c7-cda0-4c10-8dfb-90316db301ac","stop":1750252781711},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252781712,"uuid":"a360ee34-ab2a-4caa-8b94-763e8af6f4d4","stop":1750252782422}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252781711,"uuid":"805c4c84-7731-4b2c-b8a5-f995b42ec413","stop":1750252782423},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252782424,"uuid":"6677feab-219d-4a23-8c6a-da14939ba4df","stop":1750252782933}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252782424,"uuid":"f549544b-2762-4c36-9ebe-9a09acf5c15f","stop":1750252782933}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252781051,"uuid":"d58a6be9-4c19-496f-83ba-9089d74f72ba","stop":1750252782933},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252782937,"name":"page.goto(/login/registration)","uuid":"508b9e81-4aac-4681-aa8b-e9049f357cd0","stop":1750252788110},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252788117,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"34da6434-fce8-4499-afc5-d56ebef97fe3","stop":1750252788228},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252788229,"name":"locator.allTextContents(div[name=\"error\"] >> internal:has-text=\"Поле обязательно для заполнения\"i)","uuid":"db165cb0-ac50-4f44-9cc0-e868ba4ddbb3","stop":1750252788238},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252788240,"name":"expect.toBeGreaterThan","uuid":"bfd22fbd-e150-49da-96d1-cefa2e1a5781","stop":1750252788240},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252788241,"name":"expect.toBeVisible","uuid":"a60d751e-fe54-4aac-9a52-4bcc263f72f0","stop":1750252788253},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252788254,"uuid":"4cb882e2-32c4-4807-8b76-fb82e0dc17c9","stop":1750252788254},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252788254,"uuid":"ed0ae375-2fe9-4d35-88c0-9cdd62d7b4af","stop":1750252788254}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252788253,"uuid":"2d86510b-c320-4ec6-9fe4-f91722080e70","stop":1750252788269}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-57952-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750252781050,"testCaseId":"61b0fd9a6b9153c787b71ef3413cea92","fullName":"ui/registration/register.negative.spec.ts:6:7","stop":1750252787606} \ No newline at end of file diff --git a/allure-results/38aef399-3362-4e9b-813f-414afef00d3d-result.json b/allure-results/38aef399-3362-4e9b-813f-414afef00d3d-result.json new file mode 100644 index 0000000..4189764 --- /dev/null +++ b/allure-results/38aef399-3362-4e9b-813f-414afef00d3d-result.json @@ -0,0 +1 @@ +{"uuid":"38aef399-3362-4e9b-813f-414afef00d3d","name":"Некорректное имя и фамилия (слишком длинные)","historyId":"7134a02a04b606099de5c920fb62990a:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252824658,"uuid":"2dd9ddbc-576d-4e05-9c20-89d4243c3a2a","stop":1750252824659}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252824658,"uuid":"a9988042-272d-436b-a2eb-c2c5b7a92012","stop":1750252824659},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252824660,"uuid":"fa07348b-6ee2-47ed-ba35-9d1c93e8ada6","stop":1750252824709}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252824659,"uuid":"483c646e-79b5-4036-9f03-6dd9e64967bb","stop":1750252824709}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252824657,"uuid":"dbf8403b-945f-4078-94f9-f5f185bae26f","stop":1750252824709},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252824711,"name":"page.goto(/login/registration)","uuid":"41f118a5-fce0-4d6a-a5f4-02e21ac21962","stop":1750252825939},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252825939,"name":"locator.fill(ААААААААААААААААААААААААААААААААААААААААААААААААААА)","uuid":"0caf2661-cf33-4830-b57e-982b55592362","stop":1750252825990},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252825990,"name":"locator.fill(БББББББББББББББББББББББББББББББББББББББББББББББББББ)","uuid":"46e2f0ae-4584-4bd0-b793-556cb80743d2","stop":1750252825994},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252825995,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"6449f3a1-1399-48e7-85f6-662922193520","stop":1750252826024},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252826024,"name":"expect.toBeVisible","uuid":"e127b1a0-5bcf-4894-b92d-9022654ee318","stop":1750252826026},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252826026,"name":"expect.toBeVisible","uuid":"c3e817ed-ae62-4aef-a574-0a7f47509b10","stop":1750252826028},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252826028,"uuid":"ae994c93-d1ed-46f5-8654-f06a69e1a730","stop":1750252826028},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252826028,"uuid":"c94c9c57-08f1-45b9-97eb-7e5ef2025d97","stop":1750252826028}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252826028,"uuid":"726225fa-8ca4-44ff-a2d3-b3f470a423fd","stop":1750252826032}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750252824657,"testCaseId":"7134a02a04b606099de5c920fb62990a","fullName":"ui/registration/register.negative.spec.ts:16:7","stop":1750252826030} \ No newline at end of file diff --git a/allure-results/3ae5e79b-1538-4abd-ae90-375190fe360b-result.json b/allure-results/3ae5e79b-1538-4abd-ae90-375190fe360b-result.json new file mode 100644 index 0000000..1760455 --- /dev/null +++ b/allure-results/3ae5e79b-1538-4abd-ae90-375190fe360b-result.json @@ -0,0 +1 @@ +{"uuid":"3ae5e79b-1538-4abd-ae90-375190fe360b","name":"Переход по ссылке \"Зарегистрируйтесь\"","historyId":"62db9603623bba26b6305edb541ef4fa:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserType.launch","start":1750253470952,"uuid":"dde288f9-eed2-4c12-bb2e-c7be2e4e1ad9","stop":1750253471347}],"attachments":[],"parameters":[],"name":"fixture: browser","start":1750253470950,"uuid":"253c164b-d19f-44b8-b3de-e9a546c97f03","stop":1750253471348},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253471349,"uuid":"88913883-88bc-4831-a85f-d405b8b4d0af","stop":1750253471361}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253471348,"uuid":"e2404035-7495-41f5-897c-a7d4fadf4574","stop":1750253471401},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253471402,"uuid":"e47817fc-0bf8-448a-849b-2cf04ad1295e","stop":1750253471645}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253471401,"uuid":"0fafdc94-f653-4cbc-a4a6-72923d010ad9","stop":1750253471645}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253470945,"uuid":"cc085063-87fc-416c-8a04-f30d779ca53d","stop":1750253471645},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253471651,"name":"page.goto(/login/authorization)","uuid":"30450c3c-3ba8-4085-8f84-45f50a209b6e","stop":1750253472923},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253472927,"name":"locator.getByText('Зарегистрируйтесь').click","uuid":"c1c879bc-8d3f-42f4-8081-c6fa1da9b98e","stop":1750253472999},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253473000,"name":"expect.toHaveURL","uuid":"860b71e0-dc94-47b1-af46-a81fed9f9ecd","stop":1750253473043},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253473044,"name":"expect.toBeVisible","uuid":"23819a9a-5934-4d4f-927b-6e92c289bc73","stop":1750253473053},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253473054,"uuid":"6b23533b-1b36-4d84-921d-c6de1c48be14","stop":1750253473054},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253473054,"uuid":"3b9ef319-adcc-43fa-91f4-9553d4e80f6a","stop":1750253473054}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253473054,"uuid":"03a2be9b-c1ab-4329-be5c-0c743d20ae05","stop":1750253478295}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"}],"links":[],"start":1750253470949,"testCaseId":"62db9603623bba26b6305edb541ef4fa","fullName":"ui/login/login.link.spec.ts:15:5","stop":1750253477898} \ No newline at end of file diff --git a/allure-results/3c55d245-f2c4-4f69-b101-2c96a7839047-result.json b/allure-results/3c55d245-f2c4-4f69-b101-2c96a7839047-result.json new file mode 100644 index 0000000..550f0e5 --- /dev/null +++ b/allure-results/3c55d245-f2c4-4f69-b101-2c96a7839047-result.json @@ -0,0 +1 @@ +{"uuid":"3c55d245-f2c4-4f69-b101-2c96a7839047","name":"Слишком длинное название организации","historyId":"26486147b8778ca2341563049d2a3728:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253498003,"uuid":"8bdfa7f6-286d-425a-8c9b-40b25c9c5fd4","stop":1750253498005}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253498003,"uuid":"86bac2e1-b09d-4572-8a21-d3ebad36192d","stop":1750253498006},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253498007,"uuid":"cd115b21-045d-4be1-b67b-0e9c4b6ffea1","stop":1750253498043}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253498006,"uuid":"66879f23-f7cc-4709-bc74-f398dcfff9df","stop":1750253498043}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253498002,"uuid":"05fcef35-7dcb-475b-bbba-267cf198d3cb","stop":1750253498043},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253498044,"name":"page.goto(/login/registration)","uuid":"bf9a1d47-a37c-449f-92b2-0f8203b5a738","stop":1750253503306},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253503311,"name":"locator.fill(Иван)","uuid":"71f910fd-f2a5-41cc-86d7-168858e29a32","stop":1750253503351},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253503352,"name":"locator.fill(Иванов)","uuid":"e9701a4d-0b16-4e65-9254-36a103c2d455","stop":1750253503360},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253503361,"name":"locator.getByPlaceholder('Учёное звание*').click","uuid":"397351ac-8cab-4597-abd5-e5de0096fc69","stop":1750253503409},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253503410,"name":"locator.click(li >> internal:has-text=\"Доцент\"i)","uuid":"b779e06f-4e1a-4009-af4c-03a362489ffa","stop":1750253503476},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253503476,"name":"locator.getByPlaceholder('Учёная степень*').click","uuid":"20afac20-585f-401f-9474-b4b443177e9f","stop":1750253503593},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253503594,"name":"locator.click(li >> internal:has-text=\"Кандидат наук\"i)","uuid":"a2a23a32-adfd-4160-a7ca-d683624f9612","stop":1750253503641},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253503642,"name":"locator.fill(Преподаватель)","uuid":"597297a6-1f1f-495c-b8be-02e63db34b1f","stop":1750253503651},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253503652,"name":"locator.fill(ООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООО)","uuid":"21ffa493-0057-488f-a5d0-c9cb9d037a8d","stop":1750253503658},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253503659,"name":"locator.fill(test1750253503306@example.com)","uuid":"cd3f54d8-663c-48a8-a569-014aa0663457","stop":1750253503668},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253503669,"name":"locator.fill(+79990969196)","uuid":"10a8953f-8d3b-48ff-8857-2f614706326f","stop":1750253503678},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253503679,"name":"locator.fill(!Test123)","uuid":"8247b414-962c-43e1-b6c9-14c2abf7afd5","stop":1750253503701},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253503702,"name":"locator.fill(!Test123)","uuid":"6861df90-8072-4bb0-8b9b-8feb4bb2b352","stop":1750253503744},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253503745,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"30c446f1-a1f2-48c5-af7d-538e4cab2e5a","stop":1750253503799},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253503799,"name":"expect.toBeVisible","uuid":"1bdde839-1891-4344-9c53-b2782f291737","stop":1750253503906},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253503906,"uuid":"e9d21051-6aa2-4925-b120-e6a9ebe3d319","stop":1750253503906},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253503906,"uuid":"6a3c6813-bd86-4528-9c9e-a9da6c0b6096","stop":1750253503906}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253503906,"uuid":"bfce6caf-281a-41e3-b40b-26dcee22f775","stop":1750253504071}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-1"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750253498002,"testCaseId":"26486147b8778ca2341563049d2a3728","fullName":"ui/registration/register.negative.spec.ts:48:7","stop":1750253504069} \ No newline at end of file diff --git a/allure-results/3d33154b-5380-44ba-95a5-2af64c1a6099-result.json b/allure-results/3d33154b-5380-44ba-95a5-2af64c1a6099-result.json new file mode 100644 index 0000000..dd92d93 --- /dev/null +++ b/allure-results/3d33154b-5380-44ba-95a5-2af64c1a6099-result.json @@ -0,0 +1 @@ +{"uuid":"3d33154b-5380-44ba-95a5-2af64c1a6099","name":"Пользователь успешно восстанавливает пароль","historyId":"1779c735aef9d62c071557455e74e57f:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253602247,"uuid":"f6a091be-74a0-44f4-bc7a-dbf34e934339","stop":1750253602249}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253602247,"uuid":"7fbddd81-0d1f-4bc1-907c-95a8479b23d3","stop":1750253602251},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253602252,"uuid":"624bd01a-8406-41a1-9cbe-22716b4b3709","stop":1750253602411}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253602251,"uuid":"c964d8b8-03e0-4522-ae39-ee5e0b3d00e4","stop":1750253602411}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253602246,"uuid":"c3583d08-f0b9-4383-ac3c-8755bfd80a7e","stop":1750253602411},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253602411,"name":"page.goto(/recoverpassword)","uuid":"a7114712-758d-46e7-8680-8ae58f0a69d1","stop":1750253609578},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253609580,"name":"locator.fill(autotest@example.com)","uuid":"f49f5fb1-865a-4d15-bb0c-7fc958b59144","stop":1750253609616},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253609616,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"02d741dd-7040-4859-8e3c-c3c1b8210b16","stop":1750253609686},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253609687,"name":"expect.toHaveURL","uuid":"354d50f1-4fff-41f0-819e-23899d18814f","stop":1750253609796},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253609797,"name":"locator.count(input[type=\"text\"])","uuid":"83499b75-1510-4802-b463-aab1b281bf4d","stop":1750253609803},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253609804,"name":"locator.fill(0)","uuid":"14b8d2be-1a24-409b-98c6-16327914acce","stop":1750253609813},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253609813,"name":"locator.fill(0)","uuid":"9aec961f-6f9b-4cb9-a388-d0f0076f377e","stop":1750253609821},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253609822,"name":"locator.fill(0)","uuid":"c65eb08b-7125-4287-8419-18db446496c5","stop":1750253609828},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253609829,"name":"locator.fill(0)","uuid":"a9fad8ad-fcd1-488a-b69e-323d54950fe6","stop":1750253609836},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253609837,"name":"locator.fill(0)","uuid":"e6e273a9-9c1e-4704-ab49-f96e9ae90b7e","stop":1750253609844},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253609844,"name":"locator.fill(0)","uuid":"4ca2539b-d5ee-44b4-bbe1-65612bee33f7","stop":1750253609852},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253609853,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"89fda993-cfc8-4af5-b372-3e4aea2de8d9","stop":1750253609908},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253609909,"name":"expect.toBeVisible","uuid":"c65384e5-e8a6-4baf-b5ca-29c9032c73ab","stop":1750253610016},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253610016,"name":"locator.fill(!Test123456)","uuid":"5a363228-5c0c-4974-a5cd-fe04e9b10ae0","stop":1750253610025},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253610026,"name":"locator.fill(!Test123456)","uuid":"5870ada2-c672-4f79-86e7-7c463b7cc0bb","stop":1750253610033},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253610034,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"b31fd530-537e-4056-94c5-b375e3cfdca2","stop":1750253610090},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253610090,"name":"expect.toHaveURL","uuid":"04f8002a-c3e7-475f-aa41-6b50fa42e95d","stop":1750253610202},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253610202,"name":"expect.toBeVisible","uuid":"e709242a-f7bd-4773-b50f-2a85db50c647","stop":1750253610208},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253610208,"uuid":"b88e079c-cda7-498a-8e78-0d958e8674ed","stop":1750253610208},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253610208,"uuid":"9a35695c-9908-4c98-b5dc-91acbd9daecf","stop":1750253610208}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253610208,"uuid":"6d357f42-39b1-446e-99bb-1c96c74cc245","stop":1750253610242}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-password.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-password.spec.ts > Восстановление пароля — позитивные сценарии"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-password.spec.ts"},{"name":"subSuite","value":"Восстановление пароля — позитивные сценарии"}],"links":[],"start":1750253602246,"testCaseId":"1779c735aef9d62c071557455e74e57f","fullName":"ui/recovery/recover-password.spec.ts:7:7","stop":1750253610240} \ No newline at end of file diff --git a/allure-results/3f5f8b63-8c22-4a37-8a96-ff67d2784ffb-result.json b/allure-results/3f5f8b63-8c22-4a37-8a96-ff67d2784ffb-result.json new file mode 100644 index 0000000..0df4821 --- /dev/null +++ b/allure-results/3f5f8b63-8c22-4a37-8a96-ff67d2784ffb-result.json @@ -0,0 +1 @@ +{"uuid":"3f5f8b63-8c22-4a37-8a96-ff67d2784ffb","name":"Слишком длинное название организации","historyId":"26486147b8778ca2341563049d2a3728:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserType.launch","start":1750252690586,"uuid":"37484455-8dc4-4318-b9c1-dfe045b953fa","stop":1750252693221}],"attachments":[],"parameters":[],"name":"fixture: browser","start":1750252690585,"uuid":"5aaf687e-d37a-407f-bc6a-8cbb6a558c44","stop":1750252693223},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252693232,"uuid":"9f450132-bbe6-46d6-97f4-ad3291a55979","stop":1750252693425}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252693229,"uuid":"7090f259-481e-4bcd-8e9b-f2f14d57d1dd","stop":1750252693426},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252693427,"uuid":"fa9fc13e-b649-4996-ad0b-ba106488382d","stop":1750252694100}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252693426,"uuid":"8c2a415c-b810-4b48-bce8-f5339570cf0b","stop":1750252694101}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252690579,"uuid":"fb71ef10-fbd5-4c0e-b293-f262766143c0","stop":1750252694101},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252694103,"name":"page.goto(/login/registration)","uuid":"4d1404e0-3e62-4e76-9f10-25285fbaa1d6","stop":1750252697904},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252697906,"name":"locator.fill(Иван)","uuid":"7d6ec026-cebe-4ced-92f2-a0d6294aff39","stop":1750252697960},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252697960,"name":"locator.fill(Иванов)","uuid":"acc931e6-2c01-4db7-acf7-d71ba2a65fb4","stop":1750252697968},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252697969,"name":"locator.getByPlaceholder('Учёное звание*').click","uuid":"f621bf5b-f978-49ae-b2b5-a4f907640de8","stop":1750252698020},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252698021,"name":"locator.click(li >> internal:has-text=\"Доцент\"i)","uuid":"8df78e17-8386-424a-80fb-8e926fad0a24","stop":1750252698067},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252698068,"name":"locator.getByPlaceholder('Учёная степень*').click","uuid":"e7136151-2756-49fc-b476-22b2f06ffe6a","stop":1750252698150},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252698151,"name":"locator.click(li >> internal:has-text=\"Кандидат наук\"i)","uuid":"43308c37-072a-49ce-b0a4-a0e98e534e28","stop":1750252698201},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252698202,"name":"locator.fill(Преподаватель)","uuid":"6f961e6f-1cf8-4e65-a906-65f0aed78947","stop":1750252698209},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252698210,"name":"locator.fill(ООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООО)","uuid":"d8814639-ce72-4ca7-be28-83e032e0f794","stop":1750252698218},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252698219,"name":"locator.fill(test1750252697904@example.com)","uuid":"fe49d2c7-8322-4187-87c1-b5328ab76114","stop":1750252698226},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252698226,"name":"locator.fill(+79990682439)","uuid":"72e83a8d-a5ae-4a93-bd53-99683f54c362","stop":1750252698233},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252698234,"name":"locator.fill(!Test123)","uuid":"ee222358-3201-4857-b47b-88af553253d5","stop":1750252698240},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252698240,"name":"locator.fill(!Test123)","uuid":"9d0aa702-211b-4f75-aace-a5aed2b142f6","stop":1750252698247},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252698247,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"0ccb9eb4-1318-4a95-a5eb-bf29231d33be","stop":1750252698299},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252698301,"name":"expect.toBeVisible","uuid":"b6cc489d-df60-4495-b7a1-9998455d0d32","stop":1750252698417},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252698417,"uuid":"57acf1fc-a507-4ec8-b659-807c3d600e0a","stop":1750252698417},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252698417,"uuid":"e97cb2a2-3e29-48ad-a2b3-57e33ff62b96","stop":1750252698417}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252698417,"uuid":"7383b2d3-806f-4c49-bbb9-4d4f7a74ed2f","stop":1750252698430}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-57743-worker-1"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750252690588,"testCaseId":"26486147b8778ca2341563049d2a3728","fullName":"ui/registration/register.negative.spec.ts:48:7","stop":1750252695791} \ No newline at end of file diff --git a/allure-results/41061c21-e48d-47df-99e0-c9da98d8582b-result.json b/allure-results/41061c21-e48d-47df-99e0-c9da98d8582b-result.json new file mode 100644 index 0000000..c5f16e2 --- /dev/null +++ b/allure-results/41061c21-e48d-47df-99e0-c9da98d8582b-result.json @@ -0,0 +1 @@ +{"uuid":"41061c21-e48d-47df-99e0-c9da98d8582b","name":"Переход по ссылке \"Зарегистрируйтесь\"","historyId":"62db9603623bba26b6305edb541ef4fa:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252854586,"uuid":"eab7754c-e39a-4c14-b54d-be0b4a503a7b","stop":1750252854589}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252854585,"uuid":"a2478aa0-0b5e-4751-8719-4cb468406d16","stop":1750252854590},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252854591,"uuid":"94127977-ea45-4fd2-8eaf-f2816a0b6f42","stop":1750252854740}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252854590,"uuid":"d32b3aa0-8718-4a4f-94f8-eb484c2282fd","stop":1750252854740}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252854582,"uuid":"d7567dde-8bb6-45a9-a101-219a938e6bf1","stop":1750252854740},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252854742,"name":"page.goto(/login/authorization)","uuid":"f03c992c-90c6-4ade-a4c5-f29ced146379","stop":1750252856311},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252856313,"name":"locator.getByText('Зарегистрируйтесь').click","uuid":"2c3419f4-b801-4ff5-9deb-1186281d9bd5","stop":1750252856425},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252856425,"name":"expect.toHaveURL","uuid":"430000c3-8444-4ff0-8b4b-2b3796f22292","stop":1750252856435},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252856435,"name":"expect.toBeVisible","uuid":"592ed793-676e-40bd-8aad-48b4b5d0b264","stop":1750252856442},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252856442,"uuid":"c653a35d-86f0-4963-a209-2297c0cbe823","stop":1750252856442},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252856443,"uuid":"0defce36-e104-4ef3-bd37-6b38f872927b","stop":1750252856443}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252856442,"uuid":"d81bfaa5-f8ae-49b1-b981-acaf9e8b7ffc","stop":1750252856447}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-1"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"}],"links":[],"start":1750252854583,"testCaseId":"62db9603623bba26b6305edb541ef4fa","fullName":"ui/login/login.link.spec.ts:15:5","stop":1750252856445} \ No newline at end of file diff --git a/allure-results/42ad3034-9eb5-4812-8288-730272408800-result.json b/allure-results/42ad3034-9eb5-4812-8288-730272408800-result.json new file mode 100644 index 0000000..6c4e5e1 --- /dev/null +++ b/allure-results/42ad3034-9eb5-4812-8288-730272408800-result.json @@ -0,0 +1 @@ +{"uuid":"42ad3034-9eb5-4812-8288-730272408800","name":"Отправка пустой формы","historyId":"61b0fd9a6b9153c787b71ef3413cea92:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252847828,"uuid":"2f17d71e-8dc6-489a-aa91-50d922205c1b","stop":1750252847839}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252847827,"uuid":"b8637e19-a628-4b5d-94be-281483e80d2b","stop":1750252847840},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252847840,"uuid":"f068d4db-b153-4556-b6b2-04a14ad24ad8","stop":1750252848034}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252847840,"uuid":"cf392787-f97d-4916-92e4-f397916f2602","stop":1750252848034}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252847824,"uuid":"1f6989c5-23f3-4c59-ba9b-4ba815ba54c5","stop":1750252848034},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252848036,"name":"page.goto(/login/registration)","uuid":"b991d844-bf7a-45c5-ab74-c617a60bb4a8","stop":1750252849406},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252849408,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"f12fa975-3508-4c6d-8bc0-983adfe636e6","stop":1750252849481},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252849482,"name":"locator.allTextContents(div[name=\"error\"] >> internal:has-text=\"Поле обязательно для заполнения\"i)","uuid":"543e4d8a-b507-445a-af9e-f6a06e5646e2","stop":1750252849499},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252849500,"name":"expect.toBeGreaterThan","uuid":"b61083fd-c2ac-4639-a43e-70ff64964e59","stop":1750252849500},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252849500,"name":"expect.toBeVisible","uuid":"b1744d91-044c-4cab-a9e2-5190178a1591","stop":1750252849505},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252849506,"uuid":"c8465fa4-65cc-45a3-b5af-385eba104e4f","stop":1750252849506},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252849506,"uuid":"b93d8691-6254-46ab-9955-498b76f32219","stop":1750252849506}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252849505,"uuid":"45e8c3e6-4880-4c03-9872-4460e628316e","stop":1750252849511}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750252847824,"testCaseId":"61b0fd9a6b9153c787b71ef3413cea92","fullName":"ui/registration/register.negative.spec.ts:6:7","stop":1750252849508} \ No newline at end of file diff --git a/allure-results/443837ee-f6ad-4826-8f0d-a7c409f466c2-result.json b/allure-results/443837ee-f6ad-4826-8f0d-a7c409f466c2-result.json new file mode 100644 index 0000000..1cc73ac --- /dev/null +++ b/allure-results/443837ee-f6ad-4826-8f0d-a7c409f466c2-result.json @@ -0,0 +1 @@ +{"uuid":"443837ee-f6ad-4826-8f0d-a7c409f466c2","name":"Некорректное имя и фамилия (слишком длинные)","historyId":"7134a02a04b606099de5c920fb62990a:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252463072,"uuid":"d110d10c-748d-42c9-8b36-7928efca74ef","stop":1750252463908}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252463071,"uuid":"bde09bc4-9ca8-4c71-a64f-b67729241763","stop":1750252463909},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252463910,"uuid":"ff591428-6953-4f8d-b2e0-2c3d2990a71e","stop":1750252464160}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252463909,"uuid":"72a168a8-7ee3-495f-93c3-7c6b3414bafa","stop":1750252464160}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252463070,"uuid":"22311478-c0b3-4b2d-a707-6db54520857a","stop":1750252464160},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252464161,"name":"page.goto(/login/registration)","uuid":"707fe41f-3330-4f63-9876-36dc9de36205","stop":1750252474990},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252474991,"name":"locator.fill(ААААААААААААААААААААААААААААААААААААААААААААААААААА)","uuid":"a6dca215-7909-4e4e-af42-df71cf7b14b6","stop":1750252476820},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252476821,"name":"locator.fill(БББББББББББББББББББББББББББББББББББББББББББББББББББ)","uuid":"16da4a61-4b80-4a56-889a-79ec789e9b7d","stop":1750252478130},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252478132,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"566c9277-73c7-4ab4-a6eb-93db9421830d","stop":1750252479516},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252479516,"name":"expect.toBeVisible","uuid":"d1eb90d7-811a-4ec5-94ca-17447ad452b0","stop":1750252483395},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252483396,"name":"expect.toBeVisible","uuid":"6b67eeb8-9846-4d1d-b934-a9724b23d4da","stop":1750252484861},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252484862,"uuid":"8c39be33-5089-4050-80e5-256087755ed3","stop":1750252484862},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252484862,"uuid":"0529f514-266a-40a0-9787-3b31ddb62f7e","stop":1750252484862}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252484861,"uuid":"0ef0ff67-9171-4617-b8f5-a599d3691cdd","stop":1750252484892}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-57209-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750252463071,"testCaseId":"7134a02a04b606099de5c920fb62990a","fullName":"ui/registration/register.negative.spec.ts:16:7","stop":1750252484871} \ No newline at end of file diff --git a/allure-results/4465d5fe-6d8e-4e13-87ab-8484727c43a5-result.json b/allure-results/4465d5fe-6d8e-4e13-87ab-8484727c43a5-result.json new file mode 100644 index 0000000..0252258 --- /dev/null +++ b/allure-results/4465d5fe-6d8e-4e13-87ab-8484727c43a5-result.json @@ -0,0 +1 @@ +{"uuid":"4465d5fe-6d8e-4e13-87ab-8484727c43a5","name":"Переход по ссылке \"Забыли пароль?\"","historyId":"91fcabcb669557e4ddb559c077420e45:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserType.launch","start":1750253580485,"uuid":"e8d30683-119e-4e92-95d9-ac53d8e2a458","stop":1750253581462}],"attachments":[],"parameters":[],"name":"fixture: browser","start":1750253580483,"uuid":"d9d5209a-d4d8-4355-9db5-78ac0163922b","stop":1750253581462},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253581469,"uuid":"7a351e7e-81e2-43ef-b7fa-5a4191ba2843","stop":1750253581639}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253581465,"uuid":"806da2d3-a372-434e-acb1-4c5c8f40828c","stop":1750253581671},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253581672,"uuid":"63f126d1-4e88-488c-8b7b-e4e0a2303f4b","stop":1750253582352}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253581671,"uuid":"1992196f-a207-4816-abc0-1ad7c9c63c65","stop":1750253582353}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253580478,"uuid":"3c9426a2-4b6f-4ec8-92f9-8df576cd9776","stop":1750253582353},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253582355,"name":"page.goto(/login/authorization)","uuid":"8431a77a-0157-42ee-8b32-4e64085e3dc7","stop":1750253585543},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253585545,"name":"locator.getByText('Забыли пароль?').click","uuid":"b2a258e9-eb97-48db-a565-a0de2076c7f0","stop":1750253585599},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253585602,"name":"expect.toHaveURL","uuid":"4a06e1e3-d2ff-4a09-8309-d2a9cc6e7dea","stop":1750253585611},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253585611,"name":"expect.toBeVisible","uuid":"a243df26-cc18-43cf-ba1d-7354d082709d","stop":1750253585619},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253585620,"uuid":"8599fd42-872c-4a5f-aedc-9df1c968aab6","stop":1750253585620},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253585620,"uuid":"789dd311-5295-4514-b5b4-291c692adb74","stop":1750253585620}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253585619,"uuid":"4bdf7a7d-6d9c-4b67-9308-e6c59e9d11dd","stop":1750253585665}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"}],"links":[],"start":1750253580476,"testCaseId":"91fcabcb669557e4ddb559c077420e45","fullName":"ui/login/login.link.spec.ts:6:5","stop":1750253584678} \ No newline at end of file diff --git a/allure-results/450aa2cd-95d7-45e9-9b4b-f5c8479401fd-result.json b/allure-results/450aa2cd-95d7-45e9-9b4b-f5c8479401fd-result.json new file mode 100644 index 0000000..0770479 --- /dev/null +++ b/allure-results/450aa2cd-95d7-45e9-9b4b-f5c8479401fd-result.json @@ -0,0 +1 @@ +{"uuid":"450aa2cd-95d7-45e9-9b4b-f5c8479401fd","name":"Только email без пароля","historyId":"8c67bb2f4fb916157fb6191bbb5e4267:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253620375,"uuid":"2354388c-4ee3-4d2d-8da3-ab5e319852ed","stop":1750253620377}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253620374,"uuid":"3fefc777-97cb-4944-baec-f81209c3670b","stop":1750253620381},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253620381,"uuid":"982ae5f6-c45a-4637-bda9-8ec3237d73ef","stop":1750253620501}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253620381,"uuid":"8650928d-1552-4322-b210-0cd5a949db54","stop":1750253620501}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253620373,"uuid":"da0f10fb-fc7e-4952-a1b0-8cab11e6bc02","stop":1750253620501},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253620502,"name":"page.goto(/login/authorization)","uuid":"4955bbf2-4718-4013-959a-68466730488f","stop":1750253625124},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253625124,"name":"locator.fill(autotest@example.com)","uuid":"c78c04d2-a30b-4b36-ada2-190d847649d7","stop":1750253625195},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253625197,"name":"locator.fill()","uuid":"a1672f97-dd99-4704-9ced-fe1923c6d375","stop":1750253625240},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253625240,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"02a6cf32-d78d-4a14-8e83-d658aa2112d8","stop":1750253625325},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253625326,"name":"expect.toBeVisible","uuid":"8c05dda8-2290-4d5a-9611-360228b5ca7a","stop":1750253625332},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253625332,"uuid":"68207ee3-2661-487a-9fa2-30abb2b1752d","stop":1750253625332},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253625332,"uuid":"784748c0-ae72-4daa-b1b4-2a851d1fb948","stop":1750253625332}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253625332,"uuid":"c19e6ec8-2bf0-47d6-b1db-af874844fa59","stop":1750253625771}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-0"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"}],"links":[],"start":1750253620373,"testCaseId":"8c67bb2f4fb916157fb6191bbb5e4267","fullName":"ui/login/login.negative.spec.ts:37:7","stop":1750253625769} \ No newline at end of file diff --git a/allure-results/46262e93-484e-498e-b4ed-dad433c4f62e-result.json b/allure-results/46262e93-484e-498e-b4ed-dad433c4f62e-result.json new file mode 100644 index 0000000..d005d98 --- /dev/null +++ b/allure-results/46262e93-484e-498e-b4ed-dad433c4f62e-result.json @@ -0,0 +1 @@ +{"uuid":"46262e93-484e-498e-b4ed-dad433c4f62e","name":"Пользователь должен успешно залогиниться с валидными данными","historyId":"92a5ca35180a4cbe902714b987a6bf44:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253480538,"uuid":"0db742de-cddf-427a-8f9d-79f1921b5fae","stop":1750253480539}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253480538,"uuid":"60a1976d-4b19-4762-8227-ceefaad5601e","stop":1750253480540},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253480540,"uuid":"ddd900d8-8af5-42e6-8892-82b90df41f02","stop":1750253480573}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253480540,"uuid":"b20ae0c5-a25a-4874-83ab-7aa0d41075e1","stop":1750253480573}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253480537,"uuid":"8478e447-8da5-4e3e-ad22-fcec8582acc3","stop":1750253480573},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253480574,"name":"page.goto(/login/authorization)","uuid":"2e9a835e-d97a-46d4-8468-7aec54d3efd7","stop":1750253481604},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253481605,"name":"locator.fill(autotest@example.com)","uuid":"94d29714-5991-4d73-aa56-93f5a1aca8cd","stop":1750253481627},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253481627,"name":"locator.fill(!Test123456)","uuid":"25a6deb5-04d6-46bf-ad60-2e45c2c53217","stop":1750253481663},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253481664,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"6147dc5c-cb06-429c-9603-4d496c592105","stop":1750253481706},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253481706,"name":"expect.toHaveURL","uuid":"62f4efaf-b163-41f9-acbb-d43566ab21c3","stop":1750253481818},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253481819,"name":"expect.toBeVisible","uuid":"daf1dccb-34c2-4b63-9e7c-b7d3f8d0b85f","stop":1750253481824},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253481824,"uuid":"fc04c838-17fd-4569-8e34-37a600e031a7","stop":1750253481824},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253481824,"uuid":"7b7ead1b-8f3e-4bc4-bdc4-bbe1fe19d304","stop":1750253481824}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253481824,"uuid":"5de482d5-0b6b-4551-ba3a-2fd0ceeac1fd","stop":1750253482649}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.spec.ts > Авторизация пользователя"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-1"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.spec.ts"},{"name":"subSuite","value":"Авторизация пользователя"}],"links":[],"start":1750253480536,"testCaseId":"92a5ca35180a4cbe902714b987a6bf44","fullName":"ui/login/login.spec.ts:7:7","stop":1750253482646} \ No newline at end of file diff --git a/allure-results/479fcf4d-1fe7-4245-ac26-ec929c9781e2-result.json b/allure-results/479fcf4d-1fe7-4245-ac26-ec929c9781e2-result.json new file mode 100644 index 0000000..337a927 --- /dev/null +++ b/allure-results/479fcf4d-1fe7-4245-ac26-ec929c9781e2-result.json @@ -0,0 +1 @@ +{"uuid":"479fcf4d-1fe7-4245-ac26-ec929c9781e2","name":"Слишком длинное название организации","historyId":"26486147b8778ca2341563049d2a3728:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252762243,"uuid":"994df281-35e5-4109-b179-4e6bc981c393","stop":1750252762932}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252762243,"uuid":"db5def39-74f9-4a84-8608-71fae761f87d","stop":1750252762933},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252762934,"uuid":"8732f2c9-fe5e-4234-b843-7ec669d72fde","stop":1750252763169}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252762933,"uuid":"516ba932-e191-4537-9b1f-57e50896b984","stop":1750252763169}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252762242,"uuid":"735dd6c8-247a-4437-9243-eacfa7b33fdc","stop":1750252763169},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252763170,"name":"page.goto(/login/registration)","uuid":"567a4f04-3fee-4f55-9f7a-2437e3890b08","stop":1750252765532},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252765533,"name":"locator.fill(Иван)","uuid":"9348a5cf-0eda-4f16-901d-f7f030ab50e1","stop":1750252766609},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252766610,"name":"locator.fill(Иванов)","uuid":"d1fe29ad-879a-463c-8023-d9b993a619a3","stop":1750252767272},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252767273,"name":"locator.getByPlaceholder('Учёное звание*').click","uuid":"7b3eec48-ea96-43e4-89e6-5e9b0b8baeb6","stop":1750252767831},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252767832,"name":"locator.click(li >> internal:has-text=\"Доцент\"i)","uuid":"1fb84655-d580-44df-8730-279e78ca3e61","stop":1750252769444},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252769446,"name":"locator.getByPlaceholder('Учёная степень*').click","uuid":"575f550c-4798-4624-8020-4050155b8ffc","stop":1750252770595},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252770598,"name":"locator.click(li >> internal:has-text=\"Кандидат наук\"i)","uuid":"ead92dba-7e59-4002-8441-b1b54cd936b5","stop":1750252772576},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252772577,"name":"locator.fill(Преподаватель)","uuid":"0f2a3489-b9ed-4d9b-95ea-3ee8875af3d7","stop":1750252773338},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252773340,"name":"locator.fill(ООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООО)","uuid":"c02fd01c-f89a-4167-b428-8130d72e20da","stop":1750252774338},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252774340,"name":"locator.fill(test1750252765532@example.com)","uuid":"b040ed04-8126-4c92-9026-603bce3a9f82","stop":1750252775369},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252775370,"name":"locator.fill(+79990215242)","uuid":"db0912ea-c634-4b39-9b08-d869528c1b84","stop":1750252776417},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252776419,"name":"locator.fill(!Test123)","uuid":"0b1caa64-c1d6-43fc-9bd9-2a8ed5f87d7f","stop":1750252777556},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252777557,"name":"locator.fill(!Test123)","uuid":"127a5ca9-5691-4109-8bc6-847ac9fe1472","stop":1750252778504},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252778505,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"322e0c29-50a0-41ad-85dd-583fd23cb1e2","stop":1750252779348},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252779349,"name":"expect.toBeVisible","uuid":"f1fc0de2-9a63-4d2d-8482-034371ba19f5","stop":1750252780388},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252780389,"uuid":"bf9a1204-2404-4d0a-bab2-ded3a1a97d81","stop":1750252780389},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252780389,"uuid":"dae3432e-25c2-4510-9273-c423f3a6c42e","stop":1750252780389}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252780388,"uuid":"83f2a6b1-8761-4aa3-a10a-160899035a3f","stop":1750252780418}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-57952-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750252762242,"testCaseId":"26486147b8778ca2341563049d2a3728","fullName":"ui/registration/register.negative.spec.ts:48:7","stop":1750252780416} \ No newline at end of file diff --git a/allure-results/49e199b2-32c9-473c-bff3-ff42d5a638bf-result.json b/allure-results/49e199b2-32c9-473c-bff3-ff42d5a638bf-result.json new file mode 100644 index 0000000..1c5695f --- /dev/null +++ b/allure-results/49e199b2-32c9-473c-bff3-ff42d5a638bf-result.json @@ -0,0 +1 @@ +{"uuid":"49e199b2-32c9-473c-bff3-ff42d5a638bf","name":"Пароли не совпадают","historyId":"a7eaebb1e41fbbf13bf61195120b3ce9:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253601558,"uuid":"33ce93aa-5212-4e14-9e47-1668365f5bd3","stop":1750253601560}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253601557,"uuid":"cecb6bbf-0c99-44a5-9939-4cfb895278c4","stop":1750253601562},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253601563,"uuid":"8cc460e4-0277-41bf-abc8-ed8a9c0b1928","stop":1750253601719}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253601563,"uuid":"02f83a06-75ab-490d-83a3-e014b6bd1e43","stop":1750253601719}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253601556,"uuid":"76b079d0-592b-4462-a53f-371755c710df","stop":1750253601719},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253601720,"name":"page.goto(/recoverpassword)","uuid":"2d90398d-48dd-402d-9a58-ad7fb8235ccf","stop":1750253604422},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253604424,"name":"locator.fill(autotest@example.com)","uuid":"fcb607e1-9b49-4612-a320-271ca70455ae","stop":1750253604473},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253604474,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"3dad6194-3a9f-42e8-9ab1-75a61726d289","stop":1750253604578},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253604579,"name":"locator.count(input[type=\"text\"])","uuid":"be2dfe5d-25a9-41a0-b649-23535692c020","stop":1750253604587},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253604587,"name":"locator.fill(0)","uuid":"f2d7077c-ade6-4691-8977-acbf5ae4fbb3","stop":1750253604640},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253604640,"name":"locator.fill(0)","uuid":"d6e58dcf-f351-429a-9ef8-e64df149c780","stop":1750253604662},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253604662,"name":"locator.fill(0)","uuid":"c0dc40df-e1c2-4562-969a-69f6f7b23eca","stop":1750253604675},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253604676,"name":"locator.fill(0)","uuid":"2442f526-58c5-4ed8-8948-52be2ebf84d9","stop":1750253604690},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253604691,"name":"locator.fill(0)","uuid":"e7fa4f61-0afe-475c-8616-0d95d621cb0a","stop":1750253604699},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253604699,"name":"locator.fill(0)","uuid":"4e189222-5e92-4ca5-9ae6-a47de12938b9","stop":1750253604709},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253604709,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"08065f03-2d6d-4fd2-8d2b-42622ef29b79","stop":1750253604759},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253604759,"name":"locator.fill(!Test123456)","uuid":"f9cd69c0-8a80-4417-8253-80b0bf1cbab6","stop":1750253604849},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253604849,"name":"locator.fill(!OtherPass123)","uuid":"5fcac8bf-7427-4d82-8d9c-c454271e952e","stop":1750253604857},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253604858,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"e55567ae-af89-420c-96d0-7794fb4de601","stop":1750253604906},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253604907,"name":"expect.toBeVisible","uuid":"3581b61d-c809-4cbd-b009-52d6fcabc13e","stop":1750253604914},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253604914,"uuid":"1dbabd73-5389-4969-9b3a-fd7e4bd07717","stop":1750253604914},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253604914,"uuid":"622eb4da-9d7b-45e4-a30d-4c7a8acff5da","stop":1750253604914}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253604914,"uuid":"6c43aa50-e718-49f8-904a-0227ef670f85","stop":1750253604957}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"}],"links":[],"start":1750253601557,"testCaseId":"a7eaebb1e41fbbf13bf61195120b3ce9","fullName":"ui/recovery/recover-negative.spec.ts:56:7","stop":1750253604956} \ No newline at end of file diff --git a/allure-results/4aa17e52-f739-47e9-98cd-4ed8d3a9997f-result.json b/allure-results/4aa17e52-f739-47e9-98cd-4ed8d3a9997f-result.json new file mode 100644 index 0000000..7766869 --- /dev/null +++ b/allure-results/4aa17e52-f739-47e9-98cd-4ed8d3a9997f-result.json @@ -0,0 +1 @@ +{"uuid":"4aa17e52-f739-47e9-98cd-4ed8d3a9997f","name":"Переход по ссылке \"Зарегистрируйтесь\"","historyId":"62db9603623bba26b6305edb541ef4fa:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserType.launch","start":1750252808951,"uuid":"3301788c-f40c-4753-bf8d-84f6ba695f9c","stop":1750252809252}],"attachments":[],"parameters":[],"name":"fixture: browser","start":1750252808950,"uuid":"209a8138-4a7b-4f0e-bfb9-3a818ebb4cca","stop":1750252809253},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252809255,"uuid":"9327b50a-2fab-4963-9272-17c1586dba28","stop":1750252809269}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252809254,"uuid":"ed68c960-d5f6-4746-9c5d-d0c71483e5a8","stop":1750252809271},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252809274,"uuid":"1c13c3ae-c75e-4b2c-9901-83deb3df067d","stop":1750252809507}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252809271,"uuid":"f5b1e72d-ce4c-4888-8ed4-bb9b44a18dca","stop":1750252809507}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252808946,"uuid":"4e6a6daf-af0b-411a-9735-dcd0186ccb9f","stop":1750252809507},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252809511,"name":"page.goto(/login/authorization)","uuid":"5dc601e1-d1dc-47f6-98a1-ee28dce26688","stop":1750252810655},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252810657,"name":"locator.getByText('Зарегистрируйтесь').click","uuid":"df6f2436-c40d-4d2a-8614-6501e46f0595","stop":1750252810784},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252810785,"name":"expect.toHaveURL","uuid":"0b84b9df-9c1d-42eb-a48e-e4cd02633cba","stop":1750252810836},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252810838,"name":"expect.toBeVisible","uuid":"891ce260-8686-47b5-a561-b257ee82fb87","stop":1750252810847},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252810848,"uuid":"f8abc343-b059-44eb-a5af-d9858aa4d2e4","stop":1750252810848},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252810848,"uuid":"a730cc90-1d10-40d8-ab7c-e020412fee9d","stop":1750252810848}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252810847,"uuid":"333e2894-67ac-4719-8042-59ae284ee6cf","stop":1750252810856}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"}],"links":[],"start":1750252808952,"testCaseId":"62db9603623bba26b6305edb541ef4fa","fullName":"ui/login/login.link.spec.ts:15:5","stop":1750252810556} \ No newline at end of file diff --git a/allure-results/4d6dc6af-c1ee-488c-92d1-03be0362c2db-result.json b/allure-results/4d6dc6af-c1ee-488c-92d1-03be0362c2db-result.json new file mode 100644 index 0000000..07b30ec --- /dev/null +++ b/allure-results/4d6dc6af-c1ee-488c-92d1-03be0362c2db-result.json @@ -0,0 +1 @@ +{"uuid":"4d6dc6af-c1ee-488c-92d1-03be0362c2db","name":"Переход по ссылке \"Зарегистрируйтесь\"","historyId":"62db9603623bba26b6305edb541ef4fa:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserType.launch","start":1750253539580,"uuid":"6f072a11-e808-4480-a463-84711b3da220","stop":1750253539891}],"attachments":[],"parameters":[],"name":"fixture: browser","start":1750253539578,"uuid":"783be2c7-9ff7-4a52-b104-cc66c6496f5e","stop":1750253539891},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253539896,"uuid":"fbbbe556-9680-4ce7-8a64-bf73996c7eb2","stop":1750253539931}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253539894,"uuid":"34e4a7f3-6397-4a45-b8c5-ad9f5cb3f323","stop":1750253539957},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253539958,"uuid":"dd63d72f-881c-44b4-8ef1-cf97fe2e2a15","stop":1750253540163}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253539958,"uuid":"42733751-0e38-4e7e-a569-c23531804f21","stop":1750253540163}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253539575,"uuid":"2d91e145-e486-4c3c-ab05-572d9b0aed29","stop":1750253540163},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253540168,"name":"page.goto(/login/authorization)","uuid":"0c5b1c43-5560-40ae-a21f-25c4fdc04e2e","stop":1750253541193},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253541209,"name":"locator.getByText('Зарегистрируйтесь').click","uuid":"25934083-8614-47af-bed8-a573fe347482","stop":1750253541366},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253541367,"name":"expect.toHaveURL","uuid":"317caa3d-7cdb-4805-b1ac-dea8d01eb946","stop":1750253541375},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253541376,"name":"expect.toBeVisible","uuid":"56233c9e-7dc8-4d05-9813-94a0cd0d338f","stop":1750253541380},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253541381,"uuid":"56a70432-a306-43a9-99b7-2364b09a7f44","stop":1750253541381},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253541381,"uuid":"9c7c20bc-b219-420f-903c-6f635422ab54","stop":1750253541381}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253541380,"uuid":"25d5e3c7-05f9-400b-9751-163767f4e0ff","stop":1750253542022}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"}],"links":[],"start":1750253539579,"testCaseId":"62db9603623bba26b6305edb541ef4fa","fullName":"ui/login/login.link.spec.ts:15:5","stop":1750253541710} \ No newline at end of file diff --git a/allure-results/4defca03-b2b3-4017-9324-906bc8830fcf-result.json b/allure-results/4defca03-b2b3-4017-9324-906bc8830fcf-result.json new file mode 100644 index 0000000..70de7a2 --- /dev/null +++ b/allure-results/4defca03-b2b3-4017-9324-906bc8830fcf-result.json @@ -0,0 +1 @@ +{"uuid":"4defca03-b2b3-4017-9324-906bc8830fcf","name":"Пользователь должен успешно залогиниться с валидными данными","historyId":"92a5ca35180a4cbe902714b987a6bf44:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253625599,"uuid":"3760e500-022b-4795-98b4-8b8ec12addfc","stop":1750253625601}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253625599,"uuid":"6b05ca6a-ab45-44b2-b755-4c8b3ccaf6f0","stop":1750253625602},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253625603,"uuid":"e697704d-655f-4e05-9e4d-0f81765993c0","stop":1750253625744}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253625602,"uuid":"048ed948-779f-4505-81f4-f93600bd473e","stop":1750253625744}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253625598,"uuid":"dd34ee60-dade-4706-b2cc-a883c7ee296e","stop":1750253625744},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253625744,"name":"page.goto(/login/authorization)","uuid":"06d5ee67-72b4-499b-ae3c-01f798109721","stop":1750253626866},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253626867,"name":"locator.fill(autotest@example.com)","uuid":"b8b9c8cc-379d-4b5f-b991-4fe8c4fc32e5","stop":1750253626914},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253626915,"name":"locator.fill(!Test123456)","uuid":"cc8aab6c-2ba3-41da-b29a-5b562b7edfa1","stop":1750253626974},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253626974,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"e22c1f91-ee7a-4473-afe3-74f9c6cbea0f","stop":1750253627109},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253627110,"name":"expect.toHaveURL","uuid":"e69f8940-2187-42fb-a8a0-2cef5a416a87","stop":1750253627237},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253627238,"name":"expect.toBeVisible","uuid":"feea76d1-f8c4-4c64-b9cb-311b838ef763","stop":1750253627292},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253627293,"uuid":"ed07a67c-2855-4d33-975c-e79b7b9ebd5f","stop":1750253627293},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253627294,"uuid":"ca67dae8-2dc3-4537-91ac-2204b1a5c721","stop":1750253627294}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253627292,"uuid":"107b7f09-99d8-4feb-97f9-f182b2bb8ce5","stop":1750253627410}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.spec.ts > Авторизация пользователя"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-3"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.spec.ts"},{"name":"subSuite","value":"Авторизация пользователя"}],"links":[],"start":1750253625598,"testCaseId":"92a5ca35180a4cbe902714b987a6bf44","fullName":"ui/login/login.spec.ts:7:7","stop":1750253627407} \ No newline at end of file diff --git a/allure-results/50818393-ff88-4918-8ad1-01633eb6595c-result.json b/allure-results/50818393-ff88-4918-8ad1-01633eb6595c-result.json new file mode 100644 index 0000000..8e86224 --- /dev/null +++ b/allure-results/50818393-ff88-4918-8ad1-01633eb6595c-result.json @@ -0,0 +1 @@ +{"uuid":"50818393-ff88-4918-8ad1-01633eb6595c","name":"Несуществующий email","historyId":"69b9236bee03ff0034bfbd5addc25f93:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253542026,"uuid":"b2420097-1f31-43bf-902f-b84b15eff0f2","stop":1750253542027}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253542025,"uuid":"7fdc6db2-264f-4abb-b719-55cb555bd64e","stop":1750253542029},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253542029,"uuid":"943d3ff4-000e-4f94-844b-b285536d0c0d","stop":1750253542069}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253542029,"uuid":"25882283-be4a-441a-ade1-b1bc3316bcce","stop":1750253542069}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253542025,"uuid":"0f2d523c-5f27-474f-abef-c29d04c03e71","stop":1750253542069},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253542070,"name":"page.goto(/login/authorization)","uuid":"5acc99b1-85c4-4ac4-ba09-f09fd24e1bc3","stop":1750253542993},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253542993,"name":"locator.fill(wrong@example.com)","uuid":"c83c5194-fa8c-473d-a408-9497ffe22b2b","stop":1750253543013},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253543013,"name":"locator.fill(anyPassword123)","uuid":"13a2077f-54bd-4e70-81d8-b9015a644472","stop":1750253543060},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253543063,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"17a1bb8f-7761-4945-87da-9da08eb43c39","stop":1750253543104},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253543104,"name":"expect.toBeVisible","uuid":"66dfb907-d2e9-44c1-b4b2-9ee5e34ba385","stop":1750253543213},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253543213,"uuid":"2f866804-cf98-4c5f-ad2f-26e70a766cda","stop":1750253543213},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253543213,"uuid":"e9638382-6360-414f-8201-4bdd8a60440e","stop":1750253543213}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253543213,"uuid":"7105c0ef-b381-4aa0-8cff-a959da1a9ff1","stop":1750253543979}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"}],"links":[],"start":1750253542024,"testCaseId":"69b9236bee03ff0034bfbd5addc25f93","fullName":"ui/login/login.negative.spec.ts:17:7","stop":1750253543977} \ No newline at end of file diff --git a/allure-results/51474a0f-494d-49d8-a507-867d7577a3c7-result.json b/allure-results/51474a0f-494d-49d8-a507-867d7577a3c7-result.json new file mode 100644 index 0000000..fab7df5 --- /dev/null +++ b/allure-results/51474a0f-494d-49d8-a507-867d7577a3c7-result.json @@ -0,0 +1 @@ +{"uuid":"51474a0f-494d-49d8-a507-867d7577a3c7","name":"Оба поля пустые","historyId":"58990385f74407307e4ace7ad02abf05:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253585671,"uuid":"4bc8f306-e5e8-406d-a791-3998ac2ed4fc","stop":1750253585674}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253585671,"uuid":"ea437166-6ee1-468c-a601-c4a7d02ce92e","stop":1750253585676},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253585677,"uuid":"73086ac3-f331-48ad-9649-d3feb7cbd595","stop":1750253585823}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253585676,"uuid":"a82e89a0-1d00-4039-816d-3abbc047ac6e","stop":1750253585823}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253585670,"uuid":"89a5235b-e09c-42ed-b8a8-1a0592cd4f84","stop":1750253585823},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253585824,"name":"page.goto(/login/authorization)","uuid":"70fecf26-28eb-4136-9881-a073fb0bfd26","stop":1750253591960},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253591961,"name":"locator.fill()","uuid":"8e786422-9746-4cf8-b6a7-ab5f486910e3","stop":1750253591999},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253591999,"name":"locator.fill()","uuid":"41f6338a-7370-4392-bafb-c9f6d4c7f780","stop":1750253592011},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253592012,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"9ca0bca9-bbbe-4241-a108-969621adfa88","stop":1750253592079},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253592080,"name":"expect.toBeVisible","uuid":"627c6e89-d9cb-4f06-965b-65bef93b38bb","stop":1750253592087},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253592088,"name":"expect.toBeVisible","uuid":"bda231cd-b8f6-403e-ac20-bb71c5ce4e28","stop":1750253592091},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253592092,"uuid":"c6ec93f5-78bb-47ed-a3a1-508cdbcd7c43","stop":1750253592092},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253592092,"uuid":"f233bd98-38ef-4d66-86ce-ecaa7c434701","stop":1750253592092}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253592092,"uuid":"8d8d48cb-1427-4a6a-af40-28a5af59f440","stop":1750253592132}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"}],"links":[],"start":1750253585670,"testCaseId":"58990385f74407307e4ace7ad02abf05","fullName":"ui/login/login.negative.spec.ts:27:7","stop":1750253592130} \ No newline at end of file diff --git a/allure-results/5282f37d-fba7-4ee8-aee5-877c0b62219b-result.json b/allure-results/5282f37d-fba7-4ee8-aee5-877c0b62219b-result.json new file mode 100644 index 0000000..1b46458 --- /dev/null +++ b/allure-results/5282f37d-fba7-4ee8-aee5-877c0b62219b-result.json @@ -0,0 +1 @@ +{"uuid":"5282f37d-fba7-4ee8-aee5-877c0b62219b","name":"Переход по ссылке \"Забыли пароль?\"","historyId":"91fcabcb669557e4ddb559c077420e45:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserType.launch","start":1750253539590,"uuid":"8d20513c-fe52-4c2c-a096-87d55c963909","stop":1750253539892}],"attachments":[],"parameters":[],"name":"fixture: browser","start":1750253539589,"uuid":"670f76fb-9132-4ab3-aabd-bc124d66b6ce","stop":1750253539892},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253539894,"uuid":"e845ee1c-3ca6-4074-bb62-5b04d5f756d3","stop":1750253539928}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253539893,"uuid":"ae5b6808-2bdb-41be-bd22-7406e0af01f9","stop":1750253539949},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253539955,"uuid":"95873eaa-ea9c-4a29-a6f2-14a76339b36d","stop":1750253540163}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253539952,"uuid":"7ec127f4-373c-4d10-b96c-0f9e0a7f2c12","stop":1750253540163}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253539581,"uuid":"d939b2ff-dbe2-4eeb-97cb-3c2189c58d5d","stop":1750253540163},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253540171,"name":"page.goto(/login/authorization)","uuid":"2511d173-8f5c-4996-adbb-0f233ef66e87","stop":1750253541275},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253541281,"name":"locator.getByText('Забыли пароль?').click","uuid":"3d56bee9-0298-4b05-8f2c-39a0ee943b5e","stop":1750253541401},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253541402,"name":"expect.toHaveURL","uuid":"93c55df6-6a45-4ae7-8226-a4a7628bc454","stop":1750253541408},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253541409,"name":"expect.toBeVisible","uuid":"2b5b0535-9f3b-4bb3-82d6-8aabec4c30ef","stop":1750253541415},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253541416,"uuid":"f0e486ec-34af-4183-8a17-37c4a07bc050","stop":1750253541416},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253541416,"uuid":"d6549b59-a266-499d-a56e-a078c699ca16","stop":1750253541416}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253541415,"uuid":"a8d77488-bcf8-480e-ae25-68476c839b02","stop":1750253542020}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"}],"links":[],"start":1750253539582,"testCaseId":"91fcabcb669557e4ddb559c077420e45","fullName":"ui/login/login.link.spec.ts:6:5","stop":1750253541712} \ No newline at end of file diff --git a/allure-results/5301c16b-250e-4a90-bdc7-c547d49c2ef8-result.json b/allure-results/5301c16b-250e-4a90-bdc7-c547d49c2ef8-result.json new file mode 100644 index 0000000..dac0360 --- /dev/null +++ b/allure-results/5301c16b-250e-4a90-bdc7-c547d49c2ef8-result.json @@ -0,0 +1 @@ +{"uuid":"5301c16b-250e-4a90-bdc7-c547d49c2ef8","name":"Несуществующий email","historyId":"69b9236bee03ff0034bfbd5addc25f93:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253618488,"uuid":"8bc32288-597e-478e-b808-842ecd9eefb1","stop":1750253618490}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253618488,"uuid":"616e2eb8-7ae6-4ab0-af3b-a9a4135181ac","stop":1750253618491},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253618492,"uuid":"457222c3-3921-4983-ac30-8c05e7b06577","stop":1750253618600}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253618491,"uuid":"a385523f-dee2-4c96-a25f-540f9799b0d0","stop":1750253618600}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253618487,"uuid":"4c7c84bc-e6da-4ec7-94a9-1e1e3de891a2","stop":1750253618600},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253618601,"name":"page.goto(/login/authorization)","uuid":"37316f48-40a6-4a9a-adac-f308ef38aa27","stop":1750253619649},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253619649,"name":"locator.fill(wrong@example.com)","uuid":"ea05ffdb-15c6-4c21-b506-748981b2da46","stop":1750253619764},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253619766,"name":"locator.fill(anyPassword123)","uuid":"41030d09-d666-4160-a46d-49e44b8d114c","stop":1750253619781},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253619781,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"bb077e1f-7716-47d2-9b36-0bf84d044ce9","stop":1750253619842},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253619842,"name":"expect.toBeVisible","uuid":"9d6ce881-6bbe-4dd0-9447-bcf9e79c8871","stop":1750253619950},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253619951,"uuid":"f69981bb-f559-45fa-932f-ba5f342f3b85","stop":1750253619951},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253619951,"uuid":"8718ad37-107a-464e-9a09-be1373d93132","stop":1750253619951}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253619951,"uuid":"d5de12ba-20de-4d91-9ac0-7e30a01d9eb7","stop":1750253620045}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-3"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"}],"links":[],"start":1750253618487,"testCaseId":"69b9236bee03ff0034bfbd5addc25f93","fullName":"ui/login/login.negative.spec.ts:17:7","stop":1750253620044} \ No newline at end of file diff --git a/allure-results/53283e44-eb73-435a-b0bb-8da9b340ac0c-result.json b/allure-results/53283e44-eb73-435a-b0bb-8da9b340ac0c-result.json new file mode 100644 index 0000000..e287e77 --- /dev/null +++ b/allure-results/53283e44-eb73-435a-b0bb-8da9b340ac0c-result.json @@ -0,0 +1 @@ +{"uuid":"53283e44-eb73-435a-b0bb-8da9b340ac0c","name":"Регистр в email (User@test.com ≠ user@test.com)","historyId":"cc4ad4b40ef726af11b2bd4f5523dbe0:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252812692,"uuid":"9a82c49d-d425-4e2a-8bc0-6a5d312108c3","stop":1750252812693}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252812692,"uuid":"919d3df3-636a-46bc-931d-b01d3f47d457","stop":1750252812693},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252812694,"uuid":"469c975b-79c9-440e-bb45-b7fd6393e462","stop":1750252812726}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252812693,"uuid":"e9ffa41f-11ba-4af8-8a9e-9f32544a5aea","stop":1750252812726}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252812691,"uuid":"b659b6be-b299-4d2d-91c5-e969655d9f2f","stop":1750252812726},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252812727,"name":"page.goto(/login/authorization)","uuid":"2c9416a9-153d-45d5-8f7c-cd0e1f730cf2","stop":1750252813516},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252813517,"name":"locator.fill(Autotest@Example.com)","uuid":"5fd25e15-62f5-4dcb-8a56-8a2f4c36a1ec","stop":1750252813566},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252813567,"name":"locator.fill(!Test123456)","uuid":"02d98a22-e27b-4b7d-ac51-47cf8af2667e","stop":1750252813599},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252813600,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"3de30092-d1c6-40f6-8c2c-e4aacaa44993","stop":1750252813642},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252813642,"name":"expect.toBeVisible","uuid":"2475f861-8858-40c0-9498-535cf3e07cb1","stop":1750252813747},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252813747,"uuid":"2eb65709-bbe4-4870-a1e9-46427d77a25d","stop":1750252813747},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252813747,"uuid":"ce00e1b2-99dd-4d62-8caa-23d7752f22c7","stop":1750252813747}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252813747,"uuid":"08e4b0de-5c17-423a-afac-6e5c4739eaeb","stop":1750252813753}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"tag","value":"test.com"},{"name":"tag","value":"test.com)"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"}],"links":[],"start":1750252812691,"testCaseId":"cc4ad4b40ef726af11b2bd4f5523dbe0","fullName":"ui/login/login.negative.spec.ts:58:7","stop":1750252813752} \ No newline at end of file diff --git a/allure-results/5353668f-5c9f-4d34-b094-15747d227ee5-result.json b/allure-results/5353668f-5c9f-4d34-b094-15747d227ee5-result.json new file mode 100644 index 0000000..8b482e9 --- /dev/null +++ b/allure-results/5353668f-5c9f-4d34-b094-15747d227ee5-result.json @@ -0,0 +1 @@ +{"uuid":"5353668f-5c9f-4d34-b094-15747d227ee5","name":"Некорректный формат email","historyId":"e5764a911de0175f8f7118313ae14544:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253479800,"uuid":"1e6b2c5f-e7d4-4904-bb55-cb3fcb4cab3c","stop":1750253479801}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253479800,"uuid":"1e58843f-d800-4fd8-a6e4-c8b20972e5d1","stop":1750253479803},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253479803,"uuid":"79c11894-1166-488e-80f8-70d13863619c","stop":1750253479838}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253479803,"uuid":"37226ce2-a110-49cb-b9d0-0c61e3fa403a","stop":1750253479838}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253479799,"uuid":"ebbe307d-3e6b-423a-a632-795549533971","stop":1750253479838},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253479839,"name":"page.goto(/login/authorization)","uuid":"d3e41878-04a7-411a-b16d-952eecdc124f","stop":1750253480683},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253480684,"name":"locator.fill(invalid-email)","uuid":"18987d42-d691-4793-9898-79ef6d2c74f2","stop":1750253480703},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253480703,"name":"locator.fill(anyPassword123)","uuid":"570bcb31-2a4f-4cf6-80a4-3ed16ba4bee7","stop":1750253480738},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253480739,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"bfd42181-1141-4be0-8fe3-ee0d244f367d","stop":1750253480769},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253480770,"name":"expect.toBeVisible","uuid":"fb2f8331-3faf-466b-87ec-0552f23cc14f","stop":1750253480773},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253480773,"uuid":"e7e699b2-999c-4c8f-8b71-c0afa0700877","stop":1750253480773},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253480774,"uuid":"84afb8e9-0fbd-4e85-8701-6c50c91b91a2","stop":1750253480774}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253480773,"uuid":"751a7cc7-ac4e-4c58-b9cd-b2a789e54134","stop":1750253482987}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"}],"links":[],"start":1750253479799,"testCaseId":"e5764a911de0175f8f7118313ae14544","fullName":"ui/login/login.negative.spec.ts:46:7","stop":1750253482986} \ No newline at end of file diff --git a/allure-results/570884bc-7bba-428f-ba56-02a8573b1728-result.json b/allure-results/570884bc-7bba-428f-ba56-02a8573b1728-result.json new file mode 100644 index 0000000..056c98e --- /dev/null +++ b/allure-results/570884bc-7bba-428f-ba56-02a8573b1728-result.json @@ -0,0 +1 @@ +{"uuid":"570884bc-7bba-428f-ba56-02a8573b1728","name":"Переход по ссылке \"Забыли пароль?\"","historyId":"91fcabcb669557e4ddb559c077420e45:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserType.launch","start":1750252855150,"uuid":"f938f02c-63b5-44fd-8302-6c7870a00ede","stop":1750252855298}],"attachments":[],"parameters":[],"name":"fixture: browser","start":1750252855149,"uuid":"f9327fe1-95fd-4b31-aba6-e77778ea8abf","stop":1750252855298},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252855300,"uuid":"cb403f5d-a6bc-4d9a-b21e-17645d3c9502","stop":1750252855340}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252855299,"uuid":"b7e40db0-11ca-428d-b02e-d012bbca8a01","stop":1750252855341},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252855342,"uuid":"a4ed0713-ef2c-45b9-9b68-0bdb37a40933","stop":1750252855571}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252855341,"uuid":"33993e50-bc54-4333-bc89-d82cd67e9309","stop":1750252855571}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252855145,"uuid":"a3cb50cc-12e5-47a4-82b8-774dcf68c6e6","stop":1750252855571},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252855575,"name":"page.goto(/login/authorization)","uuid":"8e79627e-3c1d-4a08-afaa-b0831dcbe86a","stop":1750252857602},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252857612,"name":"locator.getByText('Забыли пароль?').click","uuid":"6273e992-c5d3-47da-aaa0-237b4f1f004b","stop":1750252857671},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252857672,"name":"expect.toHaveURL","uuid":"8a2d2935-313a-46ff-8371-24cdc16e9d20","stop":1750252857692},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252857693,"name":"expect.toBeVisible","uuid":"f4cbf509-169b-420b-bbcd-cf2ccc139b6b","stop":1750252857703},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252857705,"uuid":"55eeded6-d947-441c-9c05-2d23748a5995","stop":1750252857705},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252857705,"uuid":"38d6977f-37ab-464c-b80f-b9d738a861e9","stop":1750252857705}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252857703,"uuid":"e92b281d-4f0b-42ce-8f3d-d83f66a15cca","stop":1750252857724}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-0"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"}],"links":[],"start":1750252855145,"testCaseId":"91fcabcb669557e4ddb559c077420e45","fullName":"ui/login/login.link.spec.ts:6:5","stop":1750252857569} \ No newline at end of file diff --git a/allure-results/5abc90ae-fbc5-42a4-af01-56607ef593c9-result.json b/allure-results/5abc90ae-fbc5-42a4-af01-56607ef593c9-result.json new file mode 100644 index 0000000..3d7c197 --- /dev/null +++ b/allure-results/5abc90ae-fbc5-42a4-af01-56607ef593c9-result.json @@ -0,0 +1 @@ +{"uuid":"5abc90ae-fbc5-42a4-af01-56607ef593c9","name":"Пользователь должен успешно залогиниться с валидными данными","historyId":"92a5ca35180a4cbe902714b987a6bf44:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252857871,"uuid":"90bdba63-9fa0-42b5-b929-6f88debc8c43","stop":1750252857873}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252857871,"uuid":"4489d975-a174-42c8-9666-739edd638bf8","stop":1750252857873},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252857874,"uuid":"a3f696fe-af13-4e43-9825-26c9e3b4d498","stop":1750252857994}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252857873,"uuid":"42990f10-ca86-4e5e-94c4-24575facab2d","stop":1750252857994}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252857870,"uuid":"9695cfd4-cecd-4e6d-9d70-b7af240546b9","stop":1750252857994},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252857995,"name":"page.goto(/login/authorization)","uuid":"66878d2b-43ab-499f-bc99-7dda257b4794","stop":1750252859070},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252859071,"name":"locator.fill(autotest@example.com)","uuid":"0f8d56de-4505-40d0-b453-8f6e9dff327a","stop":1750252859091},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252859092,"name":"locator.fill(!Test123456)","uuid":"41eae5dc-db77-4c6a-9aae-48dc1355a62b","stop":1750252859098},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252859098,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"c53bec88-a0d0-4e6c-8729-c5645d596924","stop":1750252859135},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252859136,"name":"expect.toHaveURL","uuid":"2591fbce-087d-483d-90e4-8a1301d445c7","stop":1750252859243},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252859244,"name":"expect.toBeVisible","uuid":"0acbbe1e-ab9b-41a5-8d8c-87313b57d34c","stop":1750252859248},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252859249,"uuid":"c99f9fe1-1fc9-483e-baba-8a6d29c721a0","stop":1750252859249},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252859249,"uuid":"6f45343d-6910-4c49-b42d-26d92febb05a","stop":1750252859249}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252859248,"uuid":"c760399a-7f9a-4652-8c45-680c782e8d73","stop":1750252859253}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.spec.ts > Авторизация пользователя"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-2"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.spec.ts"},{"name":"subSuite","value":"Авторизация пользователя"}],"links":[],"start":1750252857870,"testCaseId":"92a5ca35180a4cbe902714b987a6bf44","fullName":"ui/login/login.spec.ts:7:7","stop":1750252859251} \ No newline at end of file diff --git a/allure-results/5f18f772-c755-4591-8d89-4e739a808b86-result.json b/allure-results/5f18f772-c755-4591-8d89-4e739a808b86-result.json new file mode 100644 index 0000000..9c50c0f --- /dev/null +++ b/allure-results/5f18f772-c755-4591-8d89-4e739a808b86-result.json @@ -0,0 +1 @@ +{"uuid":"5f18f772-c755-4591-8d89-4e739a808b86","name":"Некорректный новый пароль","historyId":"18246cf63350a71f5b46012e257bafcf:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253485707,"uuid":"c28cfa90-9039-4d89-8522-c5bc34da7f12","stop":1750253485710}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253485707,"uuid":"378f3809-4f44-47ca-8dee-d09ef5509adf","stop":1750253485711},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253485712,"uuid":"dbbc08f3-2ddd-4bd9-89bf-2b22f6b0c08b","stop":1750253485748}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253485712,"uuid":"caae119e-80d9-4f97-8746-8dd8fdf29b47","stop":1750253485748}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253485706,"uuid":"3807ff12-c098-4a69-90a1-94f9c4ba7da4","stop":1750253485748},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253485751,"name":"page.goto(/recoverpassword)","uuid":"600f5266-c162-4139-b08a-f5cc35c5beb4","stop":1750253490781},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253490786,"name":"locator.fill(autotest@example.com)","uuid":"3539596a-2030-4b1d-ad95-1ca61d32338e","stop":1750253490857},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253490863,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"9343dff1-57df-4bfe-b8b3-a33fc134c9ef","stop":1750253490908},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253490909,"name":"locator.count(input[type=\"text\"])","uuid":"593fa33e-d77a-4200-b03f-f87bd2903005","stop":1750253490913},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253490914,"name":"locator.fill(0)","uuid":"0acf3dce-efbe-4ec7-9e01-8345592e12f9","stop":1750253491023},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491028,"name":"locator.fill(0)","uuid":"fe55ae15-0709-491d-a0b8-b6286a40d62c","stop":1750253491056},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491057,"name":"locator.fill(0)","uuid":"530ab39f-4f9d-4394-880f-ee15b1a7f897","stop":1750253491086},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491088,"name":"locator.fill(0)","uuid":"43193d5d-8d90-462e-983a-2024c0883234","stop":1750253491095},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491095,"name":"locator.fill(0)","uuid":"a22fd2d6-4043-42a6-873a-707d74f1f6ad","stop":1750253491105},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491106,"name":"locator.fill(0)","uuid":"6daef5f8-2b9e-47fc-98d8-afb0b9fb2357","stop":1750253491112},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491113,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"87f82493-b62d-43e7-a53a-d9d25f814016","stop":1750253491180},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491182,"name":"locator.fill(123)","uuid":"42788e30-abf0-4ad3-8d66-8fbae99bf659","stop":1750253491233},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491233,"name":"locator.fill(123)","uuid":"c38fc401-8071-4f38-a06a-85cea17e7fd4","stop":1750253491243},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491244,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"d02154e2-adf4-4020-9baf-b7d572a091ee","stop":1750253491273},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491273,"name":"expect.toBeVisible","uuid":"2188fb46-666d-44b6-acbf-c3b7c8cbf2c3","stop":1750253491282},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253491285,"uuid":"a3bbeef0-bfda-4ec4-b2e1-22858921a56a","stop":1750253491285},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253491285,"uuid":"8575d828-d6a9-4208-aea0-ae152b2011b1","stop":1750253491285}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253491283,"uuid":"05c2e519-7747-4ba2-b85e-35cdd468cf80","stop":1750253491468}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"}],"links":[],"start":1750253485706,"testCaseId":"18246cf63350a71f5b46012e257bafcf","fullName":"ui/recovery/recover-negative.spec.ts:34:7","stop":1750253491464} \ No newline at end of file diff --git a/allure-results/5f3149fd-02e1-4aeb-b0ca-d8eabbbd9a41-result.json b/allure-results/5f3149fd-02e1-4aeb-b0ca-d8eabbbd9a41-result.json new file mode 100644 index 0000000..965abfd --- /dev/null +++ b/allure-results/5f3149fd-02e1-4aeb-b0ca-d8eabbbd9a41-result.json @@ -0,0 +1 @@ +{"uuid":"5f3149fd-02e1-4aeb-b0ca-d8eabbbd9a41","name":"Некорректное имя и фамилия (слишком длинные)","historyId":"7134a02a04b606099de5c920fb62990a:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252788274,"uuid":"493677de-faac-4b72-aa36-f756fbcfdb2f","stop":1750252789029}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252788274,"uuid":"1eb06699-d86f-42e0-8092-732f7635ca9d","stop":1750252789030},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252789030,"uuid":"dd3e173b-2f6f-43eb-bc11-db76e68033b1","stop":1750252789232}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252789030,"uuid":"6d401bb6-77b2-43dd-a714-6abcc8feaa4f","stop":1750252789232}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252788273,"uuid":"97c92cbb-e6bd-4840-baa0-50a2666a5c15","stop":1750252789232},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252789233,"name":"page.goto(/login/registration)","uuid":"381e4ea4-1cd9-48ca-ba4f-131ce03bff10","stop":1750252791747},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252791749,"name":"locator.fill(ААААААААААААААААААААААААААААААААААААААААААААААААААА)","uuid":"786be88d-19df-43dc-a78a-699806497c4c","stop":1750252791804},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252791805,"name":"locator.fill(БББББББББББББББББББББББББББББББББББББББББББББББББББ)","uuid":"791a07bc-0212-4d5a-9474-8d43117d8542","stop":1750252791817},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252791818,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"a2794caf-27e0-4a96-8713-caca7f25f671","stop":1750252791872},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252791873,"name":"expect.toBeVisible","uuid":"eee8ced9-848e-4012-bc8f-36be1aecf2ff","stop":1750252791880},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252791881,"name":"expect.toBeVisible","uuid":"6bb3c2ad-b919-44ee-b06f-1b80c40bd67e","stop":1750252791891},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252791892,"uuid":"a088172d-0559-4203-a837-4db62975cf27","stop":1750252791892},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252791892,"uuid":"6f5edee0-c83c-489d-ba93-8fdba11cbaf3","stop":1750252791892}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252791892,"uuid":"4e9bed33-8a56-44f6-a29d-d139f2b358c1","stop":1750252791912}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-57952-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750252788273,"testCaseId":"7134a02a04b606099de5c920fb62990a","fullName":"ui/registration/register.negative.spec.ts:16:7","stop":1750252791909} \ No newline at end of file diff --git a/allure-results/6036346a-3eb8-416a-9288-3686ff15fac0-result.json b/allure-results/6036346a-3eb8-416a-9288-3686ff15fac0-result.json new file mode 100644 index 0000000..d7ee149 --- /dev/null +++ b/allure-results/6036346a-3eb8-416a-9288-3686ff15fac0-result.json @@ -0,0 +1 @@ +{"uuid":"6036346a-3eb8-416a-9288-3686ff15fac0","name":"Неверный пароль","historyId":"500ad758ee2db2bb60aa832fb0abbb94:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252810864,"uuid":"a8d331bf-6f22-49ee-ba1a-6e1e30509729","stop":1750252810865}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252810864,"uuid":"5c94e754-6919-48c7-bc74-c0da71d74644","stop":1750252810866},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252810866,"uuid":"a387fab3-23a5-4821-91f4-8d7c4b32ee50","stop":1750252810904}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252810866,"uuid":"3da7db19-03b6-4dbe-8f0b-834c077278a4","stop":1750252810904}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252810863,"uuid":"a7db3467-5007-44d0-9b0b-ef388ceed390","stop":1750252810904},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252810905,"name":"page.goto(/login/authorization)","uuid":"75a71235-2b23-4e01-b3b7-ce9a6d637ce6","stop":1750252811650},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252811652,"name":"locator.fill(autotest@example.com)","uuid":"66b94386-d0e4-4e4e-be2f-69956181cda3","stop":1750252811717},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252811717,"name":"locator.fill(wrongpass)","uuid":"401f87b1-6c90-4a87-9dc3-21e03259b79d","stop":1750252811766},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252811767,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"f3793aab-87c5-4494-ba6d-cd10bd456472","stop":1750252811811},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252811812,"name":"expect.toBeVisible","uuid":"6d57032c-737e-41da-958e-ba6287b72d7b","stop":1750252811919},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252811919,"uuid":"31b4961d-3d04-42a9-a10e-fd808606942a","stop":1750252811919},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252811919,"uuid":"91ad190b-900a-4ac5-9be1-fbb1bc3e6ab4","stop":1750252811919}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252811919,"uuid":"dc0b3819-8a30-41fc-b6dd-c6fe7212a9ce","stop":1750252811924}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"}],"links":[],"start":1750252810863,"testCaseId":"500ad758ee2db2bb60aa832fb0abbb94","fullName":"ui/login/login.negative.spec.ts:7:7","stop":1750252811922} \ No newline at end of file diff --git a/allure-results/617f52b0-6aba-4faf-888c-cdc0a9b8d58e-result.json b/allure-results/617f52b0-6aba-4faf-888c-cdc0a9b8d58e-result.json new file mode 100644 index 0000000..be01f33 --- /dev/null +++ b/allure-results/617f52b0-6aba-4faf-888c-cdc0a9b8d58e-result.json @@ -0,0 +1 @@ +{"uuid":"617f52b0-6aba-4faf-888c-cdc0a9b8d58e","name":"Пароли не совпадают","historyId":"a7eaebb1e41fbbf13bf61195120b3ce9:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253490152,"uuid":"9ee5974b-fd49-4b5d-9a91-7ea87838eb2f","stop":1750253490155}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253490152,"uuid":"6063068a-20c8-49bb-96bb-0bf3afe7cd82","stop":1750253490156},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253490156,"uuid":"bc7d6bb3-392f-4e32-af7a-6c188f41399f","stop":1750253490188}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253490156,"uuid":"9b41d024-be73-4001-8f1e-9691a22899c6","stop":1750253490188}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253490151,"uuid":"0072bdcf-cfa9-4e1b-b874-650e5ecefa9a","stop":1750253490188},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253490189,"name":"page.goto(/recoverpassword)","uuid":"6197415c-3f89-445b-bfde-adca048b8b0a","stop":1750253491021},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491021,"name":"locator.fill(autotest@example.com)","uuid":"ee5cf639-5d94-41dc-9575-ec56345c0e49","stop":1750253491063},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491063,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"3925620e-be0c-4c66-a7f3-300a98d9e3b7","stop":1750253491108},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491109,"name":"locator.count(input[type=\"text\"])","uuid":"ffc5834a-02d3-417d-aff7-61d5c7f2c203","stop":1750253491111},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491112,"name":"locator.fill(0)","uuid":"f690ea61-946e-4ea1-a9c8-927baa3db659","stop":1750253491180},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491180,"name":"locator.fill(0)","uuid":"4e9f301d-2057-4a84-8a2a-8cc0ba879d7c","stop":1750253491192},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491192,"name":"locator.fill(0)","uuid":"8c5925ef-5c67-4e99-8264-9a230bd5f5b3","stop":1750253491197},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491198,"name":"locator.fill(0)","uuid":"1c832ec2-44f5-42f4-90da-26d4329a91e9","stop":1750253491206},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491207,"name":"locator.fill(0)","uuid":"dfa3476f-96fe-4f43-91dd-da7922d1875f","stop":1750253491218},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491219,"name":"locator.fill(0)","uuid":"d404cb5b-5b30-41b9-9a14-b90a32417c00","stop":1750253491232},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491234,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"1f1805ae-75f2-4c7b-9ba0-b30dd7dfba32","stop":1750253491278},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491279,"name":"locator.fill(!Test123456)","uuid":"70c6844b-ebd3-46aa-ae0b-4aac72bfd2f9","stop":1750253491387},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491387,"name":"locator.fill(!OtherPass123)","uuid":"8d110809-d76a-45dd-a795-2792f7de4f34","stop":1750253491392},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491392,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"f2daec35-91a5-42fd-8fd4-0285a2e54b10","stop":1750253491419},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491419,"name":"expect.toBeVisible","uuid":"43e4492b-1e73-4a53-b9f7-e833d7ba0e29","stop":1750253491423},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253491423,"uuid":"3bd5951d-0025-4e69-a9cb-149386fb3a83","stop":1750253491423},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253491423,"uuid":"ae5f0973-ce85-41a6-9048-0da176d4de4d","stop":1750253491423}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253491423,"uuid":"9afd3598-799c-4639-a0e2-2093b9221348","stop":1750253491937}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-1"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"}],"links":[],"start":1750253490151,"testCaseId":"a7eaebb1e41fbbf13bf61195120b3ce9","fullName":"ui/recovery/recover-negative.spec.ts:56:7","stop":1750253491935} \ No newline at end of file diff --git a/allure-results/62c73bc8-df17-40b2-b797-ab26e51ed14a-result.json b/allure-results/62c73bc8-df17-40b2-b797-ab26e51ed14a-result.json new file mode 100644 index 0000000..2029fb7 --- /dev/null +++ b/allure-results/62c73bc8-df17-40b2-b797-ab26e51ed14a-result.json @@ -0,0 +1 @@ +{"uuid":"62c73bc8-df17-40b2-b797-ab26e51ed14a","name":"Отправка пустой формы","historyId":"61b0fd9a6b9153c787b71ef3413cea92:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253629833,"uuid":"e6d40268-d8fc-4264-b9cf-44ced9ce1db5","stop":1750253629837}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253629833,"uuid":"93406434-77dd-4443-8978-5f48579e6350","stop":1750253629840},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253629841,"uuid":"9d73614d-54ab-4c7e-9a37-0e9062f8e223","stop":1750253629947}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253629840,"uuid":"d4a4ecba-2b1e-4ecb-8c43-1ba3d17f3128","stop":1750253629947}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253629832,"uuid":"d15442dd-f543-46d0-9d51-5c49aa035b81","stop":1750253629947},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253629949,"name":"page.goto(/login/registration)","uuid":"5985c387-7cf9-4f89-a049-c4f77a0cd56d","stop":1750253631104},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253631105,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"07cdcd99-02ec-4004-8893-ab1903d1e1a4","stop":1750253631514},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253631515,"name":"locator.allTextContents(div[name=\"error\"] >> internal:has-text=\"Поле обязательно для заполнения\"i)","uuid":"b1b4d334-5982-4871-bc0d-a0d46d8a4f4b","stop":1750253631526},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253631527,"name":"expect.toBeGreaterThan","uuid":"27bcbeea-77dd-4efb-b1ba-5ff8626b4fb0","stop":1750253631527},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253631527,"name":"expect.toBeVisible","uuid":"cb8afab8-7984-4892-a119-cca502ebd0d9","stop":1750253631546},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253631547,"uuid":"5ffe52e7-66a7-4c5a-b58d-2422cba1862b","stop":1750253631547},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253631547,"uuid":"1d320701-f121-498d-b614-ddb9cdb8e870","stop":1750253631547}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253631547,"uuid":"f4284a6b-5ff4-43d3-acce-0d49cd4807e0","stop":1750253631617}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-3"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750253629833,"testCaseId":"61b0fd9a6b9153c787b71ef3413cea92","fullName":"ui/registration/register.negative.spec.ts:6:7","stop":1750253631616} \ No newline at end of file diff --git a/allure-results/64a98619-1c86-456c-9d8b-f6119f9c58f3-result.json b/allure-results/64a98619-1c86-456c-9d8b-f6119f9c58f3-result.json new file mode 100644 index 0000000..92c6fe3 --- /dev/null +++ b/allure-results/64a98619-1c86-456c-9d8b-f6119f9c58f3-result.json @@ -0,0 +1 @@ +{"uuid":"64a98619-1c86-456c-9d8b-f6119f9c58f3","name":"Некорректный email (формат)","historyId":"d776d5fb9c918a79827aea417bdc449a:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253482654,"uuid":"df3049ec-5855-4d7b-9e6c-60e75cb40a3e","stop":1750253482655}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253482653,"uuid":"8dc74fe8-acda-4a2a-a2c7-1937e2df61db","stop":1750253482656},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253482656,"uuid":"ed108dc7-a1c4-4756-9432-5581eaf57341","stop":1750253482689}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253482656,"uuid":"5f4e2379-171e-4a7a-848c-89e5d6888cfd","stop":1750253482689}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253482653,"uuid":"e2018061-62b0-4861-b84c-c48f33b53d04","stop":1750253482689},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253482690,"name":"page.goto(/recoverpassword)","uuid":"29233c71-0417-4f40-bc15-fc2369d2000e","stop":1750253483644},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253483645,"name":"locator.fill(invalid-email)","uuid":"5f908dda-11bf-4e67-9cf7-c51ff70b20ea","stop":1750253483664},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253483664,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"e2d5a0d3-17c9-4626-beaa-99da24760525","stop":1750253483707},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253483707,"name":"expect.toBeVisible","uuid":"f0fc322a-cca8-49ca-a7c9-0caa6c0bc78b","stop":1750253483710},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253483710,"uuid":"5d3bfd54-ddfc-49b9-a15d-da28a0880f95","stop":1750253483710},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253483710,"uuid":"c53b372a-69d4-45c7-9778-2b5f7d88fbaa","stop":1750253483710}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253483710,"uuid":"b2bae69a-83bf-4da6-affe-f5dbb0101757","stop":1750253484383}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-1"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"}],"links":[],"start":1750253482653,"testCaseId":"d776d5fb9c918a79827aea417bdc449a","fullName":"ui/recovery/recover-negative.spec.ts:7:7","stop":1750253484382} \ No newline at end of file diff --git a/allure-results/65235252-630d-43d7-9371-b6412c8b85dc-result.json b/allure-results/65235252-630d-43d7-9371-b6412c8b85dc-result.json new file mode 100644 index 0000000..904dc7d --- /dev/null +++ b/allure-results/65235252-630d-43d7-9371-b6412c8b85dc-result.json @@ -0,0 +1 @@ +{"uuid":"65235252-630d-43d7-9371-b6412c8b85dc","name":"Несуществующий email","historyId":"69b9236bee03ff0034bfbd5addc25f93:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252810865,"uuid":"0f789bc6-bce9-4633-9166-766f53e5847c","stop":1750252810866}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252810864,"uuid":"2cea0e77-d337-40d4-b7a2-28d92733efa0","stop":1750252810866},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252810867,"uuid":"3ab6b185-e0b2-452d-b7d2-4c02cfe428fe","stop":1750252810905}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252810866,"uuid":"cd58de08-a57a-444e-87d2-a6114bdcd7ca","stop":1750252810905}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252810864,"uuid":"328e86bb-ad10-48f7-84fb-ff25d3222fa8","stop":1750252810905},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252810906,"name":"page.goto(/login/authorization)","uuid":"17dc81fa-fe38-4e28-9b9e-afac9d73b1e4","stop":1750252811635},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252811635,"name":"locator.fill(wrong@example.com)","uuid":"cdc4ee9b-69dd-44c6-85cb-bcf419781691","stop":1750252811699},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252811704,"name":"locator.fill(anyPassword123)","uuid":"86f35521-6c49-4531-b002-edbec28a9461","stop":1750252811766},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252811767,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"f789c455-bda5-4808-a6ce-668f652b20c6","stop":1750252811812},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252811812,"name":"expect.toBeVisible","uuid":"669bde18-b257-4f35-84b7-633389d5f54d","stop":1750252811919},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252811919,"uuid":"7db7cbd4-a557-47c4-8188-ac65acf604b5","stop":1750252811919},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252811919,"uuid":"53aff16f-f3f7-4db2-af7b-3b569d43ea36","stop":1750252811919}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252811919,"uuid":"a1b5a54f-e003-4561-a8b0-d48af7ac5595","stop":1750252811924}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"}],"links":[],"start":1750252810864,"testCaseId":"69b9236bee03ff0034bfbd5addc25f93","fullName":"ui/login/login.negative.spec.ts:17:7","stop":1750252811923} \ No newline at end of file diff --git a/allure-results/659dd46a-262d-4098-9fa3-e586f40b0e44-result.json b/allure-results/659dd46a-262d-4098-9fa3-e586f40b0e44-result.json new file mode 100644 index 0000000..e4db990 --- /dev/null +++ b/allure-results/659dd46a-262d-4098-9fa3-e586f40b0e44-result.json @@ -0,0 +1 @@ +{"uuid":"659dd46a-262d-4098-9fa3-e586f40b0e44","name":"Оба поля пустые","historyId":"58990385f74407307e4ace7ad02abf05:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253478300,"uuid":"cce4013a-0e4e-4d87-8941-10a5ba338f27","stop":1750253478302}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253478300,"uuid":"8c14c019-9855-4955-bb46-99a19eb1c9f8","stop":1750253478304},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253478304,"uuid":"05fd2f12-943c-42ac-abac-2f0818b76dbf","stop":1750253478345}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253478304,"uuid":"18bed00a-8cb8-4e36-a30f-ded59460463a","stop":1750253478345}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253478299,"uuid":"ce1ab593-b0c4-49a7-9401-41e1a4413415","stop":1750253478345},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253478346,"name":"page.goto(/login/authorization)","uuid":"f38d5b39-f15c-4d7b-852d-72deaca54a8e","stop":1750253479275},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253479277,"name":"locator.fill()","uuid":"68566d7c-1727-45e1-977e-388ba6ea99c2","stop":1750253479301},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253479301,"name":"locator.fill()","uuid":"a373561b-f7a1-47f4-ab64-98189e6da95d","stop":1750253479343},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253479344,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"58f57c68-99cd-4ffb-9b42-f72f1f22debf","stop":1750253479389},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253479390,"name":"expect.toBeVisible","uuid":"d0d81522-ee96-470a-a451-17d95ae44482","stop":1750253479394},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253479395,"name":"expect.toBeVisible","uuid":"f754d5b6-2268-45b3-beef-9ba9fb07fd28","stop":1750253479397},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253479397,"uuid":"57c09978-76ae-4a3f-9bfb-15e7131a8127","stop":1750253479397},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253479398,"uuid":"008b3514-eee4-49b8-b72c-3ea4abeedb4b","stop":1750253479398}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253479397,"uuid":"50a21316-1a56-43f9-9520-f683968d9f09","stop":1750253480151}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"}],"links":[],"start":1750253478299,"testCaseId":"58990385f74407307e4ace7ad02abf05","fullName":"ui/login/login.negative.spec.ts:27:7","stop":1750253480150} \ No newline at end of file diff --git a/allure-results/65eb42ad-c230-4ed6-8247-82bf1a5a271e-result.json b/allure-results/65eb42ad-c230-4ed6-8247-82bf1a5a271e-result.json new file mode 100644 index 0000000..53710fe --- /dev/null +++ b/allure-results/65eb42ad-c230-4ed6-8247-82bf1a5a271e-result.json @@ -0,0 +1 @@ +{"uuid":"65eb42ad-c230-4ed6-8247-82bf1a5a271e","name":"Слишком длинная должность","historyId":"2214c0f917091cfcda832cd03e01bb76:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252825519,"uuid":"3a6da0c1-8e6c-48d4-a8ca-414e91fa0bae","stop":1750252825521}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252825519,"uuid":"1de37432-ec45-4763-8ade-c05b0ce40fa0","stop":1750252825522},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252825522,"uuid":"704355ee-1c4a-4848-bd91-b58323072593","stop":1750252825563}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252825522,"uuid":"6588845d-81ab-4110-b343-bb2c932a8750","stop":1750252825563}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252825518,"uuid":"b530df2f-291a-46fd-b037-c46ed1e505ab","stop":1750252825563},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252825563,"name":"page.goto(/login/registration)","uuid":"76e76268-3aae-444a-9934-f6d371ecb66b","stop":1750252826274},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252826274,"name":"locator.fill(XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX)","uuid":"37ee32e8-3ab9-419a-b0b4-38086cdf86e9","stop":1750252826330},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252826331,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"e8265990-b41f-4aa5-8db8-5ce439571e46","stop":1750252826358},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252826358,"name":"expect.toBeVisible","uuid":"9bda9997-dd93-49b5-abcf-e94aaf76e520","stop":1750252826361},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252826361,"uuid":"66bf6c53-bc3e-4a21-9c0a-0a752c282d99","stop":1750252826361},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252826361,"uuid":"d601dc86-d217-41cb-a974-9a19c9408663","stop":1750252826361}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252826361,"uuid":"04f0bd6b-4a21-4354-af29-cd8abcbf15a0","stop":1750252826365}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750252825519,"testCaseId":"2214c0f917091cfcda832cd03e01bb76","fullName":"ui/registration/register.negative.spec.ts:38:7","stop":1750252826364} \ No newline at end of file diff --git a/allure-results/672f17b7-a676-4dab-a170-0eb07d4d469a-result.json b/allure-results/672f17b7-a676-4dab-a170-0eb07d4d469a-result.json new file mode 100644 index 0000000..c25a03b --- /dev/null +++ b/allure-results/672f17b7-a676-4dab-a170-0eb07d4d469a-result.json @@ -0,0 +1 @@ +{"uuid":"672f17b7-a676-4dab-a170-0eb07d4d469a","name":"Несуществующий email","historyId":"c118be77fa2af6f0e0052ec7489ba66c:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252813958,"uuid":"7dcb8090-3b12-4253-9528-8e4a078cba73","stop":1750252813960}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252813958,"uuid":"43a94a63-6838-4f34-8e25-5fb6548d5c48","stop":1750252813960},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252813960,"uuid":"2f3a03ed-9e84-4b83-a873-fd58750f48a7","stop":1750252813997}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252813960,"uuid":"6b8fbc82-0927-4878-8053-9edfc5065f0f","stop":1750252813997}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252813957,"uuid":"72714f12-337d-4fc9-a210-1b62f17b392a","stop":1750252813997},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252813998,"name":"page.goto(/recoverpassword)","uuid":"ce25197a-10dd-49d1-9e87-09568e5899d0","stop":1750252814760},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252814761,"name":"locator.fill(nobody@example.com)","uuid":"598eb895-fdf7-4e31-a456-7c9c23a530bb","stop":1750252814795},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252814795,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"fe4685eb-fbea-4ad1-8fca-8584ad578ae9","stop":1750252814824},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252814825,"name":"expect.toBeVisible","uuid":"cf925b14-db72-40b3-9ca7-9624886b9457","stop":1750252814931},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252814931,"uuid":"743cd669-93bb-474e-8c57-2c90fa5ffaef","stop":1750252814931},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252814931,"uuid":"93fe30a8-70f6-40f8-b651-6569f1825cdb","stop":1750252814931}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252814931,"uuid":"d3d35288-4570-47d0-a6aa-baa34a57b5e7","stop":1750252814937}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"}],"links":[],"start":1750252813957,"testCaseId":"c118be77fa2af6f0e0052ec7489ba66c","fullName":"ui/recovery/recover-negative.spec.ts:15:7","stop":1750252814935} \ No newline at end of file diff --git a/allure-results/67f52ed6-3215-440e-bcaa-3fe7901d5532-result.json b/allure-results/67f52ed6-3215-440e-bcaa-3fe7901d5532-result.json new file mode 100644 index 0000000..274b50c --- /dev/null +++ b/allure-results/67f52ed6-3215-440e-bcaa-3fe7901d5532-result.json @@ -0,0 +1 @@ +{"uuid":"67f52ed6-3215-440e-bcaa-3fe7901d5532","name":"has title","historyId":"3a2a809b453af4fd564578d1a27f3e45:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserType.launch","start":1750252808950,"uuid":"f4a8bc9c-4516-4393-b780-99c4deb98771","stop":1750252809250}],"attachments":[],"parameters":[],"name":"fixture: browser","start":1750252808949,"uuid":"900c38e2-d042-4e40-bc87-74197f5327b3","stop":1750252809251},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252809253,"uuid":"f8127696-5a18-47b0-971d-0fd6606ea4f5","stop":1750252809270}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252809251,"uuid":"5cc2f1fc-e1b5-4858-9042-752d1fec91ef","stop":1750252809272},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252809274,"uuid":"aac588ae-26ac-48e2-b29f-698cd73adf97","stop":1750252809512}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252809273,"uuid":"806375e3-75ac-4dff-8314-0d9073d759cf","stop":1750252809512}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252808944,"uuid":"f0d9dcd3-612d-46f3-8553-433e3d6f43a8","stop":1750252809512},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252809521,"name":"page.goto(https://playwright.dev/)","uuid":"611651b2-9bdd-406b-be4b-0214a617e2e4","stop":1750252811665},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252811667,"name":"expect.toHaveTitle","uuid":"e7e7bb85-8217-44bb-adc5-bbe8050b15a6","stop":1750252811720},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252811722,"uuid":"350cc2bd-2eff-49f7-8deb-540b929e460f","stop":1750252811722},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252811723,"uuid":"f925d197-9705-43dc-95a0-4776cdfa1ea2","stop":1750252811723}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252811721,"uuid":"194795c9-082c-4091-8220-e5831c6ea34a","stop":1750252811783}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > chromium > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"example.spec.ts"}],"links":[],"start":1750252808950,"testCaseId":"3a2a809b453af4fd564578d1a27f3e45","fullName":"example.spec.ts:3:5","stop":1750252811481} \ No newline at end of file diff --git a/allure-results/68c60596-6538-4b2d-a71b-37b89b68efcd-result.json b/allure-results/68c60596-6538-4b2d-a71b-37b89b68efcd-result.json new file mode 100644 index 0000000..0b8700d --- /dev/null +++ b/allure-results/68c60596-6538-4b2d-a71b-37b89b68efcd-result.json @@ -0,0 +1 @@ +{"uuid":"68c60596-6538-4b2d-a71b-37b89b68efcd","name":"Отправка пустой формы","historyId":"61b0fd9a6b9153c787b71ef3413cea92:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252824474,"uuid":"cbf71aa8-79cf-4f48-ae29-93b9a2f0e815","stop":1750252824475}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252824474,"uuid":"038783ea-c098-4b8e-a658-94a099e02b5e","stop":1750252824475},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252824476,"uuid":"b918a83b-9e3f-4062-a991-1e3cf63a09b6","stop":1750252824539}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252824476,"uuid":"5bb2c284-e8d0-448a-a057-8c80e39cfc8d","stop":1750252824539}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252824473,"uuid":"4c10cc68-045a-45ad-986a-380926e5403d","stop":1750252824539},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252824542,"name":"page.goto(/login/registration)","uuid":"15f963a6-86bc-4a3c-84f5-5a9cae9346df","stop":1750252825333},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252825335,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"813204ab-572e-4d7e-a0f8-61622a670de7","stop":1750252825408},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252825408,"name":"locator.allTextContents(div[name=\"error\"] >> internal:has-text=\"Поле обязательно для заполнения\"i)","uuid":"7fedab6e-0b0f-4032-838d-baa132eabcc6","stop":1750252825416},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252825417,"name":"expect.toBeGreaterThan","uuid":"c667a259-e450-4bdb-a313-1567bdcd3854","stop":1750252825417},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252825417,"name":"expect.toBeVisible","uuid":"753f7917-0d1f-4a75-b41d-88253cc32644","stop":1750252825464},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252825465,"uuid":"6b0a76a4-f7e7-414f-a711-b8e4ce32c066","stop":1750252825465},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252825466,"uuid":"e2d6dd3f-2dc2-4333-9d9f-8af1c0e3cb0c","stop":1750252825466}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252825464,"uuid":"6b6cb790-71aa-4500-95ef-b27db7b2effc","stop":1750252825516}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750252824473,"testCaseId":"61b0fd9a6b9153c787b71ef3413cea92","fullName":"ui/registration/register.negative.spec.ts:6:7","stop":1750252825514} \ No newline at end of file diff --git a/allure-results/68e32bcf-7c2b-427a-8f7b-11a1a0b7feee-result.json b/allure-results/68e32bcf-7c2b-427a-8f7b-11a1a0b7feee-result.json new file mode 100644 index 0000000..87275db --- /dev/null +++ b/allure-results/68e32bcf-7c2b-427a-8f7b-11a1a0b7feee-result.json @@ -0,0 +1 @@ +{"uuid":"68e32bcf-7c2b-427a-8f7b-11a1a0b7feee","name":"Пользователь должен успешно залогиниться с валидными данными","historyId":"92a5ca35180a4cbe902714b987a6bf44:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253554446,"uuid":"6c1ea08d-e131-466b-a593-9d9f90a437e8","stop":1750253554447}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253554446,"uuid":"e2554bb1-dc37-42f8-b342-2dc839e556c8","stop":1750253554450},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253554450,"uuid":"f950a8ce-6330-4570-a26e-e91d02f47e13","stop":1750253554492}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253554450,"uuid":"b62df455-5df9-4815-9d8a-1ff71d9eaa87","stop":1750253554492}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253554444,"uuid":"5881a7b0-c495-4012-ae12-1efdcfd888ce","stop":1750253554492},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253554493,"name":"page.goto(/login/authorization)","uuid":"82b86ed5-3698-488d-9507-ed574ae2ecc5","stop":1750253555333},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253555335,"name":"locator.fill(autotest@example.com)","uuid":"afe686bd-4605-485a-bab4-23c4d0468976","stop":1750253555355},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253555355,"name":"locator.fill(!Test123456)","uuid":"b13558ba-f9ce-4705-a5f2-92de541c73d7","stop":1750253555392},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253555394,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"2877543d-a718-41c0-998b-fb64309c820c","stop":1750253555459},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253555463,"name":"expect.toHaveURL","uuid":"012c7a9f-fb69-405b-8250-bfbbb578a06c","stop":1750253555592},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253555596,"name":"expect.toBeVisible","uuid":"b3c06e8b-03a9-4cf6-9185-762991138d7f","stop":1750253555632},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253555633,"uuid":"9b231314-1c43-4230-b404-2a4aff154e39","stop":1750253555633},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253555633,"uuid":"9dc0ca0d-0464-487a-94d4-484d8a6b16f2","stop":1750253555633}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253555633,"uuid":"faad44be-5624-4c68-890c-f17c93abe482","stop":1750253556273}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.spec.ts > Авторизация пользователя"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.spec.ts"},{"name":"subSuite","value":"Авторизация пользователя"}],"links":[],"start":1750253554444,"testCaseId":"92a5ca35180a4cbe902714b987a6bf44","fullName":"ui/login/login.spec.ts:7:7","stop":1750253556270} \ No newline at end of file diff --git a/allure-results/694e1d03-5899-4519-86f2-53cc0f4e4f18-result.json b/allure-results/694e1d03-5899-4519-86f2-53cc0f4e4f18-result.json new file mode 100644 index 0000000..dd2320f --- /dev/null +++ b/allure-results/694e1d03-5899-4519-86f2-53cc0f4e4f18-result.json @@ -0,0 +1 @@ +{"uuid":"694e1d03-5899-4519-86f2-53cc0f4e4f18","name":"Переход по ссылке \"Зарегистрируйтесь\"","historyId":"62db9603623bba26b6305edb541ef4fa:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserType.launch","start":1750252832584,"uuid":"74e66237-a3ce-47e4-9738-06787caf06d2","stop":1750252833113}],"attachments":[],"parameters":[],"name":"fixture: browser","start":1750252832583,"uuid":"12ceea71-5b75-4cca-8092-ebecbe28a961","stop":1750252833114},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252833116,"uuid":"ae7d315e-3b6a-4ee2-949f-951054b463fb","stop":1750252833230}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252833115,"uuid":"ad2d4437-0bf1-4fac-8b6f-d751803139ae","stop":1750252833231},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252833232,"uuid":"51ae4f08-ed31-4623-9470-7c9790fc0c58","stop":1750252833667}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252833231,"uuid":"f55b6962-0c66-4e98-a661-1db7817a3213","stop":1750252833667}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252832579,"uuid":"4b267e5c-7aaf-4589-bc35-bcff651478f8","stop":1750252833667},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252833671,"name":"page.goto(/login/authorization)","uuid":"9f8c3226-6927-4a93-96f3-bbd5522f28b3","stop":1750252841803},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252841805,"name":"locator.getByText('Зарегистрируйтесь').click","uuid":"0f0c2017-8752-44f7-b8fc-c7b156c34682","stop":1750252842173},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252842174,"name":"expect.toHaveURL","uuid":"781d6e21-be8b-4a3e-a834-fce24a580cfb","stop":1750252842200},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252842200,"name":"expect.toBeVisible","uuid":"9b7e9478-e08d-4f62-900e-cd3e96608af0","stop":1750252842204},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252842205,"uuid":"4b0f935f-f5e6-4587-b244-2203e08ab5b5","stop":1750252842205},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252842205,"uuid":"324f55a7-9ebc-46cc-986b-b9f604b33faf","stop":1750252842205}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252842204,"uuid":"7b79f2c4-0864-445a-9e8c-4a72f7e1ce8b","stop":1750252842222}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-3"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"}],"links":[],"start":1750252832579,"testCaseId":"62db9603623bba26b6305edb541ef4fa","fullName":"ui/login/login.link.spec.ts:15:5","stop":1750252841686} \ No newline at end of file diff --git a/allure-results/69a36c86-a855-42d4-8525-6691650fa286-result.json b/allure-results/69a36c86-a855-42d4-8525-6691650fa286-result.json new file mode 100644 index 0000000..ac59640 --- /dev/null +++ b/allure-results/69a36c86-a855-42d4-8525-6691650fa286-result.json @@ -0,0 +1 @@ +{"uuid":"69a36c86-a855-42d4-8525-6691650fa286","name":"Пользователь успешно восстанавливает пароль","historyId":"1779c735aef9d62c071557455e74e57f:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252847675,"uuid":"dda8d655-2223-4175-9819-b2949e5d2781","stop":1750252847691}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252847675,"uuid":"cf51a54e-7009-48a7-ab5a-80c4beb5a7fb","stop":1750252847691},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252847691,"uuid":"088219b6-def6-4c01-8d27-56f10be7036a","stop":1750252847888}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252847691,"uuid":"3340681d-a6e7-42ad-b2df-f22bc9f3357c","stop":1750252847888}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252847673,"uuid":"6bcec482-f3da-4038-b9f9-9b79acf18a49","stop":1750252847888},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252847889,"name":"page.goto(/recoverpassword)","uuid":"0e7d116d-7982-4fd5-b8ff-2b8ca5af5ae7","stop":1750252850231},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252850232,"name":"locator.fill(autotest@example.com)","uuid":"955f2ef7-0fe8-4e5d-9b64-1d43f5fc72fc","stop":1750252850265},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252850265,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"c97d56c1-53dc-4b9e-9f3c-bdefb46d452a","stop":1750252850338},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252850338,"name":"expect.toHaveURL","uuid":"b0165ad4-4ecc-4f44-be0d-a219ed6eda0d","stop":1750252850450},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252850450,"name":"locator.count(input[type=\"text\"])","uuid":"3910cd73-1a68-418a-abbd-79d5c23e9325","stop":1750252850453},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252850454,"name":"locator.fill(0)","uuid":"9bd1b523-45c0-40bc-9f2c-c3f14f5da178","stop":1750252850475},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252850476,"name":"locator.fill(0)","uuid":"509b9e4d-a9d6-4e37-a462-590a1254f172","stop":1750252850482},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252850483,"name":"locator.fill(0)","uuid":"ac9a1df2-e2ab-4e8d-8251-3582dff06609","stop":1750252850488},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252850489,"name":"locator.fill(0)","uuid":"a2168e43-aa56-460f-8e8e-760987e0addb","stop":1750252850496},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252850496,"name":"locator.fill(0)","uuid":"9f37ea02-81de-4c3b-aaf5-a5a9500df0fb","stop":1750252850502},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252850503,"name":"locator.fill(0)","uuid":"cefe553c-388e-4436-9423-81e4c3351a2a","stop":1750252850507},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252850507,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"5f8517b6-3ccc-4302-bca9-3f6df5ba4008","stop":1750252850568},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252850569,"name":"expect.toBeVisible","uuid":"e93ac4b0-4a19-4ba5-8367-753491c4e04e","stop":1750252850676},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252850677,"name":"locator.fill(!Test123456)","uuid":"7c310df9-b739-4165-b8fb-24a4e27ef9ae","stop":1750252850686},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252850686,"name":"locator.fill(!Test123456)","uuid":"3c02bef2-9607-4a0d-a0c2-10394b6d53bf","stop":1750252850692},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252850692,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"13756f82-e596-4d53-b17f-23c6d3dc8278","stop":1750252850750},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252850750,"name":"expect.toHaveURL","uuid":"e1648e2f-561e-44de-916f-305b1a850635","stop":1750252850863},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252850863,"name":"expect.toBeVisible","uuid":"e219ed19-26f0-4f85-9749-1b12e7c09dcf","stop":1750252850870},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252850870,"uuid":"3978ca56-4d7a-4e95-9ffb-5618e6fc8dbd","stop":1750252850870},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252850870,"uuid":"1e53486f-1202-4b23-a9d1-67cba6cd8325","stop":1750252850870}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252850870,"uuid":"17b70fe8-8e86-446b-9a89-ffa747ba1d70","stop":1750252850886}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-password.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-password.spec.ts > Восстановление пароля — позитивные сценарии"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-password.spec.ts"},{"name":"subSuite","value":"Восстановление пароля — позитивные сценарии"}],"links":[],"start":1750252847675,"testCaseId":"1779c735aef9d62c071557455e74e57f","fullName":"ui/recovery/recover-password.spec.ts:7:7","stop":1750252850886} \ No newline at end of file diff --git a/allure-results/6a1179b0-e8dd-4889-a166-a4e6b8f6ec46-result.json b/allure-results/6a1179b0-e8dd-4889-a166-a4e6b8f6ec46-result.json new file mode 100644 index 0000000..5287b91 --- /dev/null +++ b/allure-results/6a1179b0-e8dd-4889-a166-a4e6b8f6ec46-result.json @@ -0,0 +1 @@ +{"uuid":"6a1179b0-e8dd-4889-a166-a4e6b8f6ec46","name":"Переход по ссылке \"Зарегистрируйтесь\"","historyId":"62db9603623bba26b6305edb541ef4fa:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253616848,"uuid":"806454ec-6095-4355-83fd-008788753f3c","stop":1750253616850}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253616848,"uuid":"19620431-6c23-4dd0-9c02-bb60f22b5da6","stop":1750253616852},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253616852,"uuid":"b980a852-7177-4e59-b417-d123936c90ed","stop":1750253616962}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253616852,"uuid":"26c7f5de-55cb-45a4-a1a7-8c1e89211da7","stop":1750253616962}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253616847,"uuid":"43025f6c-8fd3-4e70-8eb2-23f469c40b7a","stop":1750253616962},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253616964,"name":"page.goto(/login/authorization)","uuid":"9f8ee393-15d4-4be6-bc13-332bb91ad7cb","stop":1750253618295},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253618296,"name":"locator.getByText('Зарегистрируйтесь').click","uuid":"618c91c5-8ecc-4ade-9118-d3cf0760039b","stop":1750253618351},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253618352,"name":"expect.toHaveURL","uuid":"7ad35b4f-6bc8-4102-b897-4c62457763fb","stop":1750253618360},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253618361,"name":"expect.toBeVisible","uuid":"8d67c732-b27d-46df-913e-44a21353876b","stop":1750253618365},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253618366,"uuid":"4958e0d0-fba4-4761-8a59-857b6205e060","stop":1750253618366},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253618366,"uuid":"97fe1d20-db91-47f9-a934-dddeae6c7d02","stop":1750253618366}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253618366,"uuid":"309c4339-57fd-4996-b9bb-30af6d27cf9c","stop":1750253618432}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-0"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"}],"links":[],"start":1750253616847,"testCaseId":"62db9603623bba26b6305edb541ef4fa","fullName":"ui/login/login.link.spec.ts:15:5","stop":1750253618431} \ No newline at end of file diff --git a/allure-results/6b01d17b-9ac5-4435-a45b-cead7801d3f7-result.json b/allure-results/6b01d17b-9ac5-4435-a45b-cead7801d3f7-result.json new file mode 100644 index 0000000..83dae17 --- /dev/null +++ b/allure-results/6b01d17b-9ac5-4435-a45b-cead7801d3f7-result.json @@ -0,0 +1 @@ +{"uuid":"6b01d17b-9ac5-4435-a45b-cead7801d3f7","name":"Регистр в email (User@test.com ≠ user@test.com)","historyId":"cc4ad4b40ef726af11b2bd4f5523dbe0:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253543999,"uuid":"bdaec5c1-778d-4f34-b323-69876141dfd6","stop":1750253544000}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253543998,"uuid":"8a7b3cdb-33ac-4b75-b341-1ef510147bb9","stop":1750253544001},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253544001,"uuid":"6a82f146-c6ab-4419-b222-ed6b5bb680bd","stop":1750253544038}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253544001,"uuid":"f0b490bd-aac0-4982-b55a-009178a61107","stop":1750253544038}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253543998,"uuid":"aa87301c-5d49-457e-95c9-9099574b9bfc","stop":1750253544038},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253544039,"name":"page.goto(/login/authorization)","uuid":"17ed1ec6-3569-46b2-9296-62e0cdfce09b","stop":1750253549083},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253549084,"name":"locator.fill(Autotest@Example.com)","uuid":"a46f4d71-78ed-48d4-9577-dc115f6f54be","stop":1750253549132},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253549135,"name":"locator.fill(!Test123456)","uuid":"ae819606-85a2-45c9-aa86-1e4716f0860f","stop":1750253549201},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253549206,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"49350990-6db5-4257-bc25-5dc9d5100f7d","stop":1750253549251},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253549251,"name":"expect.toBeVisible","uuid":"5322bb14-0005-4537-9dd0-0b8a830aedbb","stop":1750253549357},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253549357,"uuid":"31be9a9f-ead0-4947-a959-c1e853a406fc","stop":1750253549358},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253549358,"uuid":"d8d88faf-df1b-4dc1-933f-1582b0686083","stop":1750253549358}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253549357,"uuid":"2d9136a2-07c0-4ff4-8ffa-64b5b9438c81","stop":1750253554550}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"tag","value":"test.com"},{"name":"tag","value":"test.com)"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"}],"links":[],"start":1750253543998,"testCaseId":"cc4ad4b40ef726af11b2bd4f5523dbe0","fullName":"ui/login/login.negative.spec.ts:58:7","stop":1750253554549} \ No newline at end of file diff --git a/allure-results/6ca88393-b818-4bcc-a0f2-a49e6ef2f7ca-result.json b/allure-results/6ca88393-b818-4bcc-a0f2-a49e6ef2f7ca-result.json new file mode 100644 index 0000000..add5292 --- /dev/null +++ b/allure-results/6ca88393-b818-4bcc-a0f2-a49e6ef2f7ca-result.json @@ -0,0 +1 @@ +{"uuid":"6ca88393-b818-4bcc-a0f2-a49e6ef2f7ca","name":"Пустое поле \"Повторите пароль\"","historyId":"e6d2fb91f0b85b95c3962ffc860dddd7:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252814939,"uuid":"296de1d4-2c29-4407-8118-56c943c59055","stop":1750252814941}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252814939,"uuid":"714cbb42-b79e-4d38-bf9f-eb7ddb232f6d","stop":1750252814941},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252814941,"uuid":"65788b70-d08d-4548-ab09-c64ea4ccef1d","stop":1750252814976}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252814941,"uuid":"d35a9a4b-3cf0-4e7c-bfa4-310787597d39","stop":1750252814976}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252814938,"uuid":"08857702-628f-48d5-a181-3f4c849c8a02","stop":1750252814976},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252814976,"name":"page.goto(/recoverpassword)","uuid":"f51ce4dc-93a7-4e19-84b3-badb2a1fb3ee","stop":1750252815798},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252815799,"name":"locator.fill(autotest@example.com)","uuid":"c8d77970-689c-4dd3-8b22-775a4c950109","stop":1750252815831},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252815832,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"d25da00f-0c57-4453-81c5-e9baa48aa9b1","stop":1750252815858},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252815859,"name":"locator.count(input[type=\"text\"])","uuid":"dd2b8213-bde6-49e1-9fab-27e3a48f89ff","stop":1750252815860},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252815860,"name":"locator.fill(0)","uuid":"059d59cb-4c38-4aff-9c0a-06ab3bb16d24","stop":1750252824271},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252824272,"name":"locator.fill(0)","uuid":"eda00e95-2fcf-4994-9e4e-132786a68e15","stop":1750252824279},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252824279,"name":"locator.fill(0)","uuid":"3de8b228-2cfa-4070-977b-dbd089aaf23e","stop":1750252824284},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252824284,"name":"locator.fill(0)","uuid":"0ca186b7-2809-4c7c-8729-36d9a69d4f25","stop":1750252824289},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252824289,"name":"locator.fill(0)","uuid":"52f5b625-6608-49da-b786-ce33263292dc","stop":1750252824292},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252824293,"name":"locator.fill(0)","uuid":"4db47dc1-369e-4be8-b2d1-24145560bd73","stop":1750252824297},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252824297,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"ed639867-bd85-42c6-879a-0a71c68101c9","stop":1750252824329},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252824329,"name":"locator.fill(!Test123456)","uuid":"5905c614-7f35-4ae1-b58e-4beedb8b6f96","stop":1750252824411},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252824413,"name":"locator.fill()","uuid":"6959faca-4075-4338-b215-d53fb8368d0d","stop":1750252824418},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252824421,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"002f9101-2dac-4920-bedc-2aee8efcfdc5","stop":1750252824457},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252824458,"name":"expect.toBeVisible","uuid":"73e73ff7-70ff-4595-88ac-b6f320bddd04","stop":1750252824461},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252824461,"uuid":"9514285d-1680-4234-aa55-07897e34b19d","stop":1750252824461},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252824461,"uuid":"68edf667-973f-49f6-b3b0-bf0f26164e62","stop":1750252824461}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252824461,"uuid":"b3deabf4-1c85-46f2-9c17-e7c02a0e5bae","stop":1750252824467}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"}],"links":[],"start":1750252814938,"testCaseId":"e6d2fb91f0b85b95c3962ffc860dddd7","fullName":"ui/recovery/recover-negative.spec.ts:45:7","stop":1750252824465} \ No newline at end of file diff --git a/allure-results/6d43d70f-9755-495c-ba43-91208c7d2729-result.json b/allure-results/6d43d70f-9755-495c-ba43-91208c7d2729-result.json new file mode 100644 index 0000000..2a4c210 --- /dev/null +++ b/allure-results/6d43d70f-9755-495c-ba43-91208c7d2729-result.json @@ -0,0 +1 @@ +{"uuid":"6d43d70f-9755-495c-ba43-91208c7d2729","name":"Некорректный новый пароль","historyId":"18246cf63350a71f5b46012e257bafcf:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253599893,"uuid":"aa03bbfd-790e-41ed-b9b0-cdbe2b257029","stop":1750253599895}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253599893,"uuid":"3ec96cfc-39e3-4c42-9f94-bbf8eaf66b81","stop":1750253599897},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253599897,"uuid":"b7dcbbcb-b8aa-462d-a7a5-736fb9ad30e3","stop":1750253600049}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253599897,"uuid":"83f7ab8b-dcb1-4ece-ae4f-8a7ab7e3f595","stop":1750253600049}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253599892,"uuid":"89751972-f4b3-4ef7-ba18-c2465e60f115","stop":1750253600049},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253600050,"name":"page.goto(/recoverpassword)","uuid":"dc8ccfd8-567b-49c1-89be-889b1f23b0c3","stop":1750253601772},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253601773,"name":"locator.fill(autotest@example.com)","uuid":"b6fdb9a9-2eb9-42ab-8cef-caee4ea4ebd7","stop":1750253601801},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253601802,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"3d2341ed-5902-4eb2-900a-d8651de49c83","stop":1750253601872},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253601873,"name":"locator.count(input[type=\"text\"])","uuid":"07f88d19-2bbb-4032-adba-bc1077cd5b62","stop":1750253601877},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253601878,"name":"locator.fill(0)","uuid":"605531b5-7906-49b0-8e14-a9942c09d85c","stop":1750253601962},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253601962,"name":"locator.fill(0)","uuid":"274921c0-9337-4330-992a-8b80c6e5e7af","stop":1750253601972},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253601972,"name":"locator.fill(0)","uuid":"921b9099-a66e-476e-9ace-2f3a7f2af16a","stop":1750253601979},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253601980,"name":"locator.fill(0)","uuid":"e2da4555-6ef3-4259-950c-deebb89f0950","stop":1750253601991},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253601992,"name":"locator.fill(0)","uuid":"7345f951-757d-4ece-972f-d6b26c1392ee","stop":1750253601999},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253601999,"name":"locator.fill(0)","uuid":"697340ac-7cc6-4a9f-a23f-4b75fee97745","stop":1750253602007},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253602008,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"c46b33b5-8c8d-4564-a73a-64e56fc5b87d","stop":1750253602059},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253602059,"name":"locator.fill(123)","uuid":"ec609bb8-2d33-4a75-a2a4-72d83d07903d","stop":1750253602146},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253602147,"name":"locator.fill(123)","uuid":"137b1c2f-b84d-4cec-9f79-e37fe2045543","stop":1750253602156},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253602157,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"7259761e-5f29-4110-a37d-55f06efe426c","stop":1750253602207},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253602208,"name":"expect.toBeVisible","uuid":"cc8d358e-3ef0-43ae-b622-9e5a9fc903e4","stop":1750253602213},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253602214,"uuid":"0b958f62-ea19-4b1e-8833-0dc65c80a327","stop":1750253602214},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253602214,"uuid":"7371e19d-6f7e-4214-bb6d-f1840236cf75","stop":1750253602214}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253602213,"uuid":"6e1e319f-a99c-4de3-b074-fb24aee007e9","stop":1750253602243}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"}],"links":[],"start":1750253599892,"testCaseId":"18246cf63350a71f5b46012e257bafcf","fullName":"ui/recovery/recover-negative.spec.ts:34:7","stop":1750253602241} \ No newline at end of file diff --git a/allure-results/6d760fd6-660a-4d87-9938-f74bc7a088c3-result.json b/allure-results/6d760fd6-660a-4d87-9938-f74bc7a088c3-result.json new file mode 100644 index 0000000..eb9cda7 --- /dev/null +++ b/allure-results/6d760fd6-660a-4d87-9938-f74bc7a088c3-result.json @@ -0,0 +1 @@ +{"uuid":"6d760fd6-660a-4d87-9938-f74bc7a088c3","name":"Некорректный email (формат)","historyId":"d776d5fb9c918a79827aea417bdc449a:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253554555,"uuid":"f89afccb-03e8-4f9e-8dfc-7f669040a829","stop":1750253554556}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253554555,"uuid":"9054ac0f-a8a0-4b5c-a6eb-947d1eda5293","stop":1750253554559},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253554560,"uuid":"101ddfab-f0cf-44d5-9439-39b4d213dcb9","stop":1750253554593}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253554560,"uuid":"7f384acc-b5be-41cd-8dc9-d7db5780f8c6","stop":1750253554593}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253554554,"uuid":"8fb17697-4025-46a4-b8f4-a1e5bdb93212","stop":1750253554593},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253554595,"name":"page.goto(/recoverpassword)","uuid":"a5e14623-da52-45f0-ae31-a40ebe0d9e80","stop":1750253555639},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253555640,"name":"locator.fill(invalid-email)","uuid":"bc1fe887-ebca-4c50-ac16-aba26906bf12","stop":1750253555754},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253555756,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"1207afc9-dea1-44d1-8d66-0ae755c1c6f6","stop":1750253555799},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253555800,"name":"expect.toBeVisible","uuid":"6c39ad5e-821b-4e75-825e-dfcc45d08e98","stop":1750253555803},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253555803,"uuid":"a00f8888-9584-4a4b-acf4-1bf6bd7a8814","stop":1750253555803},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253555803,"uuid":"1a659a68-efa3-48a1-b236-163e0a98d874","stop":1750253555803}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253555803,"uuid":"6d3e3695-1576-4b76-b811-1784cd684c91","stop":1750253556744}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"}],"links":[],"start":1750253554554,"testCaseId":"d776d5fb9c918a79827aea417bdc449a","fullName":"ui/recovery/recover-negative.spec.ts:7:7","stop":1750253556742} \ No newline at end of file diff --git a/allure-results/6f31f396-d9e8-4d89-a3b2-64f420b2c198-result.json b/allure-results/6f31f396-d9e8-4d89-a3b2-64f420b2c198-result.json new file mode 100644 index 0000000..1353e25 --- /dev/null +++ b/allure-results/6f31f396-d9e8-4d89-a3b2-64f420b2c198-result.json @@ -0,0 +1 @@ +{"uuid":"6f31f396-d9e8-4d89-a3b2-64f420b2c198","name":"get started link","historyId":"37e4aa066a5f6eac2e4d3b98a2ed98a7:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"broken","statusDetails":{"message":"Test timeout of 30000ms exceeded.","trace":"Test timeout of 30000ms exceeded."},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserType.launch","start":1750253539587,"uuid":"83944fc9-ecc2-42d0-b63b-a80e7f37be50","stop":1750253539893}],"attachments":[],"parameters":[],"name":"fixture: browser","start":1750253539584,"uuid":"e1a5be5d-3d84-45bf-9916-7a85b6584db7","stop":1750253539894},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253539896,"uuid":"26998c43-e9c8-4de1-a57f-72b430ddd924","stop":1750253539922}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253539894,"uuid":"4fcda989-4d1e-4a44-a4fa-32df581c7b0d","stop":1750253539972},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253539975,"uuid":"c4dc7b43-d221-433e-9485-0501ebb80172","stop":1750253540164}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253539973,"uuid":"3a2fab1f-8d29-4106-bf13-d1d4d9f20a29","stop":1750253540164}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253539576,"uuid":"0306b0f5-7ab1-415b-a3f6-4f1902bc3f64","stop":1750253540164},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253540167,"name":"page.goto(https://playwright.dev/)","uuid":"7d6c3d41-e423-45fa-90d3-c2b799e9be60","stop":1750253542422},{"status":"failed","statusDetails":{"message":"Error: locator.click: Test timeout of 30000ms exceeded.\nCall log:\n - waiting for getByRole('link', { name: 'Get started' })\n - locator resolved to Get started\n - attempting click action\n - waiting for element to be visible, enabled and stable\n","trace":"Error: locator.click: Test timeout of 30000ms exceeded.\nCall log:\n - waiting for getByRole('link', { name: 'Get started' })\n - locator resolved to Get started\n - attempting click action\n - waiting for element to be visible, enabled and stable\n\n at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/example.spec.ts:14:57"},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253542424,"name":"locator.getByRole('link', { name: 'Get started' }).click","uuid":"6f7dc212-bf78-413d-946a-f18cbfcdcec1","stop":1750253574977},{"statusDetails":{},"stage":"finished","steps":[],"attachments":[{"name":"_error-context-1","source":"f542fd18-dfa0-48aa-af5b-787bce4a2d9d-attachment.md","type":"text/markdown"}],"parameters":[],"start":1750253579974,"name":"_error-context-1","stop":1750253579974},{"statusDetails":{},"stage":"finished","steps":[],"attachments":[{"name":"trace","source":"b5dc58f7-07f2-4069-899f-696854359f05-attachment.zip","type":"application/vnd.allure.playwright-trace"}],"parameters":[],"start":1750253579975,"name":"trace","stop":1750253579975},{"status":"failed","statusDetails":{},"stage":"finished","steps":[{"status":"failed","statusDetails":{"message":"TimeoutError: page.screenshot: Timeout 5000ms exceeded.\nCall log:\n - taking page screenshot\n - waiting for fonts to load...\n - fonts loaded\n","trace":"TimeoutError: page.screenshot: Timeout 5000ms exceeded.\nCall log:\n - taking page screenshot\n - waiting for fonts to load...\n - fonts loaded\n"},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"page.screenshot","start":1750253569897,"uuid":"d86396b6-358b-4213-8a84-3e8a90360f39","stop":1750253574913},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253574914,"uuid":"4139a17c-b246-48ad-869c-91de3a5b553c","stop":1750253574914},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253574914,"uuid":"76d73b98-1bca-485f-9a26-8db0f30bcc1d","stop":1750253574914}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253569895,"uuid":"cc33056d-735e-4025-973b-09168958ff26","stop":1750253579893}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > chromium > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-1"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"example.spec.ts"}],"links":[],"start":1750253539580,"testCaseId":"37e4aa066a5f6eac2e4d3b98a2ed98a7","fullName":"example.spec.ts:10:5","stop":1750253579575} \ No newline at end of file diff --git a/allure-results/709f7ec8-24a6-423e-9962-8bee47b2f2b2-result.json b/allure-results/709f7ec8-24a6-423e-9962-8bee47b2f2b2-result.json new file mode 100644 index 0000000..35c9693 --- /dev/null +++ b/allure-results/709f7ec8-24a6-423e-9962-8bee47b2f2b2-result.json @@ -0,0 +1 @@ +{"uuid":"709f7ec8-24a6-423e-9962-8bee47b2f2b2","name":"Слишком длинная должность","historyId":"2214c0f917091cfcda832cd03e01bb76:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253497298,"uuid":"97952018-3260-455c-acc3-0251ca35fd54","stop":1750253497300}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253497298,"uuid":"1c7f74f9-6e06-493b-9f87-c9d2b87e3120","stop":1750253497301},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253497302,"uuid":"d9738c41-0997-4de0-8a5f-a5dbbbabd23c","stop":1750253497341}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253497302,"uuid":"fc171feb-936d-4811-94f8-6c172a041075","stop":1750253497341}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253497296,"uuid":"add8ae81-6f8b-4096-8b4a-167a94c7e4b4","stop":1750253497341},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253497344,"name":"page.goto(/login/registration)","uuid":"257cc30b-6e10-4ef8-b60a-a4bceda20084","stop":1750253503021},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253503023,"name":"locator.fill(XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX)","uuid":"a1933d9d-41aa-403c-8acf-db6187ec93b5","stop":1750253503050},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253503051,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"1758b29b-fec5-457c-a79b-bb87b3ecc858","stop":1750253503096},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253503097,"name":"expect.toBeVisible","uuid":"5c4022e3-fb18-4b77-87ec-3922969fca4a","stop":1750253503155},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253503156,"uuid":"decc981c-33ba-4467-8b06-2f5e56239896","stop":1750253503156},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253503156,"uuid":"678b90de-024f-4f6b-90b5-ad31ffd122ac","stop":1750253503156}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253503155,"uuid":"69ba720c-59ad-417e-89af-4db47c0d9b74","stop":1750253503801}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750253497296,"testCaseId":"2214c0f917091cfcda832cd03e01bb76","fullName":"ui/registration/register.negative.spec.ts:38:7","stop":1750253503798} \ No newline at end of file diff --git a/allure-results/760fb6fa-8c60-4048-962d-52d2fbc56942-result.json b/allure-results/760fb6fa-8c60-4048-962d-52d2fbc56942-result.json new file mode 100644 index 0000000..abceaa9 --- /dev/null +++ b/allure-results/760fb6fa-8c60-4048-962d-52d2fbc56942-result.json @@ -0,0 +1 @@ +{"uuid":"760fb6fa-8c60-4048-962d-52d2fbc56942","name":"Некорректное имя и фамилия (слишком длинные)","historyId":"7134a02a04b606099de5c920fb62990a:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252847938,"uuid":"d2bace53-0554-4a1e-aecb-6d4ee996e901","stop":1750252847954}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252847937,"uuid":"e0a3997a-4fc8-4f9f-bb4b-128f97e62056","stop":1750252847955},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252847956,"uuid":"7c85be7c-91c6-4686-bc38-5d0bc3dfaa30","stop":1750252848121}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252847955,"uuid":"e8cb4412-9729-4ad2-ba11-77d004334bd7","stop":1750252848121}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252847935,"uuid":"ae37da2e-68b5-4834-a2ec-86640a14f9d2","stop":1750252848121},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252848122,"name":"page.goto(/login/registration)","uuid":"2ed720eb-01cf-4d5c-b5a6-8d776c630451","stop":1750252850918},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252850920,"name":"locator.fill(ААААААААААААААААААААААААААААААААААААААААААААААААААА)","uuid":"70ac311f-e0d2-4eb8-8b43-b8d5ca4746ea","stop":1750252850949},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252850950,"name":"locator.fill(БББББББББББББББББББББББББББББББББББББББББББББББББББ)","uuid":"358bbcc1-fe0f-47b3-a40a-53ca80a8d9bc","stop":1750252850957},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252850957,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"70fda4ea-deff-4cb9-a32d-57aeffe949e0","stop":1750252851035},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252851035,"name":"expect.toBeVisible","uuid":"93601dbb-6849-4331-9afd-64543b00c4da","stop":1750252851040},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252851040,"name":"expect.toBeVisible","uuid":"30e8c61b-3020-4574-b85d-0d5058488abc","stop":1750252851070},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252851070,"uuid":"53a836af-adb4-4fdf-a0cd-b69793516b13","stop":1750252851070},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252851070,"uuid":"784f525f-a8f8-4e6b-8286-ac7781e6f2d6","stop":1750252851070}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252851070,"uuid":"a500380c-ad15-4e1f-aad6-96a8988f367a","stop":1750252851082}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-3"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750252847933,"testCaseId":"7134a02a04b606099de5c920fb62990a","fullName":"ui/registration/register.negative.spec.ts:16:7","stop":1750252851077} \ No newline at end of file diff --git a/allure-results/77b18a93-b462-4c9e-94d5-890b0683491e-result.json b/allure-results/77b18a93-b462-4c9e-94d5-890b0683491e-result.json new file mode 100644 index 0000000..389f177 --- /dev/null +++ b/allure-results/77b18a93-b462-4c9e-94d5-890b0683491e-result.json @@ -0,0 +1 @@ +{"uuid":"77b18a93-b462-4c9e-94d5-890b0683491e","name":"Пользователь должен успешно залогиниться с валидными данными","historyId":"92a5ca35180a4cbe902714b987a6bf44:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253592138,"uuid":"9ab2c9b2-3049-43bf-b7bc-47fe7f81404b","stop":1750253592140}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253592137,"uuid":"0ea43757-c126-4fce-91e8-2307f2562d27","stop":1750253592142},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253592142,"uuid":"9f236bfc-b1fb-4eed-a5de-0de427a105af","stop":1750253592324}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253592142,"uuid":"dc8613d6-f224-4b80-9006-7a15fbfbd1ac","stop":1750253592325}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253592136,"uuid":"76131711-1388-418a-8295-7ac95365278d","stop":1750253592325},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253592326,"name":"page.goto(/login/authorization)","uuid":"0b3289fd-76e4-4618-bbbf-346607db6af1","stop":1750253598690},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253598691,"name":"locator.fill(autotest@example.com)","uuid":"2499809b-43e6-4436-826f-154ca042f583","stop":1750253598726},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253598727,"name":"locator.fill(!Test123456)","uuid":"d7c8cb32-3a6c-47ae-9182-a85025345854","stop":1750253598739},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253598739,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"3a0fec6a-0631-4bd4-8041-48b22b9ee3a6","stop":1750253598807},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253598808,"name":"expect.toHaveURL","uuid":"6c475911-91c7-4b8e-bf7f-7396791242d3","stop":1750253598945},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253598945,"name":"expect.toBeVisible","uuid":"9eb30039-bcc2-4639-82e5-65db88c2305f","stop":1750253598957},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253598958,"uuid":"ffcae1ae-12ce-41ac-b080-2434360e363a","stop":1750253598958},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253598959,"uuid":"10d6beeb-dcad-442f-add2-7440d4f1db3a","stop":1750253598960}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253598958,"uuid":"522b7f83-5572-4de8-9a02-5bb96f5a702b","stop":1750253599026}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.spec.ts > Авторизация пользователя"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.spec.ts"},{"name":"subSuite","value":"Авторизация пользователя"}],"links":[],"start":1750253592136,"testCaseId":"92a5ca35180a4cbe902714b987a6bf44","fullName":"ui/login/login.spec.ts:7:7","stop":1750253599022} \ No newline at end of file diff --git a/allure-results/7bb8561d-a6a9-4c5f-9be8-f2d8dd64e2b2-result.json b/allure-results/7bb8561d-a6a9-4c5f-9be8-f2d8dd64e2b2-result.json new file mode 100644 index 0000000..d31bce7 --- /dev/null +++ b/allure-results/7bb8561d-a6a9-4c5f-9be8-f2d8dd64e2b2-result.json @@ -0,0 +1 @@ +{"uuid":"7bb8561d-a6a9-4c5f-9be8-f2d8dd64e2b2","name":"Слишком длинное название организации","historyId":"26486147b8778ca2341563049d2a3728:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253611366,"uuid":"fd106a03-4491-4e07-996d-6e7d5db60d84","stop":1750253611369}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253611366,"uuid":"4ba62e8d-0691-4d5c-b51c-1d32de4fb645","stop":1750253611371},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253611372,"uuid":"c7f15cab-33ff-4645-b6da-f023282924e6","stop":1750253611647}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253611371,"uuid":"6d75cf29-9808-4f9c-b3dc-aa0856e2b1d2","stop":1750253611647}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253611365,"uuid":"22634235-777d-4c61-8577-2482eb3204ce","stop":1750253611647},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253611648,"name":"page.goto(/login/registration)","uuid":"d27f05c0-0d55-4cf1-9253-e2f4d91a42b3","stop":1750253618930},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253618932,"name":"locator.fill(Иван)","uuid":"7cc75bff-63d0-49d9-a49b-316fdfa60663","stop":1750253618965},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253618966,"name":"locator.fill(Иванов)","uuid":"f5cab0b0-ddc0-4c4e-82b4-fb525b29bf53","stop":1750253618977},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253618978,"name":"locator.getByPlaceholder('Учёное звание*').click","uuid":"496ec647-5ae4-4bb6-8321-a18bbae550d3","stop":1750253619029},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253619030,"name":"locator.click(li >> internal:has-text=\"Доцент\"i)","uuid":"daaca606-d743-4d19-9693-760c7882a7b4","stop":1750253619109},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253619109,"name":"locator.getByPlaceholder('Учёная степень*').click","uuid":"bb5b2f8c-1ad4-4a1d-8156-fcb6eb71113f","stop":1750253620124},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253620125,"name":"locator.click(li >> internal:has-text=\"Кандидат наук\"i)","uuid":"eae82d38-b23b-499d-abf4-5c3d5490ea09","stop":1750253620622},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253620622,"name":"locator.fill(Преподаватель)","uuid":"e0b6c848-98fd-4184-8c58-47db7ffe3f54","stop":1750253620638},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253620638,"name":"locator.fill(ООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООО)","uuid":"df613c29-790c-4cce-b56f-44aa65612356","stop":1750253620649},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253620649,"name":"locator.fill(test1750253618931@example.com)","uuid":"a75b7384-cf06-4b6a-a23f-66ef5b348107","stop":1750253620669},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253620670,"name":"locator.fill(+79990630171)","uuid":"80b28de1-6d25-4b74-b7a9-78f7e6af43bd","stop":1750253620694},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253620695,"name":"locator.fill(!Test123)","uuid":"c3fa77c5-d35a-4b54-b88f-dec99758e43e","stop":1750253620721},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253620722,"name":"locator.fill(!Test123)","uuid":"149a2911-3b2c-423f-a9ca-4e9ba779b13c","stop":1750253620745},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253620745,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"3e8a3de7-4488-47b7-8505-8726b56037ac","stop":1750253620810},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253620811,"name":"expect.toBeVisible","uuid":"7516426a-836f-413f-84df-f268f6f48b71","stop":1750253620932},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253620933,"uuid":"283e7854-a70a-49c1-b8d8-219db36e8506","stop":1750253620933},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253620933,"uuid":"69cfa0ba-597d-479e-aa7f-c8de6f68b82b","stop":1750253620933}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253620932,"uuid":"e569ff1f-9551-44f8-80d4-06fffc431e8e","stop":1750253620998}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750253611365,"testCaseId":"26486147b8778ca2341563049d2a3728","fullName":"ui/registration/register.negative.spec.ts:48:7","stop":1750253620996} \ No newline at end of file diff --git a/allure-results/7c63a085-07de-4a53-8594-0736b863dec6-result.json b/allure-results/7c63a085-07de-4a53-8594-0736b863dec6-result.json new file mode 100644 index 0000000..3bacae7 --- /dev/null +++ b/allure-results/7c63a085-07de-4a53-8594-0736b863dec6-result.json @@ -0,0 +1 @@ +{"uuid":"7c63a085-07de-4a53-8594-0736b863dec6","name":"Переключатель видимости пароля показывает и скрывает ввод","historyId":"b1726395bd827a3a21fe3c829a098be4:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253597973,"uuid":"7f24a441-a3cd-4e46-b705-5edb142512c1","stop":1750253597975}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253597973,"uuid":"6d79f783-9b33-4a34-bd21-dc2c4b894b3f","stop":1750253597977},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253597977,"uuid":"5c5719a4-0efa-4b79-9221-992bccaded9e","stop":1750253598139}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253597977,"uuid":"f3a36087-849b-42b2-a2f3-12ccfdae0fed","stop":1750253598139}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253597972,"uuid":"0f611717-80f9-47ec-815c-6e8d8c0f0907","stop":1750253598139},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253598139,"name":"page.goto(/login/authorization)","uuid":"e609e400-27b0-4ae9-917a-7b823f890c4b","stop":1750253599710},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253599710,"name":"locator.fill(!Test123456)","uuid":"5142965f-d76c-4491-a0c6-aa0ee44f3713","stop":1750253599737},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253599737,"name":"locator.getByPlaceholder('Пароль').getAttribute","uuid":"da3f1977-7ab6-46dc-8013-f2246e5f9e91","stop":1750253599740},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253599740,"name":"expect.toBe","uuid":"9129e34d-cfbf-4b0e-832f-fed98b27890e","stop":1750253599741},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253599741,"name":"locator.getByAltText('показать пароль').click","uuid":"28fc9530-744e-42a3-adcb-02dd4de7a8ee","stop":1750253599793},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253599793,"name":"locator.getByPlaceholder('Пароль').getAttribute","uuid":"4927bc35-2563-468a-b931-dc24c704d0c7","stop":1750253599796},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253599796,"name":"expect.toBe","uuid":"f9c1aad2-b609-409b-b9b2-1d78dda17f5c","stop":1750253599797},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253599797,"name":"locator.getByAltText('показать пароль').click","uuid":"15ce31e9-31f7-42f6-a5d4-378e4e40c178","stop":1750253599857},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253599858,"name":"locator.getByPlaceholder('Пароль').getAttribute","uuid":"33295e24-18db-4869-905e-218f89ab9991","stop":1750253599862},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253599862,"name":"expect.toBe","uuid":"099355c4-9ba4-44ff-a547-f4b8d118aa01","stop":1750253599862},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253599862,"uuid":"b37c9a36-16da-4987-acb2-0a0412af5446","stop":1750253599862},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253599862,"uuid":"e5a1cb94-b9d3-42ce-badd-09010e3bfcce","stop":1750253599862}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253599862,"uuid":"96036754-6e61-4fa0-a722-b2e295fc210b","stop":1750253599889}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.ui.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.ui.spec.ts > UI сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.ui.spec.ts"},{"name":"subSuite","value":"UI сценарии авторизации"}],"links":[],"start":1750253597973,"testCaseId":"b1726395bd827a3a21fe3c829a098be4","fullName":"ui/login/login.ui.spec.ts:7:7","stop":1750253599889} \ No newline at end of file diff --git a/allure-results/7e1641e2-e99b-484c-9947-d220e9c43ce8-result.json b/allure-results/7e1641e2-e99b-484c-9947-d220e9c43ce8-result.json new file mode 100644 index 0000000..2c32265 --- /dev/null +++ b/allure-results/7e1641e2-e99b-484c-9947-d220e9c43ce8-result.json @@ -0,0 +1 @@ +{"uuid":"7e1641e2-e99b-484c-9947-d220e9c43ce8","name":"Пользователь должен успешно залогиниться с валидными данными","historyId":"92a5ca35180a4cbe902714b987a6bf44:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252843458,"uuid":"41307d7b-29af-478f-a73c-43d1f2565283","stop":1750252843463}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252843457,"uuid":"14480b5e-ff5e-4ad0-827c-f44f721a27e2","stop":1750252843464},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252843465,"uuid":"081a4efd-9671-4fe8-8208-34ff150c44e2","stop":1750252843626}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252843465,"uuid":"32394a87-2643-4d03-921a-5b5bf6723d14","stop":1750252843626}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252843456,"uuid":"b7822c1d-8e43-4dfc-99b7-3102b0c95804","stop":1750252843626},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252843627,"name":"page.goto(/login/authorization)","uuid":"e73feedf-b068-42fe-afdb-619e2fe2c8ba","stop":1750252845066},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252845069,"name":"locator.fill(autotest@example.com)","uuid":"a5750b24-7c39-4179-9cb7-4c3502d1d7ab","stop":1750252845101},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252845102,"name":"locator.fill(!Test123456)","uuid":"53a7bfa9-d9e2-4394-962f-8481ede54206","stop":1750252845114},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252845117,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"f03bc2a0-af03-4a24-9d8d-d32e5537f5bf","stop":1750252845169},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252845170,"name":"expect.toHaveURL","uuid":"55626bcd-1d24-4763-bce3-2a15a4072ce1","stop":1750252845285},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252845286,"name":"expect.toBeVisible","uuid":"60385293-1210-4b79-b3f3-fe36ce20d9b4","stop":1750252845289},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252845290,"uuid":"57f7a4a6-d6c1-41cd-8b1f-388cf6eed989","stop":1750252845290},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252845290,"uuid":"d4248456-6345-46db-b445-40123c625cbe","stop":1750252845290}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252845289,"uuid":"af775a64-f903-4fee-b647-94de97acd31a","stop":1750252845297}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.spec.ts > Авторизация пользователя"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.spec.ts"},{"name":"subSuite","value":"Авторизация пользователя"}],"links":[],"start":1750252843456,"testCaseId":"92a5ca35180a4cbe902714b987a6bf44","fullName":"ui/login/login.spec.ts:7:7","stop":1750252845296} \ No newline at end of file diff --git a/allure-results/806a47ec-3919-4ee3-849e-ebc5572275b0-result.json b/allure-results/806a47ec-3919-4ee3-849e-ebc5572275b0-result.json new file mode 100644 index 0000000..924dda8 --- /dev/null +++ b/allure-results/806a47ec-3919-4ee3-849e-ebc5572275b0-result.json @@ -0,0 +1 @@ +{"uuid":"806a47ec-3919-4ee3-849e-ebc5572275b0","name":"Только email без пароля","historyId":"8c67bb2f4fb916157fb6191bbb5e4267:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252811927,"uuid":"539dbe5d-8089-4e8c-aea3-95d2d7620ae6","stop":1750252811928}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252811927,"uuid":"d1e2b2d9-3b48-47cb-b901-46638671ae68","stop":1750252811929},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252811930,"uuid":"5784a095-78c1-4f20-a215-07eaf2dbcfc2","stop":1750252811970}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252811929,"uuid":"c0f29984-ad51-4b7d-8827-5558415b170d","stop":1750252811970}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252811926,"uuid":"a89aab3b-d713-4309-98a3-59f943c62b27","stop":1750252811971},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252811971,"name":"page.goto(/login/authorization)","uuid":"4c4405ad-f883-4fe6-bce2-d636bd26bc40","stop":1750252812849},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252812850,"name":"locator.fill(autotest@example.com)","uuid":"45f990a0-b7cc-4181-a5db-0e4e9423965e","stop":1750252812900},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252812901,"name":"locator.fill()","uuid":"a5ade499-ccb4-4140-895c-607a5b8c64b7","stop":1750252812939},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252812940,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"e7006e0f-7ca4-4032-aa3d-4034f4bc6ea0","stop":1750252812973},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252812973,"name":"expect.toBeVisible","uuid":"a98e0840-48d6-493c-9002-e31c4d565f5d","stop":1750252812976},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252812976,"uuid":"3c4855d3-a8b6-4fd1-8f01-6d3d35931e03","stop":1750252812976},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252812976,"uuid":"370eddf8-9bff-4b3a-8cef-29103e596f79","stop":1750252812976}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252812976,"uuid":"48e96421-d858-40aa-aa3d-3c87aeadfb29","stop":1750252812982}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"}],"links":[],"start":1750252811926,"testCaseId":"8c67bb2f4fb916157fb6191bbb5e4267","fullName":"ui/login/login.negative.spec.ts:37:7","stop":1750252812980} \ No newline at end of file diff --git a/allure-results/8240b1ce-c9c3-4bd0-8658-e86ae51c3948-result.json b/allure-results/8240b1ce-c9c3-4bd0-8658-e86ae51c3948-result.json new file mode 100644 index 0000000..b2bc766 --- /dev/null +++ b/allure-results/8240b1ce-c9c3-4bd0-8658-e86ae51c3948-result.json @@ -0,0 +1 @@ +{"uuid":"8240b1ce-c9c3-4bd0-8658-e86ae51c3948","name":"has title","historyId":"3a2a809b453af4fd564578d1a27f3e45:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserType.launch","start":1750253578133,"uuid":"82fb961c-2816-4ecf-b9f9-cf67e7b37e02","stop":1750253579652}],"attachments":[],"parameters":[],"name":"fixture: browser","start":1750253578131,"uuid":"3e05419c-22c0-44b8-935f-f44fb66e0f28","stop":1750253579653},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253579655,"uuid":"c9682343-69fe-43b6-85a9-a5a782c7fb60","stop":1750253579824}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253579654,"uuid":"53c41a07-f992-4a79-a589-0f77d7317f98","stop":1750253579888},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253579889,"uuid":"efaf790d-4371-4eb5-ad15-9c53ad929810","stop":1750253580524}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253579888,"uuid":"9ce1cb98-e84d-46d7-bf50-00ba6f29281e","stop":1750253580524}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253578128,"uuid":"5bab8365-f42b-468f-9020-5e59c56559bd","stop":1750253580524},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253580525,"name":"page.goto(https://playwright.dev/)","uuid":"315a5650-a31a-403e-8a07-218d8edbe656","stop":1750253583796},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253583798,"name":"expect.toHaveTitle","uuid":"3f3041af-0dc5-424b-80d7-a9842195d75d","stop":1750253583830},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253583831,"uuid":"db693196-7093-4128-97ab-64e081b94f5b","stop":1750253583831},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253583832,"uuid":"784bd011-a88d-4918-bbd7-eefb71041219","stop":1750253583832}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253583831,"uuid":"54bad1eb-3564-4a8e-aca7-fc3c3e69a702","stop":1750253583934}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > firefox > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"example.spec.ts"}],"links":[],"start":1750253578127,"testCaseId":"3a2a809b453af4fd564578d1a27f3e45","fullName":"example.spec.ts:3:5","stop":1750253582408} \ No newline at end of file diff --git a/allure-results/8241eb4b-0929-4425-9bd0-0bd7983a590d-result.json b/allure-results/8241eb4b-0929-4425-9bd0-0bd7983a590d-result.json new file mode 100644 index 0000000..a0e6226 --- /dev/null +++ b/allure-results/8241eb4b-0929-4425-9bd0-0bd7983a590d-result.json @@ -0,0 +1 @@ +{"uuid":"8241eb4b-0929-4425-9bd0-0bd7983a590d","name":"Слишком длинная должность","historyId":"2214c0f917091cfcda832cd03e01bb76:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252754596,"uuid":"09b9e8e5-572f-4698-9312-b62f275e539b","stop":1750252755253}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252754595,"uuid":"3dad8124-dbba-4b60-ad9e-0f8d37e1d3b9","stop":1750252755254},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252755254,"uuid":"c6baee58-4e2e-4ceb-994c-bb444d0bc1a3","stop":1750252755519}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252755254,"uuid":"c82f0207-92ec-4345-a8ab-98f274485527","stop":1750252755519}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252754595,"uuid":"32778cc0-9e50-45e5-a5a0-d9dc9df30c8c","stop":1750252755519},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252755520,"name":"page.goto(/login/registration)","uuid":"187b4e2c-43a4-4d4f-b39d-e029cbb8914e","stop":1750252758654},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252758655,"name":"locator.fill(XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX)","uuid":"f1583171-b5aa-4c7e-b98b-df80946f2c93","stop":1750252759759},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252759760,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"9a1be464-6b50-46f2-a434-ce61467956a0","stop":1750252760961},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252760963,"name":"expect.toBeVisible","uuid":"af838fef-50d5-40b6-a01c-d1a9a4ae0868","stop":1750252762203},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252762204,"uuid":"d05558d1-e09c-4165-8173-2ab31a94d1e0","stop":1750252762204},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252762204,"uuid":"98ceb7d6-3a97-426f-8e1c-5d7a89ab8800","stop":1750252762204}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252762204,"uuid":"4477e7da-3980-45e7-bbf8-c1ea5e81fe7f","stop":1750252762235}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-57952-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750252754595,"testCaseId":"2214c0f917091cfcda832cd03e01bb76","fullName":"ui/registration/register.negative.spec.ts:38:7","stop":1750252762232} \ No newline at end of file diff --git a/allure-results/832bb315-d8e9-44a7-b91e-a523b34dd348-result.json b/allure-results/832bb315-d8e9-44a7-b91e-a523b34dd348-result.json new file mode 100644 index 0000000..0e19252 --- /dev/null +++ b/allure-results/832bb315-d8e9-44a7-b91e-a523b34dd348-result.json @@ -0,0 +1 @@ +{"uuid":"832bb315-d8e9-44a7-b91e-a523b34dd348","name":"Только email без пароля","historyId":"8c67bb2f4fb916157fb6191bbb5e4267:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252856451,"uuid":"0675217a-52ac-4db1-ae6c-a5bd0db4653d","stop":1750252856453}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252856451,"uuid":"b3e89d71-1cf0-4ec8-8ccb-3e3123166ae4","stop":1750252856453},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252856453,"uuid":"153ef0bf-fd30-4d14-8316-e30393e35196","stop":1750252856558}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252856453,"uuid":"02ef8ae6-5b85-4efb-9835-0cf172171f60","stop":1750252856558}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252856451,"uuid":"a647f4ec-67d3-407e-a57e-6e05307913d2","stop":1750252856558},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252856559,"name":"page.goto(/login/authorization)","uuid":"42b05954-c853-4b65-8073-45a0fddeefb9","stop":1750252857777},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252857780,"name":"locator.fill(autotest@example.com)","uuid":"65f23b82-415b-4e88-a0c4-fbc214f7fa32","stop":1750252857847},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252857848,"name":"locator.fill()","uuid":"9b725827-14b1-455c-887c-9dd6ac984db0","stop":1750252857895},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252857897,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"c9f27dbe-0968-4dc2-81af-ac9c69cbfdd6","stop":1750252857935},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252857935,"name":"expect.toBeVisible","uuid":"456bd654-603d-41e9-bb27-51808d22a1e7","stop":1750252857939},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252857939,"uuid":"ee8e1e14-fb17-4b3e-9ed3-b0bd28794316","stop":1750252857939},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252857939,"uuid":"00d436f7-81d3-41f0-b57a-b07994583a86","stop":1750252857939}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252857939,"uuid":"5ed2a110-daab-4b0f-b7ae-230f52139c56","stop":1750252857942}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-1"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"}],"links":[],"start":1750252856451,"testCaseId":"8c67bb2f4fb916157fb6191bbb5e4267","fullName":"ui/login/login.negative.spec.ts:37:7","stop":1750252857941} \ No newline at end of file diff --git a/allure-results/8346dd03-7e01-4c11-9d6e-4bf4be57a327-result.json b/allure-results/8346dd03-7e01-4c11-9d6e-4bf4be57a327-result.json new file mode 100644 index 0000000..3c2a8f7 --- /dev/null +++ b/allure-results/8346dd03-7e01-4c11-9d6e-4bf4be57a327-result.json @@ -0,0 +1 @@ +{"uuid":"8346dd03-7e01-4c11-9d6e-4bf4be57a327","name":"Оба поля пустые","historyId":"58990385f74407307e4ace7ad02abf05:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252856142,"uuid":"0c99511a-694f-48eb-b4d8-1cb1c2ba71fe","stop":1750252856143}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252856142,"uuid":"035e4148-f031-46c8-8f9c-fef5cb5630fe","stop":1750252856144},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252856144,"uuid":"8f76402f-f665-487d-93e1-e764824961ee","stop":1750252856257}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252856144,"uuid":"a1369d3e-4437-4c2c-b915-5c1121fe164b","stop":1750252856257}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252856141,"uuid":"1b71d8d9-ff39-44bb-b8ee-8d8cfb674229","stop":1750252856257},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252856258,"name":"page.goto(/login/authorization)","uuid":"51769056-19bc-4379-ab34-9517652fca44","stop":1750252857601},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252857603,"name":"locator.fill()","uuid":"ddc48d10-a317-42c1-90c7-a4cb3c8b8e67","stop":1750252857686},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252857687,"name":"locator.fill()","uuid":"1edebc0b-4385-47fd-8daa-04b4ff267fb5","stop":1750252857728},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252857731,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"685d490a-d34b-4ff8-9a05-7e5c20d3faa7","stop":1750252857841},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252857843,"name":"expect.toBeVisible","uuid":"1b73d427-abc7-4072-8dd0-cb1a94634180","stop":1750252857849},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252857849,"name":"expect.toBeVisible","uuid":"123943e7-0203-4827-b75b-6db46aba0de0","stop":1750252857857},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252857858,"uuid":"c48539b8-ea19-4dbd-a23d-a1c675add525","stop":1750252857858},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252857858,"uuid":"c7bd4e5e-d926-4c1b-84f9-612b5affe6f5","stop":1750252857858}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252857857,"uuid":"4c02c622-d5c3-4db1-b29c-41e57c59db98","stop":1750252857867}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-2"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"}],"links":[],"start":1750252856141,"testCaseId":"58990385f74407307e4ace7ad02abf05","fullName":"ui/login/login.negative.spec.ts:27:7","stop":1750252857865} \ No newline at end of file diff --git a/allure-results/850fdd61-c558-490e-9e9e-fcb4b548fad1-result.json b/allure-results/850fdd61-c558-490e-9e9e-fcb4b548fad1-result.json new file mode 100644 index 0000000..57b526c --- /dev/null +++ b/allure-results/850fdd61-c558-490e-9e9e-fcb4b548fad1-result.json @@ -0,0 +1 @@ +{"uuid":"850fdd61-c558-490e-9e9e-fcb4b548fad1","name":"Неверный пароль","historyId":"500ad758ee2db2bb60aa832fb0abbb94:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252854649,"uuid":"ec3a7662-d24c-471d-8b3c-f1a4da92b641","stop":1750252854657}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252854649,"uuid":"b55a413e-ead2-43de-a813-30ed3d10e49f","stop":1750252854658},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252854659,"uuid":"df79d50c-4bf3-4418-aee6-0c1141b845c9","stop":1750252854804}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252854658,"uuid":"a52f57f4-82a2-4227-81e2-f405e07c3480","stop":1750252854804}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252854648,"uuid":"49ea3f26-718b-4afc-898e-263de5731c2e","stop":1750252854804},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252854807,"name":"page.goto(/login/authorization)","uuid":"86b8d39d-ec31-410d-aa78-6713a461390b","stop":1750252855835},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252855837,"name":"locator.fill(autotest@example.com)","uuid":"b38ee722-c043-4b7d-a451-f1d39ba751fc","stop":1750252855911},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252855912,"name":"locator.fill(wrongpass)","uuid":"694cb7b7-4a56-43e7-a09d-7b885247f120","stop":1750252855938},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252855940,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"a640d781-a247-484a-9458-022e265e49f4","stop":1750252856017},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252856019,"name":"expect.toBeVisible","uuid":"546a7413-1769-4a29-babc-d484cfedc04c","stop":1750252856133},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252856133,"uuid":"a36146b3-63ad-4cad-9fb6-4733f79e8a1f","stop":1750252856133},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252856134,"uuid":"f6c9220f-33fb-48b7-92b1-4dfdcf22349f","stop":1750252856134}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252856133,"uuid":"fa3d924a-1347-4bf4-8041-82c78d2ba573","stop":1750252856139}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-2"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"}],"links":[],"start":1750252854648,"testCaseId":"500ad758ee2db2bb60aa832fb0abbb94","fullName":"ui/login/login.negative.spec.ts:7:7","stop":1750252856137} \ No newline at end of file diff --git a/allure-results/8b120697-e367-433f-a07b-9fc1d8445f9e-result.json b/allure-results/8b120697-e367-433f-a07b-9fc1d8445f9e-result.json new file mode 100644 index 0000000..c37b931 --- /dev/null +++ b/allure-results/8b120697-e367-433f-a07b-9fc1d8445f9e-result.json @@ -0,0 +1 @@ +{"uuid":"8b120697-e367-433f-a07b-9fc1d8445f9e","name":"Слишком длинное название организации","historyId":"26486147b8778ca2341563049d2a3728:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserType.launch","start":1750252690586,"uuid":"c6249293-fe08-40dd-b4ee-c1a8515f6268","stop":1750252692103}],"attachments":[],"parameters":[],"name":"fixture: browser","start":1750252690585,"uuid":"05d23cff-d49e-416f-838b-419077e48270","stop":1750252692103},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252692105,"uuid":"cc2e7d2f-55c9-415a-83a1-e4afb70075b2","stop":1750252692113}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252692104,"uuid":"9bc959f9-7814-4f37-a5fa-92c0ed6fe8c8","stop":1750252692114},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252692115,"uuid":"72607bc2-fca1-47c7-8396-8c6e55589564","stop":1750252692345}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252692114,"uuid":"5680da81-1c7a-4e07-8ee0-2b3bf607b647","stop":1750252692345}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252690581,"uuid":"dabe02b7-bc82-4ab4-b801-e815b05e9210","stop":1750252692345},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252692348,"name":"page.goto(/login/registration)","uuid":"6543e4d2-e9cd-4a31-8ca2-06e442a9e63e","stop":1750252693104},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252693109,"name":"locator.fill(Иван)","uuid":"40c9f1b2-cab6-4452-b709-52156da757e2","stop":1750252693252},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252693252,"name":"locator.fill(Иванов)","uuid":"c15e333d-056f-42e7-8690-fb2cafdf23ca","stop":1750252693272},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252693273,"name":"locator.getByPlaceholder('Учёное звание*').click","uuid":"734aaba7-a8d3-40e7-803f-d052ffe97d9d","stop":1750252693368},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252693370,"name":"locator.click(li >> internal:has-text=\"Доцент\"i)","uuid":"b849e40a-02e2-4ac1-abae-c99d252ff1cf","stop":1750252693643},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252693644,"name":"locator.getByPlaceholder('Учёная степень*').click","uuid":"efcb9aca-ef95-44a8-8c63-e93c95c430ab","stop":1750252694536},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252694537,"name":"locator.click(li >> internal:has-text=\"Кандидат наук\"i)","uuid":"4a7eaff8-48ae-4a19-97d0-e46e14d8d07d","stop":1750252694568},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252694569,"name":"locator.fill(Преподаватель)","uuid":"104b9874-725f-486b-bec6-cb9d89a89eab","stop":1750252694573},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252694574,"name":"locator.fill(ООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООО)","uuid":"7512a877-2584-4125-b853-7a46098f7d4c","stop":1750252694581},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252694581,"name":"locator.fill(test1750252693105@example.com)","uuid":"05311838-a300-4343-9cc6-f1e4ec8a7d49","stop":1750252694588},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252694589,"name":"locator.fill(+79990758598)","uuid":"7c206980-9d42-4f8e-92ff-a48a3c65a4aa","stop":1750252694597},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252694598,"name":"locator.fill(!Test123)","uuid":"a3429c9b-e7fb-49f2-9b3d-24ac5cea76bd","stop":1750252694605},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252694606,"name":"locator.fill(!Test123)","uuid":"556243ef-8ebd-42f0-b09e-53b82869bbe5","stop":1750252694616},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252694617,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"67d21659-bb5e-4e8b-853b-e41eeffdd704","stop":1750252694652},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252694654,"name":"expect.toBeVisible","uuid":"14392fc0-7bcd-4a8f-b53b-b0bc12141595","stop":1750252694764},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252694765,"uuid":"93034c23-2422-4348-bc28-f6987cf1b658","stop":1750252694765},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252694765,"uuid":"8dc281c5-78a9-4ebc-9869-018d7f29707b","stop":1750252694765}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252694764,"uuid":"737a5a8d-6346-41a5-a8bc-d39089c5bbc8","stop":1750252694797}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-57743-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750252690590,"testCaseId":"26486147b8778ca2341563049d2a3728","fullName":"ui/registration/register.negative.spec.ts:48:7","stop":1750252693284} \ No newline at end of file diff --git a/allure-results/8c052c11-d958-4068-8d79-1b8abad162b2-result.json b/allure-results/8c052c11-d958-4068-8d79-1b8abad162b2-result.json new file mode 100644 index 0000000..5480367 --- /dev/null +++ b/allure-results/8c052c11-d958-4068-8d79-1b8abad162b2-result.json @@ -0,0 +1 @@ +{"uuid":"8c052c11-d958-4068-8d79-1b8abad162b2","name":"Неверный код подтверждения","historyId":"31f03826b2a8da254be42b2d49bc35f3:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253556667,"uuid":"d9fc399a-e74e-4857-b93f-5881739ae40d","stop":1750253556668}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253556667,"uuid":"bc7b5de8-4fa4-405b-a28f-3415ceb3aee9","stop":1750253556669},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253556670,"uuid":"feec559f-f744-4f8b-80fe-6f574f470129","stop":1750253556712}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253556669,"uuid":"0caae31c-a13f-4374-afe4-3d82f93372c8","stop":1750253556712}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253556666,"uuid":"a46b8295-ca90-4e68-ace2-b84ab26408a8","stop":1750253556712},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253556715,"name":"page.goto(/recoverpassword)","uuid":"5f38be24-b2d6-4ce5-a932-6c7bb859ca71","stop":1750253561882},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253561884,"name":"locator.fill(autotest@example.com)","uuid":"954419c1-b974-4958-aadf-3a4a1e494c20","stop":1750253561932},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253561934,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"fe2641aa-8c60-4d3d-bc75-6676565f910c","stop":1750253562049},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253562050,"name":"expect.toHaveURL","uuid":"570190ab-0860-41e2-a269-6a955bf83de7","stop":1750253562058},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253562059,"name":"locator.count(input[type=\"text\"])","uuid":"6b3f4fc6-d792-4300-b31b-9e616f684ff7","stop":1750253562073},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253562074,"name":"locator.fill(6)","uuid":"3a60a209-59ff-4b5f-ba3c-e1903e865c3d","stop":1750253562095},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253562096,"name":"locator.fill(5)","uuid":"7eedc54f-8d96-4e6b-8a3d-5a025b0df150","stop":1750253562104},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253562104,"name":"locator.fill(4)","uuid":"2e4fa45c-268d-4236-876b-7893612a7329","stop":1750253562119},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253562120,"name":"locator.fill(3)","uuid":"32adb236-3d1a-47e6-93e7-5ac661eec045","stop":1750253562139},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253562142,"name":"locator.fill(2)","uuid":"f9d23ae5-1bf1-42b0-82cf-a3114aefafb7","stop":1750253562166},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253562168,"name":"locator.fill(1)","uuid":"bb3fb37c-5bae-44a6-95f6-34e2d5169a90","stop":1750253562185},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253562185,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"0207aa0c-23de-4171-bd28-877d0453f6f3","stop":1750253562229},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253562230,"name":"expect.toBeVisible","uuid":"2312d2aa-5e29-4c57-a110-ae55253eaafb","stop":1750253562337},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253562338,"uuid":"85db9e54-8ddf-4137-a951-67a1d7911a43","stop":1750253562338},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253562338,"uuid":"a7c8d548-68f8-4c91-be83-7557ff7a4a35","stop":1750253562338}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253562337,"uuid":"6554c8a4-96a3-4002-ae6a-6113ba0c79c1","stop":1750253562795}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"}],"links":[],"start":1750253556666,"testCaseId":"31f03826b2a8da254be42b2d49bc35f3","fullName":"ui/recovery/recover-negative.spec.ts:23:7","stop":1750253562794} \ No newline at end of file diff --git a/allure-results/8cb2274a-ece1-437e-b5c4-e69cdefe7dda-result.json b/allure-results/8cb2274a-ece1-437e-b5c4-e69cdefe7dda-result.json new file mode 100644 index 0000000..4433ae4 --- /dev/null +++ b/allure-results/8cb2274a-ece1-437e-b5c4-e69cdefe7dda-result.json @@ -0,0 +1 @@ +{"uuid":"8cb2274a-ece1-437e-b5c4-e69cdefe7dda","name":"Несуществующий email","historyId":"69b9236bee03ff0034bfbd5addc25f93:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253478050,"uuid":"bcd16723-7c4c-4873-bc3c-403356f4bb30","stop":1750253478055}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253478050,"uuid":"13d53cb6-e3eb-43c0-a1d9-3465426d14e8","stop":1750253478059},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253478060,"uuid":"e4cc370e-751b-4b1f-94ef-2edb6537cc11","stop":1750253478139}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253478059,"uuid":"71ec3bcb-2d2d-4d4e-a98c-0a11d4f99575","stop":1750253478139}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253478049,"uuid":"01b85a70-d4ee-4549-96d0-15fcbe9aa524","stop":1750253478139},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253478140,"name":"page.goto(/login/authorization)","uuid":"9f600782-2078-4371-8989-303b7352c966","stop":1750253479057},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253479058,"name":"locator.fill(wrong@example.com)","uuid":"67d7d90a-c82f-4279-8c84-59c9c0153123","stop":1750253479076},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253479076,"name":"locator.fill(anyPassword123)","uuid":"2af5d991-60f3-4747-a016-8970680ffc7b","stop":1750253479116},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253479117,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"1ff1e5cd-ed25-4df0-a64c-b1382d7fc87c","stop":1750253479159},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253479159,"name":"expect.toBeVisible","uuid":"925f8ab4-e020-4fd7-bbae-a4d88779f8ae","stop":1750253479266},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253479266,"uuid":"db1f055c-b68d-45f1-94df-2413bcc10f52","stop":1750253479266},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253479266,"uuid":"ad65e689-a69e-436a-9253-05ceddec11b9","stop":1750253479266}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253479266,"uuid":"5e48b53e-5c77-49b4-a302-b2c1e265c277","stop":1750253479797}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"}],"links":[],"start":1750253478049,"testCaseId":"69b9236bee03ff0034bfbd5addc25f93","fullName":"ui/login/login.negative.spec.ts:17:7","stop":1750253479796} \ No newline at end of file diff --git a/allure-results/8e0c271b-78a8-4668-a561-ff6b55481907-result.json b/allure-results/8e0c271b-78a8-4668-a561-ff6b55481907-result.json new file mode 100644 index 0000000..fb354d9 --- /dev/null +++ b/allure-results/8e0c271b-78a8-4668-a561-ff6b55481907-result.json @@ -0,0 +1 @@ +{"uuid":"8e0c271b-78a8-4668-a561-ff6b55481907","name":"Регистр в email (User@test.com ≠ user@test.com)","historyId":"cc4ad4b40ef726af11b2bd4f5523dbe0:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserType.launch","start":1750253621913,"uuid":"814eac6c-5181-44d3-be29-7abadda013b6","stop":1750253622060}],"attachments":[],"parameters":[],"name":"fixture: browser","start":1750253621910,"uuid":"bf9c9510-2bda-4c02-884f-5800685204de","stop":1750253622060},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253622062,"uuid":"e491e64a-255d-4738-8cea-9be4112d2ae7","stop":1750253622101}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253622061,"uuid":"d357dcd1-77d9-4be6-8fbe-9a7d7b42ea5d","stop":1750253622104},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253622105,"uuid":"8e20a7c2-e06a-47f6-b195-164483533fc2","stop":1750253622338}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253622104,"uuid":"7d7589d3-31aa-4a9a-a51f-330652d9a24d","stop":1750253622339}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253621876,"uuid":"b2254041-08bd-427c-a3d2-ac2a839cda37","stop":1750253622339},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253622340,"name":"page.goto(/login/authorization)","uuid":"dff4c268-ac04-4ec4-8436-d14afaeef837","stop":1750253625133},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253625137,"name":"locator.fill(Autotest@Example.com)","uuid":"76a2a32d-5e25-4bcc-b236-0f82bc263553","stop":1750253625235},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253625236,"name":"locator.fill(!Test123456)","uuid":"8bce5439-35eb-4e62-907c-8ca82223b1dc","stop":1750253625262},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253625263,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"c823b9b8-a7ff-429b-9804-db18dd867616","stop":1750253625346},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253625348,"name":"expect.toBeVisible","uuid":"6979e459-b97f-47c2-b005-42e90193d32f","stop":1750253625490},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253625491,"uuid":"97bb658f-0361-4588-b1f1-384bbb849ae2","stop":1750253625491},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253625491,"uuid":"46c71ae3-b0d4-4cd2-8eae-5345a38f5c69","stop":1750253625491}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253625490,"uuid":"d3949b23-cee5-4c52-af6e-2cc197da9162","stop":1750253625768}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"tag","value":"test.com"},{"name":"tag","value":"test.com)"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-2"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"}],"links":[],"start":1750253621861,"testCaseId":"cc4ad4b40ef726af11b2bd4f5523dbe0","fullName":"ui/login/login.negative.spec.ts:58:7","stop":1750253625596} \ No newline at end of file diff --git a/allure-results/8e58cd9e-c930-4382-b97e-282b808b16b9-result.json b/allure-results/8e58cd9e-c930-4382-b97e-282b808b16b9-result.json new file mode 100644 index 0000000..3668e4c --- /dev/null +++ b/allure-results/8e58cd9e-c930-4382-b97e-282b808b16b9-result.json @@ -0,0 +1 @@ +{"uuid":"8e58cd9e-c930-4382-b97e-282b808b16b9","name":"Пустое поле \"Повторите пароль\"","historyId":"e6d2fb91f0b85b95c3962ffc860dddd7:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253600780,"uuid":"f362633b-a614-425f-8e9b-0298d6ab6e6f","stop":1750253600782}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253600780,"uuid":"f9009c0a-aae9-445c-83d4-cd8822b0353f","stop":1750253600785},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253600786,"uuid":"8aa54521-6009-498d-b3fe-496247e71d4d","stop":1750253600935}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253600786,"uuid":"ef86dad2-9e78-45c4-b694-c03b911ca80c","stop":1750253600935}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253600779,"uuid":"5eb787d9-b527-458d-a6cc-6bb947d7e02f","stop":1750253600935},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253600936,"name":"page.goto(/recoverpassword)","uuid":"e70b537e-200a-4924-8b52-9c101d07d5ea","stop":1750253603296},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253603297,"name":"locator.fill(autotest@example.com)","uuid":"0d211df8-3bc5-4eed-b18e-fa1e12b45cc3","stop":1750253603328},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253603328,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"f77b1fd0-c093-408e-8797-9e021a329491","stop":1750253603399},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253603400,"name":"locator.count(input[type=\"text\"])","uuid":"5b047251-61d8-43bc-81ef-1f158ace3900","stop":1750253603407},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253603407,"name":"locator.fill(0)","uuid":"8148ce22-68d1-4605-8704-44b7e107c6b0","stop":1750253603504},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253603504,"name":"locator.fill(0)","uuid":"0085c427-c2e4-48ec-8cb8-a88277b935e6","stop":1750253603527},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253603527,"name":"locator.fill(0)","uuid":"0c899810-1b85-49ef-be17-af61bae68111","stop":1750253603546},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253603547,"name":"locator.fill(0)","uuid":"3631c43c-5a5c-4a75-abb5-93c9373c3984","stop":1750253603559},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253603560,"name":"locator.fill(0)","uuid":"42c752f3-97e4-4240-a42e-ab56e60f5d5d","stop":1750253603574},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253603575,"name":"locator.fill(0)","uuid":"30a582dd-d2cc-4747-bc71-fe8550b29556","stop":1750253603586},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253603587,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"e07f8d41-7534-43cc-a575-031dd68dccbc","stop":1750253603646},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253603647,"name":"locator.fill(!Test123456)","uuid":"c21a1d5f-9289-4a4e-b764-b1f2fb773078","stop":1750253603773},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253603774,"name":"locator.fill()","uuid":"5565d4ec-f704-42a6-ae85-65d252780269","stop":1750253603785},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253603786,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"d746deb7-5e91-4c51-bd70-cd4cb45c688d","stop":1750253603856},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253603856,"name":"expect.toBeVisible","uuid":"cef6bd6c-9a70-43d5-ab51-7bddc818e1a6","stop":1750253603865},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253603865,"uuid":"813e34b8-4fd1-4dff-9e74-cda200f3d25a","stop":1750253603865},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253603865,"uuid":"7d298c2b-1f26-4256-a7d3-0a9512acf27b","stop":1750253603865}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253603865,"uuid":"9be07509-f2f5-4e0a-9008-4ad5feecb30c","stop":1750253603898}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-1"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"}],"links":[],"start":1750253600779,"testCaseId":"e6d2fb91f0b85b95c3962ffc860dddd7","fullName":"ui/recovery/recover-negative.spec.ts:45:7","stop":1750253603897} \ No newline at end of file diff --git a/allure-results/9256b15c-89c6-46bc-8fe4-94ff49423546-result.json b/allure-results/9256b15c-89c6-46bc-8fe4-94ff49423546-result.json new file mode 100644 index 0000000..250064c --- /dev/null +++ b/allure-results/9256b15c-89c6-46bc-8fe4-94ff49423546-result.json @@ -0,0 +1 @@ +{"uuid":"9256b15c-89c6-46bc-8fe4-94ff49423546","name":"Некорректный email формат","historyId":"de8c598c53adc6e2133478f1b9141597:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252861922,"uuid":"478d4155-b8ec-48e5-90e8-7c56e73bcfc1","stop":1750252861924}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252861921,"uuid":"af3c784a-8da8-4937-bc94-3c901084a648","stop":1750252861924},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252861925,"uuid":"4e2835ef-92bd-446f-923d-82c412166cc1","stop":1750252862035}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252861924,"uuid":"085b09d2-c3ff-47d5-acb8-83ad8bfbe219","stop":1750252862035}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252861920,"uuid":"3e85c7e7-ac7d-4106-8249-47ab48dd04ca","stop":1750252862035},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252862037,"name":"page.goto(/login/registration)","uuid":"38eec78e-e16b-4d40-8d9c-3d8aca859974","stop":1750252863379},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252863379,"name":"locator.fill(invalid-email)","uuid":"7f8a322f-04f6-4560-be15-e06fc635554f","stop":1750252863400},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252863401,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"5c94a064-cc21-4408-a9a9-ae1fe5c4319c","stop":1750252863437},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252863438,"name":"expect.toBeVisible","uuid":"f25f18b4-cd01-472a-af7b-4bac10c5664b","stop":1750252863441},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252863441,"uuid":"1156829f-cc52-42e0-a946-ff683605e2eb","stop":1750252863441},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252863441,"uuid":"575580e6-21c6-482a-bead-8e7ad2f23c66","stop":1750252863441}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252863441,"uuid":"da2424bb-5274-4041-91a8-226f705a0652","stop":1750252863443}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-3"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750252861921,"testCaseId":"de8c598c53adc6e2133478f1b9141597","fullName":"ui/registration/register.negative.spec.ts:28:7","stop":1750252863443} \ No newline at end of file diff --git a/allure-results/92ad86e1-bba5-4838-823f-e6c55962b211-result.json b/allure-results/92ad86e1-bba5-4838-823f-e6c55962b211-result.json new file mode 100644 index 0000000..9f0caf9 --- /dev/null +++ b/allure-results/92ad86e1-bba5-4838-823f-e6c55962b211-result.json @@ -0,0 +1 @@ +{"uuid":"92ad86e1-bba5-4838-823f-e6c55962b211","name":"Неверный код подтверждения","historyId":"31f03826b2a8da254be42b2d49bc35f3:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253484385,"uuid":"64400c42-c3d1-4f45-b153-40720cb5c0fb","stop":1750253484386}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253484385,"uuid":"e9091722-d2c9-48ff-9864-007698bb3f92","stop":1750253484387},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253484388,"uuid":"48243092-6542-474c-81ea-34c75e31375b","stop":1750253484420}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253484387,"uuid":"d379e8d4-c297-4f29-a23c-c673a54a1705","stop":1750253484420}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253484384,"uuid":"de568271-ce89-4e24-979f-a8b8f9639014","stop":1750253484420},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253484420,"name":"page.goto(/recoverpassword)","uuid":"84998b9d-2fae-42b3-bc53-8128adcd5ee1","stop":1750253489313},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253489315,"name":"locator.fill(autotest@example.com)","uuid":"5a13d132-4e25-438a-bfb0-7953d3255035","stop":1750253489337},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253489338,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"45e13e04-5a94-45d9-a77e-e3431d241ab6","stop":1750253489370},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253489370,"name":"expect.toHaveURL","uuid":"408fb1ad-c5ef-4428-a513-f53d33985006","stop":1750253489477},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253489477,"name":"locator.count(input[type=\"text\"])","uuid":"4ae2929d-83d8-4e87-b2d5-98d4bfd0a2a4","stop":1750253489479},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253489480,"name":"locator.fill(6)","uuid":"ef4a90c2-9022-4ec6-bbe5-28713602b491","stop":1750253489488},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253489488,"name":"locator.fill(5)","uuid":"b63250cf-8c96-4168-995c-9297c8f6a0b6","stop":1750253489492},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253489492,"name":"locator.fill(4)","uuid":"e245749d-f85a-439d-adca-bd2443bfd3d4","stop":1750253489496},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253489496,"name":"locator.fill(3)","uuid":"fac6dc94-d20a-4387-a79a-48a42919a0c2","stop":1750253489502},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253489502,"name":"locator.fill(2)","uuid":"dc23aafb-942f-494f-90fc-1a6528ed75ae","stop":1750253489506},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253489507,"name":"locator.fill(1)","uuid":"cfb69712-e6c3-41f9-82b7-5ca781315955","stop":1750253489512},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253489513,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"268f0c1b-a17e-4696-850a-6d3c60c75a18","stop":1750253489554},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253489554,"name":"expect.toBeVisible","uuid":"920adfe5-487c-455f-a4b5-521d77f55843","stop":1750253489660},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253489661,"uuid":"0488983a-f31e-4e06-89ae-22ecadd0dcae","stop":1750253489661},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253489661,"uuid":"10de2b1e-def7-445b-b2f9-835b8d34bb44","stop":1750253489661}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253489660,"uuid":"acf70975-0574-40c9-b2d8-1dfe5ad90a2f","stop":1750253490150}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-1"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"}],"links":[],"start":1750253484384,"testCaseId":"31f03826b2a8da254be42b2d49bc35f3","fullName":"ui/recovery/recover-negative.spec.ts:23:7","stop":1750253490149} \ No newline at end of file diff --git a/allure-results/93467720-3ee4-440c-aab7-25378e0f349b-result.json b/allure-results/93467720-3ee4-440c-aab7-25378e0f349b-result.json new file mode 100644 index 0000000..cb470e5 --- /dev/null +++ b/allure-results/93467720-3ee4-440c-aab7-25378e0f349b-result.json @@ -0,0 +1 @@ +{"uuid":"93467720-3ee4-440c-aab7-25378e0f349b","name":"Несуществующий email","historyId":"69b9236bee03ff0034bfbd5addc25f93:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252836664,"uuid":"02f65be9-9f37-40a5-bd4e-cf43c1a6674b","stop":1750252836685}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252836663,"uuid":"23869663-b4f6-44e6-95b9-b545fcf95f89","stop":1750252836685},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252836686,"uuid":"f732be78-f02e-4eef-a9fb-17a1ca4b2e12","stop":1750252836789}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252836685,"uuid":"80e66664-c55b-40c7-bea7-a78c9c03aebf","stop":1750252836789}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252836661,"uuid":"736144d4-10f7-44f0-93a7-51b82c2932c0","stop":1750252836790},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252836791,"name":"page.goto(/login/authorization)","uuid":"b1a566ae-6ff4-4e45-ac4a-3c3e10b956cf","stop":1750252842866},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252842868,"name":"locator.fill(wrong@example.com)","uuid":"3d5b843a-4cd8-4d57-bda5-bc192f81e7d5","stop":1750252842912},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252842913,"name":"locator.fill(anyPassword123)","uuid":"3515865a-e250-492a-946f-4a76485a8b61","stop":1750252842921},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252842922,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"0ba3c206-2f17-4193-8939-100321300d49","stop":1750252842987},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252842988,"name":"expect.toBeVisible","uuid":"9333ed5b-e7f9-4472-995a-f08697c28505","stop":1750252843099},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252843099,"uuid":"6e5a9240-74f9-43e6-86b9-c8af58fe5f7f","stop":1750252843099},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252843100,"uuid":"8b6960bf-82be-42d9-9983-f86d4e405b7d","stop":1750252843100}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252843099,"uuid":"550a7a44-327f-4e49-bdc5-a8be0d1e0c59","stop":1750252843105}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-1"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"}],"links":[],"start":1750252836661,"testCaseId":"69b9236bee03ff0034bfbd5addc25f93","fullName":"ui/login/login.negative.spec.ts:17:7","stop":1750252843104} \ No newline at end of file diff --git a/allure-results/9655bc87-0d76-4383-b731-f8a0f9ab95af-result.json b/allure-results/9655bc87-0d76-4383-b731-f8a0f9ab95af-result.json new file mode 100644 index 0000000..d997184 --- /dev/null +++ b/allure-results/9655bc87-0d76-4383-b731-f8a0f9ab95af-result.json @@ -0,0 +1 @@ +{"uuid":"9655bc87-0d76-4383-b731-f8a0f9ab95af","name":"Неверный код подтверждения","historyId":"31f03826b2a8da254be42b2d49bc35f3:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253599030,"uuid":"53dc3d43-6edf-4eea-a183-345f58aaa55a","stop":1750253599031}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253599029,"uuid":"b71b0bc8-2abf-431b-8533-1fd11ee8323f","stop":1750253599035},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253599036,"uuid":"ffee7ade-752b-4de4-9140-4679ba674b28","stop":1750253599205}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253599035,"uuid":"c57a114b-f5ec-411a-acdd-28912aaba976","stop":1750253599205}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253599029,"uuid":"b696aed6-e692-4599-9214-b372e42a3070","stop":1750253599205},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253599206,"name":"page.goto(/recoverpassword)","uuid":"84ad6eb8-4b38-4c27-9566-eb2fbb1877c2","stop":1750253601081},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253601082,"name":"locator.fill(autotest@example.com)","uuid":"24d0d905-81d2-4dc4-8f8e-3255a39a6338","stop":1750253601111},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253601112,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"8ff727a1-4691-43ba-8e5f-d559034b69f7","stop":1750253601182},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253601182,"name":"expect.toHaveURL","uuid":"2e9366c6-9101-458a-b6b5-c3f31d477f3f","stop":1750253601292},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253601292,"name":"locator.count(input[type=\"text\"])","uuid":"66495865-37c4-470c-87f0-7d06930129f2","stop":1750253601296},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253601296,"name":"locator.fill(6)","uuid":"a0528572-b07d-4050-9c1e-1f582f3348ae","stop":1750253601306},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253601306,"name":"locator.fill(5)","uuid":"6453318c-d3ec-40c1-b916-f3192292a82c","stop":1750253601314},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253601315,"name":"locator.fill(4)","uuid":"4b403bfc-cbcd-44b5-9957-99db78648150","stop":1750253601325},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253601325,"name":"locator.fill(3)","uuid":"047c792b-30a2-4943-abe6-c9dcc193cf4e","stop":1750253601331},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253601332,"name":"locator.fill(2)","uuid":"45e21bf0-acc6-4f99-811d-7746ccb02622","stop":1750253601339},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253601340,"name":"locator.fill(1)","uuid":"79e01190-f281-4ba2-ada1-4711e7deed36","stop":1750253601346},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253601347,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"f390a958-dbe9-44cc-b2f6-b6b7f219f90e","stop":1750253601410},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253601410,"name":"expect.toBeVisible","uuid":"e30eb02f-118f-45de-857e-3abaed6db999","stop":1750253601527},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253601527,"uuid":"2fd1fb19-29b8-4567-8434-339c81120424","stop":1750253601527},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253601527,"uuid":"2729ad25-17fa-4b10-bb3c-87c4464eab4e","stop":1750253601527}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253601527,"uuid":"63d43d35-5562-426e-9f5b-bde006db2479","stop":1750253601555}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"}],"links":[],"start":1750253599029,"testCaseId":"31f03826b2a8da254be42b2d49bc35f3","fullName":"ui/recovery/recover-negative.spec.ts:23:7","stop":1750253601554} \ No newline at end of file diff --git a/allure-results/9712a809-b587-4658-89c6-1781ea68e19a-result.json b/allure-results/9712a809-b587-4658-89c6-1781ea68e19a-result.json new file mode 100644 index 0000000..a51a423 --- /dev/null +++ b/allure-results/9712a809-b587-4658-89c6-1781ea68e19a-result.json @@ -0,0 +1 @@ +{"uuid":"9712a809-b587-4658-89c6-1781ea68e19a","name":"Слишком длинное название организации","historyId":"26486147b8778ca2341563049d2a3728:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252825717,"uuid":"8b3d1ba2-9d59-4c5c-ade0-f73eea3ed66a","stop":1750252825720}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252825716,"uuid":"f4f0dcd7-0e96-4cd5-a38d-e27ad4867fd3","stop":1750252825720},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252825721,"uuid":"9781de31-db88-4540-baa5-3bc0f2644237","stop":1750252825757}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252825720,"uuid":"8b9431f0-1cf4-4e6f-b680-c39e4ca4c470","stop":1750252825757}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252825715,"uuid":"bc0aafa2-df29-4d03-89e5-12047677bb5b","stop":1750252825757},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252825758,"name":"page.goto(/login/registration)","uuid":"728117da-720a-42fa-842d-ab23e36c382a","stop":1750252826538},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252826538,"name":"locator.fill(Иван)","uuid":"61ea0fa9-7d2e-43a8-a347-cfacb87f1ec3","stop":1750252826593},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252826594,"name":"locator.fill(Иванов)","uuid":"fdcfaeed-8968-40a9-aa77-7efdd7c684b4","stop":1750252826599},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252826600,"name":"locator.getByPlaceholder('Учёное звание*').click","uuid":"a871df54-d65b-4e07-b1a3-2f4b27572ded","stop":1750252826645},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252826646,"name":"locator.click(li >> internal:has-text=\"Доцент\"i)","uuid":"6d62fdf6-d45a-48dd-9099-cd45e9d30ea7","stop":1750252826705},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252826706,"name":"locator.getByPlaceholder('Учёная степень*').click","uuid":"66389dcd-a305-40d9-b0ca-f6d44db8a6ab","stop":1750252826828},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252826828,"name":"locator.click(li >> internal:has-text=\"Кандидат наук\"i)","uuid":"9022a71b-85e2-4cec-a420-5d6177fff669","stop":1750252826860},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252826860,"name":"locator.fill(Преподаватель)","uuid":"0c32fb80-9cc9-4c87-b72a-834e085fa708","stop":1750252826866},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252826867,"name":"locator.fill(ООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООО)","uuid":"214d4809-813f-4f2d-9493-e02cb99aa213","stop":1750252826877},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252826877,"name":"locator.fill(test1750252826538@example.com)","uuid":"8da6558e-48dc-45df-b551-202a65bda2a0","stop":1750252826884},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252826884,"name":"locator.fill(+79990953344)","uuid":"5e8d3d63-9ee3-43d4-91c6-819a948b4d65","stop":1750252826894},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252826895,"name":"locator.fill(!Test123)","uuid":"3a128b6a-f144-4ef1-b9e0-53ea182edf89","stop":1750252826903},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252826905,"name":"locator.fill(!Test123)","uuid":"2b9b0cfe-41f6-4fe0-9973-7765307c7aad","stop":1750252826917},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252826917,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"d7ac27ff-8573-45ee-8cd3-eb14cc608d1e","stop":1750252826962},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252826963,"name":"expect.toBeVisible","uuid":"969f9867-1b6f-41cf-a0e2-c06e2c4d3407","stop":1750252827074},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252827075,"uuid":"44ab7045-d6a0-4903-837c-b287b77bcfec","stop":1750252827075},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252827075,"uuid":"2231662b-54f3-4252-8866-30c111624893","stop":1750252827075}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252827075,"uuid":"79352acc-99e8-4045-89ae-2136b1326cf0","stop":1750252827133}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750252825715,"testCaseId":"26486147b8778ca2341563049d2a3728","fullName":"ui/registration/register.negative.spec.ts:48:7","stop":1750252827130} \ No newline at end of file diff --git a/allure-results/9713c68f-f6a5-43c9-ac96-707b2d2f85dc-result.json b/allure-results/9713c68f-f6a5-43c9-ac96-707b2d2f85dc-result.json new file mode 100644 index 0000000..b67bf31 --- /dev/null +++ b/allure-results/9713c68f-f6a5-43c9-ac96-707b2d2f85dc-result.json @@ -0,0 +1 @@ +{"uuid":"9713c68f-f6a5-43c9-ac96-707b2d2f85dc","name":"Оба поля пустые","historyId":"58990385f74407307e4ace7ad02abf05:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253620050,"uuid":"9fd35875-e916-4137-b65d-476cd558c189","stop":1750253620054}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253620050,"uuid":"6687a2ea-72b0-4773-9959-5158b56c1b90","stop":1750253620059},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253620061,"uuid":"81f59a7f-7107-4606-ad8e-13b27652946e","stop":1750253620235}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253620059,"uuid":"1333b6f7-56ee-4aa6-869e-bbcfb5e20703","stop":1750253620235}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253620049,"uuid":"4be3ace4-7561-405a-9eb7-12721998bdf8","stop":1750253620235},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253620236,"name":"page.goto(/login/authorization)","uuid":"14c63971-36a2-4e72-bffa-365eac6a05c2","stop":1750253625345},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253625345,"name":"locator.fill()","uuid":"b801007b-4f76-43fb-9e9a-3cc8c7b1494b","stop":1750253625396},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253625397,"name":"locator.fill()","uuid":"957df161-db52-418b-88ff-c2ff15555a3e","stop":1750253625426},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253625427,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"08b1dc62-1db2-45b2-8859-aa22fb4f1dc7","stop":1750253625506},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253625506,"name":"expect.toBeVisible","uuid":"759f569a-637e-470e-8bc5-5735fd3c1ad2","stop":1750253625523},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253625523,"name":"expect.toBeVisible","uuid":"3233b315-46d1-4a2c-b403-750b6455be6f","stop":1750253625531},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253625532,"uuid":"9e71ede0-286d-4fcf-aed9-b7f773247f81","stop":1750253625532},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253625532,"uuid":"d8d1aaa7-9af6-4664-888e-1e16c74436f2","stop":1750253625532}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253625531,"uuid":"47110c96-6e0c-4cd5-944d-5d7a79ae08c4","stop":1750253625594}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-3"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"}],"links":[],"start":1750253620048,"testCaseId":"58990385f74407307e4ace7ad02abf05","fullName":"ui/login/login.negative.spec.ts:27:7","stop":1750253625592} \ No newline at end of file diff --git a/allure-results/987c1a23-895f-4d90-b805-56f46af6dcd6-result.json b/allure-results/987c1a23-895f-4d90-b805-56f46af6dcd6-result.json new file mode 100644 index 0000000..b147312 --- /dev/null +++ b/allure-results/987c1a23-895f-4d90-b805-56f46af6dcd6-result.json @@ -0,0 +1 @@ +{"uuid":"987c1a23-895f-4d90-b805-56f46af6dcd6","name":"Пустое поле \"Повторите пароль\"","historyId":"e6d2fb91f0b85b95c3962ffc860dddd7:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253489858,"uuid":"27d7c054-f1f4-42ed-8ef7-c7640102bc2b","stop":1750253489860}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253489858,"uuid":"12599763-9bb7-4f59-8aaf-83d65b0bc006","stop":1750253489862},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253489862,"uuid":"3164bcb5-1b96-45a0-9c6d-02d46fb0601b","stop":1750253489902}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253489862,"uuid":"bd8a093f-d849-413e-bd0c-e38c8b55613b","stop":1750253489902}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253489857,"uuid":"53bf9edd-a1df-49f6-a325-33d33acb4d50","stop":1750253489902},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253489903,"name":"page.goto(/recoverpassword)","uuid":"f19e5ed8-423b-4f7d-ac20-44d2936ea21c","stop":1750253490769},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253490774,"name":"locator.fill(autotest@example.com)","uuid":"b19a7e0f-1212-470a-8c79-d98dcfde7914","stop":1750253490822},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253490823,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"af0e9c98-afa7-4bae-8a62-1e9173558c11","stop":1750253490876},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253490877,"name":"locator.count(input[type=\"text\"])","uuid":"046497c7-0e56-47b7-8722-0992cebf1fb0","stop":1750253490918},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253490927,"name":"locator.fill(0)","uuid":"136a8ed3-791d-4463-978a-fdec4212531e","stop":1750253490944},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253490944,"name":"locator.fill(0)","uuid":"3b982e76-9d70-414d-9ec9-f041d941f20d","stop":1750253490956},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253490957,"name":"locator.fill(0)","uuid":"424ce920-cc63-4a8e-89fc-dfebcc4df428","stop":1750253490991},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253490992,"name":"locator.fill(0)","uuid":"3b93c9a4-ee99-4bac-87d2-1439e4798f26","stop":1750253491035},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491035,"name":"locator.fill(0)","uuid":"daab01f2-32e4-4aee-97af-5bfb05b4e10b","stop":1750253491061},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491063,"name":"locator.fill(0)","uuid":"a6c89601-55a0-47a9-b568-4af00ac1a8b4","stop":1750253491076},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491077,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"77e04af5-4b42-4c79-bbbd-1d55a721a82c","stop":1750253491123},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491124,"name":"locator.fill(!Test123456)","uuid":"9655897a-c52d-4f07-9455-2c3eb4171636","stop":1750253491213},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491213,"name":"locator.fill()","uuid":"6c6e77d3-317d-4e8d-b85b-9fa5b25dd1ba","stop":1750253491232},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491233,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"16de2112-6373-40eb-b506-37df27f41677","stop":1750253491272},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491272,"name":"expect.toBeVisible","uuid":"6b391d8a-1858-4dc0-a5c8-ca291cf155e6","stop":1750253491277},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253491277,"uuid":"30f7cb37-0e3f-4d31-a220-1e2cd432f20b","stop":1750253491277},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253491277,"uuid":"c92e7594-a784-406e-a3f0-919ec2e9a1f9","stop":1750253491277}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253491277,"uuid":"1d0e2533-4c92-4717-a4d5-b643fb712d06","stop":1750253491646}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"}],"links":[],"start":1750253489856,"testCaseId":"e6d2fb91f0b85b95c3962ffc860dddd7","fullName":"ui/recovery/recover-negative.spec.ts:45:7","stop":1750253491644} \ No newline at end of file diff --git a/allure-results/98f38ff8-fe2e-4249-b45a-a0a07419f57c-result.json b/allure-results/98f38ff8-fe2e-4249-b45a-a0a07419f57c-result.json new file mode 100644 index 0000000..06964e0 --- /dev/null +++ b/allure-results/98f38ff8-fe2e-4249-b45a-a0a07419f57c-result.json @@ -0,0 +1 @@ +{"uuid":"98f38ff8-fe2e-4249-b45a-a0a07419f57c","name":"Успешная регистрация нового пользователя","historyId":"3562648cd3231e14b42a7151c17c62aa:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252826036,"uuid":"42e7264c-1989-4ce6-ac5d-9e82b72c5251","stop":1750252826037}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252826036,"uuid":"2173b831-8e3e-486e-a8ae-2aafbb44e9ae","stop":1750252826038},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252826038,"uuid":"a6b76f92-1b82-4904-a33a-348896707687","stop":1750252826075}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252826038,"uuid":"6dee01e7-5999-4d33-acd0-a171f8ec828a","stop":1750252826075}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252826035,"uuid":"4b0f2862-179f-4d0d-974f-b1cdb7f4ab98","stop":1750252826075},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252826076,"name":"page.goto(/login/registration)","uuid":"0139e27d-ffe2-4d12-a9f9-f20002ced1ac","stop":1750252831714},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252831718,"name":"locator.fill(Иван)","uuid":"76a20020-ef96-4732-bdfb-6b22a7564d88","stop":1750252831769},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252831769,"name":"locator.fill(Тестов)","uuid":"8e5dae2d-5f2b-427c-ae13-04f935670b98","stop":1750252831774},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252831774,"name":"locator.fill(Александрович)","uuid":"402c92a7-3166-4036-ac59-406faf48a187","stop":1750252831778},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252831779,"name":"locator.getByPlaceholder('Учёное звание*').click","uuid":"70174524-3541-4f3a-9953-97ddab53f073","stop":1750252831809},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252831810,"name":"locator.click(li >> internal:has-text=\"Доцент\"i)","uuid":"19786d24-1c82-43a0-8bed-fd4ab518d078","stop":1750252831867},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252831868,"name":"locator.getByPlaceholder('Учёная степень*').click","uuid":"daa2e38a-15e6-45cf-a308-82721b3da7ab","stop":1750252831908},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252831909,"name":"locator.click(li >> internal:has-text=\"Кандидат наук\"i)","uuid":"8652cd09-4492-4fa5-80bf-679526356a3e","stop":1750252831940},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252831941,"name":"locator.fill(Преподаватель)","uuid":"074dcb70-fc1f-4099-a669-f009c89d647c","stop":1750252831944},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252831945,"name":"locator.fill(ЮФУ)","uuid":"5c84de71-c37f-430e-a74d-13811fda9508","stop":1750252831949},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252831949,"name":"locator.fill(autotest2601@example.com)","uuid":"c462d276-ab3e-4a9f-b94b-33a0ffba5119","stop":1750252831957},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252831957,"name":"locator.fill(+79000002601)","uuid":"713c5fd3-3288-43e6-b836-1ad6fe9583d6","stop":1750252831963},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252831963,"name":"locator.fill(!Test123456)","uuid":"9ed64341-9f86-45cb-837c-a709425967a2","stop":1750252831967},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252831968,"name":"locator.fill(!Test123456)","uuid":"bdb3fcfb-20d6-490a-9f32-6980467f9a6f","stop":1750252831972},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252831972,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"399d0f45-b2e4-4099-b4cd-567bf2de5e14","stop":1750252832007},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252832008,"name":"expect.toHaveURL","uuid":"8588992d-0fdf-4d83-9b2c-c1cdf2a8c860","stop":1750252832114},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252832114,"name":"expect.toBeVisible","uuid":"cb33248c-2a18-4d62-bdac-37cdb6bf3ac8","stop":1750252832116},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252832116,"uuid":"2ad89e58-09c2-4ffb-8057-7b513501191a","stop":1750252832116},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252832116,"uuid":"fc55fe87-b6ee-4af3-bda0-9a29b07ed74f","stop":1750252832116}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252832116,"uuid":"9d08b6cf-e107-4954-bcf2-8239c56417d3","stop":1750252832121}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.spec.ts > Позитивные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.spec.ts"},{"name":"subSuite","value":"Позитивные сценарии регистрации"}],"links":[],"start":1750252826035,"testCaseId":"3562648cd3231e14b42a7151c17c62aa","fullName":"ui/registration/register.spec.ts:6:7","stop":1750252832119} \ No newline at end of file diff --git a/allure-results/99ac2551-11b7-4024-b33e-4eec6fe0c60f-result.json b/allure-results/99ac2551-11b7-4024-b33e-4eec6fe0c60f-result.json new file mode 100644 index 0000000..ddf6c35 --- /dev/null +++ b/allure-results/99ac2551-11b7-4024-b33e-4eec6fe0c60f-result.json @@ -0,0 +1 @@ +{"uuid":"99ac2551-11b7-4024-b33e-4eec6fe0c60f","name":"Только email без пароля","historyId":"8c67bb2f4fb916157fb6191bbb5e4267:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252841682,"uuid":"60d66e0c-2722-4767-a384-2f8ffc7202f0","stop":1750252841697}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252841681,"uuid":"baa3d589-c22f-4935-811c-84ec76849ba0","stop":1750252841698},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252841699,"uuid":"204ba8c8-4245-4102-a7e2-b35a4b12786a","stop":1750252841885}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252841698,"uuid":"24686201-57f8-4af0-88ea-2f9ae85ecc80","stop":1750252841885}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252841680,"uuid":"2dc653a9-3c21-4555-a623-e79b2b6f6519","stop":1750252841885},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252841888,"name":"page.goto(/login/authorization)","uuid":"5d83c0a4-d65c-49a4-b1a2-3998e96ec6b5","stop":1750252843523},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252843524,"name":"locator.fill(autotest@example.com)","uuid":"0d2db7e6-bcbb-4f59-b771-08825691cda5","stop":1750252843579},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252843580,"name":"locator.fill()","uuid":"cb6e6870-80bf-4931-81a1-475fde597038","stop":1750252843591},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252843592,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"4ef759cc-0a5b-4298-b09b-3271c3d54f42","stop":1750252843652},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252843652,"name":"expect.toBeVisible","uuid":"40bedc6e-d3ab-41ac-882f-a098fc15cde9","stop":1750252843655},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252843655,"uuid":"a5794749-3d6d-4d02-a0ac-8a09af7c217d","stop":1750252843655},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252843656,"uuid":"275cdf9b-c9b3-4782-9cd5-05510b709a01","stop":1750252843656}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252843655,"uuid":"aa53d7f1-4e8f-44d2-862d-f9db6bf1046d","stop":1750252843661}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"}],"links":[],"start":1750252841680,"testCaseId":"8c67bb2f4fb916157fb6191bbb5e4267","fullName":"ui/login/login.negative.spec.ts:37:7","stop":1750252843659} \ No newline at end of file diff --git a/allure-results/99c351cf-9452-44db-b715-917b3b9912a5-result.json b/allure-results/99c351cf-9452-44db-b715-917b3b9912a5-result.json new file mode 100644 index 0000000..fd46ae9 --- /dev/null +++ b/allure-results/99c351cf-9452-44db-b715-917b3b9912a5-result.json @@ -0,0 +1 @@ +{"uuid":"99c351cf-9452-44db-b715-917b3b9912a5","name":"Некорректный email (формат)","historyId":"d776d5fb9c918a79827aea417bdc449a:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253598460,"uuid":"72ba361f-00f6-4365-aca3-94610fa61ceb","stop":1750253598463}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253598460,"uuid":"047ccec6-f4cc-4099-9a9a-66bd93a78470","stop":1750253598466},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253598467,"uuid":"96572dd7-be92-4939-bf61-34d4190d3e7b","stop":1750253598659}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253598466,"uuid":"2f05bc65-738e-4c9e-b288-9635d37a6778","stop":1750253598659}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253598459,"uuid":"8b083bdb-055c-41c1-ad7a-8c02554a1a5c","stop":1750253598659},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253598660,"name":"page.goto(/recoverpassword)","uuid":"8b509eb6-8c29-49f3-818d-5aaac83bd4c6","stop":1750253600660},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253600661,"name":"locator.fill(invalid-email)","uuid":"b928d463-8b6e-47ea-afbc-e3a8fd8e7646","stop":1750253600689},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253600690,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"50af2d10-bd0a-4ab7-ad98-81f41fb40773","stop":1750253600743},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253600743,"name":"expect.toBeVisible","uuid":"7d91fc53-f1d6-495d-8616-c71af1653014","stop":1750253600752},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253600752,"uuid":"28bca4e3-a6ed-4ac2-a1f6-cc2b602a8176","stop":1750253600752},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253600752,"uuid":"24a95fcb-6108-48ff-ad37-495945aecbcb","stop":1750253600752}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253600752,"uuid":"e38c9b0a-68de-4d6f-bddb-10da9c96f25b","stop":1750253600778}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-1"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"}],"links":[],"start":1750253598459,"testCaseId":"d776d5fb9c918a79827aea417bdc449a","fullName":"ui/recovery/recover-negative.spec.ts:7:7","stop":1750253600776} \ No newline at end of file diff --git a/allure-results/99ff68b6-d477-4856-9c32-4a70b0c68f02-result.json b/allure-results/99ff68b6-d477-4856-9c32-4a70b0c68f02-result.json new file mode 100644 index 0000000..ed944ea --- /dev/null +++ b/allure-results/99ff68b6-d477-4856-9c32-4a70b0c68f02-result.json @@ -0,0 +1 @@ +{"uuid":"99ff68b6-d477-4856-9c32-4a70b0c68f02","name":"Отправка пустой формы","historyId":"61b0fd9a6b9153c787b71ef3413cea92:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253603907,"uuid":"c3ff7f51-3f96-4c44-b463-5da193486f36","stop":1750253603909}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253603906,"uuid":"b98ed741-f92f-4cc1-bbf7-30bb0bf1e359","stop":1750253603910},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253603911,"uuid":"8f5f03d8-db40-40b6-a57d-c81a9638aafd","stop":1750253604112}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253603910,"uuid":"bedeec77-e046-46da-a253-01d665b7bcaf","stop":1750253604112}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253603905,"uuid":"2400d597-4f27-44c5-8d8c-3259dd7bb0cf","stop":1750253604112},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253604113,"name":"page.goto(/login/registration)","uuid":"a0f99ebe-4d5c-46a4-9fb7-6ad2246d435b","stop":1750253611442},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253611443,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"afe95cba-bde5-403e-ab24-c6d2bc4bb0dc","stop":1750253611582},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253611583,"name":"locator.allTextContents(div[name=\"error\"] >> internal:has-text=\"Поле обязательно для заполнения\"i)","uuid":"3a493f9f-a99d-4bbe-a2ab-f3f33e760919","stop":1750253611634},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253611634,"name":"expect.toBeGreaterThan","uuid":"681845be-86af-472a-b614-afecb7d7a2de","stop":1750253611635},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253611635,"name":"expect.toBeVisible","uuid":"8426f221-7210-4d75-bfcd-d38d4c78b7fc","stop":1750253611650},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253611650,"uuid":"cd98a3f9-bda6-46a0-82f8-6236a81835ad","stop":1750253611650},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253611651,"uuid":"f4f0937c-fea1-4909-8c5e-1f5407aea7e4","stop":1750253611651}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253611650,"uuid":"9f2010e0-8f6b-4374-8dd6-3f348d66dcca","stop":1750253611741}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-1"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750253603906,"testCaseId":"61b0fd9a6b9153c787b71ef3413cea92","fullName":"ui/registration/register.negative.spec.ts:6:7","stop":1750253611740} \ No newline at end of file diff --git a/allure-results/9aee033c-e11e-4a53-ba74-8def7eb04877-result.json b/allure-results/9aee033c-e11e-4a53-ba74-8def7eb04877-result.json new file mode 100644 index 0000000..e6548da --- /dev/null +++ b/allure-results/9aee033c-e11e-4a53-ba74-8def7eb04877-result.json @@ -0,0 +1 @@ +{"uuid":"9aee033c-e11e-4a53-ba74-8def7eb04877","name":"Только email без пароля","historyId":"8c67bb2f4fb916157fb6191bbb5e4267:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253543786,"uuid":"6be49b9f-bcd1-424b-970b-eb4b9de7b129","stop":1750253543787}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253543786,"uuid":"b4b13ff3-5fc1-4193-a52f-802a7ea42253","stop":1750253543788},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253543788,"uuid":"9e7d9331-d19c-4e29-a506-5a6d01eed6a6","stop":1750253543833}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253543788,"uuid":"47952b9b-5259-4cdf-b94d-5b5e037d9999","stop":1750253543833}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253543785,"uuid":"12b0db20-1e83-435b-9cfd-ee756e685e45","stop":1750253543833},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253543834,"name":"page.goto(/login/authorization)","uuid":"3074e5c6-9b1a-4795-ae3d-7cbeab47cb78","stop":1750253549212},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253549214,"name":"locator.fill(autotest@example.com)","uuid":"ff506ccd-2696-4a06-9250-737b1d9268a8","stop":1750253549237},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253549238,"name":"locator.fill()","uuid":"9921749d-5fe1-4132-a6b1-357ca291581b","stop":1750253549274},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253549275,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"f36dda2d-8b0f-4287-af32-12dab9b0cd5b","stop":1750253549317},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253549317,"name":"expect.toBeVisible","uuid":"3928c94f-0716-4e6e-94d1-22d08b5300c0","stop":1750253549321},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253549322,"uuid":"6dc8e3b2-cbcb-44f2-82a2-c416ba02b63e","stop":1750253549322},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253549322,"uuid":"a814a24c-8015-45cd-9fca-2f5332a8716e","stop":1750253549322}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253549322,"uuid":"5975530a-cc24-4104-a74a-db8909fbf5b8","stop":1750253554499}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"}],"links":[],"start":1750253543785,"testCaseId":"8c67bb2f4fb916157fb6191bbb5e4267","fullName":"ui/login/login.negative.spec.ts:37:7","stop":1750253554497} \ No newline at end of file diff --git a/allure-results/9cc26f65-a3ae-453d-8202-5880af161295-result.json b/allure-results/9cc26f65-a3ae-453d-8202-5880af161295-result.json new file mode 100644 index 0000000..b922325 --- /dev/null +++ b/allure-results/9cc26f65-a3ae-453d-8202-5880af161295-result.json @@ -0,0 +1 @@ +{"uuid":"9cc26f65-a3ae-453d-8202-5880af161295","name":"Неверный пароль","historyId":"500ad758ee2db2bb60aa832fb0abbb94:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253583945,"uuid":"0012c76a-3d52-407a-bf93-b2394f22a4f7","stop":1750253583947}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253583944,"uuid":"2bd1b920-76f1-4be0-83fe-5dd36e5ec44e","stop":1750253583953},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253583953,"uuid":"32b52520-6aa4-4b51-871e-8ae99fe00f2f","stop":1750253584190}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253583953,"uuid":"76bc42a8-c4bb-4214-9c96-ba61957a22ab","stop":1750253584190}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253583943,"uuid":"3c762e0b-38dc-4e48-9391-e549c7359035","stop":1750253584190},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253584192,"name":"page.goto(/login/authorization)","uuid":"d41bd0ff-1988-46bb-aaff-0225b260a3a8","stop":1750253590874},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253590875,"name":"locator.fill(autotest@example.com)","uuid":"3a968f06-2159-45be-8418-97779920035c","stop":1750253590935},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253590935,"name":"locator.fill(wrongpass)","uuid":"d5ead12d-6cea-45b7-9f75-757969913f94","stop":1750253590947},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253590948,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"85d41cd5-3936-4d10-809e-f20edd396969","stop":1750253591010},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253591011,"name":"expect.toBeVisible","uuid":"911a8cb4-05ee-4982-8808-5f2c9c79d269","stop":1750253591121},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253591121,"uuid":"3ec2d023-f3ed-4869-9404-e2f3148b453f","stop":1750253591121},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253591121,"uuid":"52e641cb-a848-474b-a9be-a6185cd19aab","stop":1750253591121}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253591121,"uuid":"ff6e51bc-b95c-4ef2-a264-fb0757047ba2","stop":1750253591153}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"}],"links":[],"start":1750253583944,"testCaseId":"500ad758ee2db2bb60aa832fb0abbb94","fullName":"ui/login/login.negative.spec.ts:7:7","stop":1750253591152} \ No newline at end of file diff --git a/allure-results/9e778a42-1072-48dc-8535-0a9f4b5993f8-result.json b/allure-results/9e778a42-1072-48dc-8535-0a9f4b5993f8-result.json new file mode 100644 index 0000000..16e35dd --- /dev/null +++ b/allure-results/9e778a42-1072-48dc-8535-0a9f4b5993f8-result.json @@ -0,0 +1 @@ +{"uuid":"9e778a42-1072-48dc-8535-0a9f4b5993f8","name":"Неверный код подтверждения","historyId":"31f03826b2a8da254be42b2d49bc35f3:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"failed","statusDetails":{"message":"Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected)\n\nLocator: locator(':root')\nExpected pattern: /\\/recoverpassword\\/checkemail/\nReceived string: \"https://ssas.dev.rdcenter.ru/recoverpassword\"\nCall log:\n - expect.toHaveURL with timeout 5000ms\n - waiting for locator(':root')\n 9 × locator resolved to …\n - unexpected value \"https://ssas.dev.rdcenter.ru/recoverpassword\"\n","trace":"Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected)\n\nLocator: locator(':root')\nExpected pattern: /\\/recoverpassword\\/checkemail/\nReceived string: \"https://ssas.dev.rdcenter.ru/recoverpassword\"\nCall log:\n - expect.toHaveURL with timeout 5000ms\n - waiting for locator(':root')\n 9 × locator resolved to …\n - unexpected value \"https://ssas.dev.rdcenter.ru/recoverpassword\"\n\n at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/recovery/recover-negative.spec.ts:28:24"},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252814014,"uuid":"2989e3c2-c35a-4566-ada7-07133d40c4f8","stop":1750252814016}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252814014,"uuid":"ec977b22-6207-4f23-9f85-47c6c71abec8","stop":1750252814016},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252814016,"uuid":"24eaccbe-f247-42a1-b3a5-73bad80b2f37","stop":1750252814049}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252814016,"uuid":"4928ffe8-7adc-481c-beef-475c43e4829f","stop":1750252814049}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252814013,"uuid":"c5868901-901d-45bb-ac2e-d403412d77b8","stop":1750252814049},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252814050,"name":"page.goto(/recoverpassword)","uuid":"ac2adc99-cfed-4a4a-92a6-cab78c250545","stop":1750252814797},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252814797,"name":"locator.fill(autotest@example.com)","uuid":"10ae9a6a-e4b0-4424-8600-680fae2cbd28","stop":1750252814830},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252814831,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"45fd74a1-542d-4e41-b3c1-5626da648b21","stop":1750252814857},{"status":"failed","statusDetails":{"message":"Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected)\n\nLocator: locator(':root')\nExpected pattern: /\\/recoverpassword\\/checkemail/\nReceived string: \"https://ssas.dev.rdcenter.ru/recoverpassword\"\nCall log:\n - expect.toHaveURL with timeout 5000ms\n - waiting for locator(':root')\n 9 × locator resolved to …\n - unexpected value \"https://ssas.dev.rdcenter.ru/recoverpassword\"\n","trace":"Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected)\n\nLocator: locator(':root')\nExpected pattern: /\\/recoverpassword\\/checkemail/\nReceived string: \"https://ssas.dev.rdcenter.ru/recoverpassword\"\nCall log:\n - expect.toHaveURL with timeout 5000ms\n - waiting for locator(':root')\n 9 × locator resolved to …\n - unexpected value \"https://ssas.dev.rdcenter.ru/recoverpassword\"\n\n at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/recovery/recover-negative.spec.ts:28:24"},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252814858,"name":"expect.toHaveURL","uuid":"0ce4d107-5865-45ac-94cd-d1549204139a","stop":1750252819863},{"statusDetails":{},"stage":"finished","steps":[],"attachments":[{"name":"_error-context-0","source":"0c2b3f25-a5c0-41ff-b8e8-b69f2befb05a-attachment.md","type":"text/markdown"}],"parameters":[],"start":1750252819913,"name":"_error-context-0","stop":1750252819913},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252819864,"uuid":"1cf691eb-7ef5-4cb1-9589-b2772d714923","stop":1750252819865},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252819865,"uuid":"000fa862-ad08-40d0-bb62-5e28d29548a6","stop":1750252819865}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252819864,"uuid":"7456f8c5-d360-4025-a086-14540d47d714","stop":1750252819885}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"}],"links":[],"start":1750252814013,"testCaseId":"31f03826b2a8da254be42b2d49bc35f3","fullName":"ui/recovery/recover-negative.spec.ts:23:7","stop":1750252819880} \ No newline at end of file diff --git a/allure-results/a0ebe009-a991-4d4b-8b7c-acc0b7fad306-result.json b/allure-results/a0ebe009-a991-4d4b-8b7c-acc0b7fad306-result.json new file mode 100644 index 0000000..998d973 --- /dev/null +++ b/allure-results/a0ebe009-a991-4d4b-8b7c-acc0b7fad306-result.json @@ -0,0 +1 @@ +{"uuid":"a0ebe009-a991-4d4b-8b7c-acc0b7fad306","name":"Слишком длинное название организации","historyId":"26486147b8778ca2341563049d2a3728:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252850890,"uuid":"6bd11f4d-353e-4529-a396-5cc71789d302","stop":1750252850897}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252850890,"uuid":"ae8906bb-a3fd-435c-b22f-dcabfb52eb43","stop":1750252850898},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252850898,"uuid":"4c7c920e-09b3-462c-8e4c-411dae6f47fa","stop":1750252851098}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252850898,"uuid":"46efcec5-eaca-41e0-a8e8-6a03645e1af1","stop":1750252851098}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252850889,"uuid":"4db3d446-6a0f-4a71-8c8e-3036c179569e","stop":1750252851098},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252851099,"name":"page.goto(/login/registration)","uuid":"b5d15c19-038a-457a-9689-d82db9f2132a","stop":1750252852544},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252852545,"name":"locator.fill(Иван)","uuid":"f0351ddc-95e5-4ae5-b702-149dbb258fea","stop":1750252852574},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252852575,"name":"locator.fill(Иванов)","uuid":"85eec1da-f0e2-432c-917e-ecdb6843532d","stop":1750252852585},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252852585,"name":"locator.getByPlaceholder('Учёное звание*').click","uuid":"8df4b225-fb66-4df3-a08f-f18646c2bcba","stop":1750252852638},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252852639,"name":"locator.click(li >> internal:has-text=\"Доцент\"i)","uuid":"01077f35-2536-43aa-b3ea-5a6bca87a5c4","stop":1750252852788},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252852790,"name":"locator.getByPlaceholder('Учёная степень*').click","uuid":"d841f2b1-570e-46b0-9670-83678d1e713e","stop":1750252852936},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252852936,"name":"locator.click(li >> internal:has-text=\"Кандидат наук\"i)","uuid":"2552cee3-a3cb-4aff-a79d-7faaccd88cb2","stop":1750252853004},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252853005,"name":"locator.fill(Преподаватель)","uuid":"27991cd5-b20a-46d8-a206-89e9974cc338","stop":1750252853025},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252853025,"name":"locator.fill(ООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООО)","uuid":"5b801c73-41c1-44b6-a2c1-c74386e558eb","stop":1750252853035},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252853035,"name":"locator.fill(test1750252852545@example.com)","uuid":"823a46e1-cbb3-4c41-922e-41ad3c4dea09","stop":1750252853042},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252853043,"name":"locator.fill(+79990646193)","uuid":"b3f3db7e-8906-422d-957d-9e61faad03ca","stop":1750252853052},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252853053,"name":"locator.fill(!Test123)","uuid":"58e63746-b38f-4d84-a6a6-dfb3d25af34d","stop":1750252853060},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252853061,"name":"locator.fill(!Test123)","uuid":"f84409ca-758e-4c6f-a0e4-4738ca8191fd","stop":1750252853067},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252853067,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"7618450b-ed18-4af1-b3e2-df6225fe3eb7","stop":1750252854018},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252854018,"name":"expect.toBeVisible","uuid":"8d3b5c55-1684-473d-81ba-bf93fc04ae0e","stop":1750252854133},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252854134,"uuid":"8b6dce67-1928-4fbe-a994-7f3b85b3df93","stop":1750252854134},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252854134,"uuid":"42ab648b-0c29-4e0c-83b2-4b5d17c010d4","stop":1750252854134}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252854134,"uuid":"0b68891e-92ed-4829-a17e-d46ff0017ced","stop":1750252854139}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750252850889,"testCaseId":"26486147b8778ca2341563049d2a3728","fullName":"ui/registration/register.negative.spec.ts:48:7","stop":1750252854138} \ No newline at end of file diff --git a/allure-results/a102d630-14f1-44ec-b27f-1258b10af725-result.json b/allure-results/a102d630-14f1-44ec-b27f-1258b10af725-result.json new file mode 100644 index 0000000..62ac6bc --- /dev/null +++ b/allure-results/a102d630-14f1-44ec-b27f-1258b10af725-result.json @@ -0,0 +1 @@ +{"uuid":"a102d630-14f1-44ec-b27f-1258b10af725","name":"Слишком длинная должность","historyId":"2214c0f917091cfcda832cd03e01bb76:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252508247,"uuid":"157bd27a-48e4-48b0-81d5-ab43fe633a1f","stop":1750252509063}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252508245,"uuid":"750cb338-9bc5-4b3e-a831-68da132be391","stop":1750252509064},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252509065,"uuid":"11bd59ee-dd50-4af2-a7b9-7357418160ca","stop":1750252509317}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252509064,"uuid":"8136318a-c63e-4a34-a567-749e372cc3df","stop":1750252509317}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252508243,"uuid":"b600eaa3-f88d-43c5-8edf-d00942a54aee","stop":1750252509317},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252509318,"name":"page.goto(/login/registration)","uuid":"75428369-75da-4f37-b404-1fe6b6654423","stop":1750252513730},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252513731,"name":"locator.fill(XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX)","uuid":"a9be38e0-3a40-4225-a83d-a2b3ac3105b7","stop":1750252515309},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252515311,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"c95e3853-3c44-48d3-901d-5bac41395dd3","stop":1750252517099},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252517099,"name":"expect.toBeVisible","uuid":"b55d6191-5772-4a8d-b037-1d962e4a4727","stop":1750252518136},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252518137,"uuid":"0131f0fd-cd50-45ab-b378-e84bd3950f10","stop":1750252518137},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252518138,"uuid":"15466d09-76b8-4087-b9f1-1bf6d5586411","stop":1750252518138}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252518137,"uuid":"9c7a9028-5631-4621-82e2-3b2c227a36c8","stop":1750252518166}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-57209-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750252508247,"testCaseId":"2214c0f917091cfcda832cd03e01bb76","fullName":"ui/registration/register.negative.spec.ts:38:7","stop":1750252518166} \ No newline at end of file diff --git a/allure-results/a1982c54-c54c-4735-a03b-160d67e27247-result.json b/allure-results/a1982c54-c54c-4735-a03b-160d67e27247-result.json new file mode 100644 index 0000000..2234f97 --- /dev/null +++ b/allure-results/a1982c54-c54c-4735-a03b-160d67e27247-result.json @@ -0,0 +1 @@ +{"uuid":"a1982c54-c54c-4735-a03b-160d67e27247","name":"Успешная регистрация нового пользователя","historyId":"3562648cd3231e14b42a7151c17c62aa:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253502885,"uuid":"d8d923e7-dcb9-427a-aa33-392a4a460079","stop":1750253502886}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253502884,"uuid":"c6f2d072-05c8-49f8-b721-cc5004ef3c9f","stop":1750253502887},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253502888,"uuid":"3e514c76-6f5f-4641-bd97-5bd95fb8714a","stop":1750253502921}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253502887,"uuid":"d7b1fa76-b93e-4238-ab8b-c49aa01db86a","stop":1750253502921}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253502883,"uuid":"e40e522b-e2d7-4a20-b0c7-d3c8d74707b7","stop":1750253502921},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253502921,"name":"page.goto(/login/registration)","uuid":"e28e36c7-7795-4313-8f3f-2eb8b59d4a99","stop":1750253503732},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253503734,"name":"locator.fill(Иван)","uuid":"dc642eff-c853-4b99-9d1c-884919453e64","stop":1750253503788},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253503789,"name":"locator.fill(Тестов)","uuid":"99b792d7-6f17-474b-92e1-05eec9cec10b","stop":1750253503802},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253503803,"name":"locator.fill(Александрович)","uuid":"434f49d4-7f50-4aa7-adba-6ee717916585","stop":1750253503820},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253503821,"name":"locator.getByPlaceholder('Учёное звание*').click","uuid":"4495774d-a0f2-44f2-beb5-f2696833a2e3","stop":1750253503860},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253503860,"name":"locator.click(li >> internal:has-text=\"Доцент\"i)","uuid":"3dc18a08-aa76-423c-a949-1a6bd5208c8f","stop":1750253503939},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253503940,"name":"locator.getByPlaceholder('Учёная степень*').click","uuid":"7cde0aaa-2618-483e-9e46-de252d64979d","stop":1750253504849},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253504850,"name":"locator.click(li >> internal:has-text=\"Кандидат наук\"i)","uuid":"0ec28b19-cde0-40e6-84b2-6432ee7e99ae","stop":1750253504888},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253504889,"name":"locator.fill(Преподаватель)","uuid":"c9587f2e-fff0-4f70-b842-fbb6a8e693d2","stop":1750253504897},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253504898,"name":"locator.fill(ЮФУ)","uuid":"c0d0d8e8-f4c6-4f7d-8654-78b1ed7e6930","stop":1750253504904},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253504905,"name":"locator.fill(autotest47217@example.com)","uuid":"b62ceaa2-4989-447a-93bf-df721ac41410","stop":1750253504912},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253504913,"name":"locator.fill(+79000047217)","uuid":"be9a11cd-dda7-4399-abe8-904f690fffc6","stop":1750253504923},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253504924,"name":"locator.fill(!Test123456)","uuid":"9c1e1f70-e918-4eda-8134-628216dbbbef","stop":1750253504929},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253504929,"name":"locator.fill(!Test123456)","uuid":"7c62a7d5-4fb5-44e6-bdb1-f92a85ce6b28","stop":1750253504935},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253504936,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"020a3563-baf7-4f37-9607-dbf9b1978a04","stop":1750253504970},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253504970,"name":"expect.toHaveURL","uuid":"41e3a96c-e401-4784-85c3-0203b747fe86","stop":1750253505076},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253505077,"name":"expect.toBeVisible","uuid":"2b917bdd-3730-4810-8035-5d3ae203a461","stop":1750253505079},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253505080,"uuid":"6682e898-1d6c-4b01-ab11-f590bd2f2051","stop":1750253505080},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253505080,"uuid":"f13d13e3-df2e-4c95-a2a4-85a2ec2a8a7e","stop":1750253505080}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253505079,"uuid":"c54f408c-43ba-4c77-9824-bb9921306a05","stop":1750253505133}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.spec.ts > Позитивные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.spec.ts"},{"name":"subSuite","value":"Позитивные сценарии регистрации"}],"links":[],"start":1750253502884,"testCaseId":"3562648cd3231e14b42a7151c17c62aa","fullName":"ui/registration/register.spec.ts:6:7","stop":1750253505132} \ No newline at end of file diff --git a/allure-results/a2d214a7-dc42-4066-af74-53a8aa8adc64-result.json b/allure-results/a2d214a7-dc42-4066-af74-53a8aa8adc64-result.json new file mode 100644 index 0000000..40b2e64 --- /dev/null +++ b/allure-results/a2d214a7-dc42-4066-af74-53a8aa8adc64-result.json @@ -0,0 +1 @@ +{"uuid":"a2d214a7-dc42-4066-af74-53a8aa8adc64","name":"Некорректный формат email","historyId":"e5764a911de0175f8f7118313ae14544:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253591601,"uuid":"0556b367-b1d5-4df6-8c9a-8b17d549bd19","stop":1750253591604}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253591600,"uuid":"9207e3c1-cac9-449a-8b8b-de478ab8b886","stop":1750253591608},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253591608,"uuid":"f9c4f329-d0e0-457b-8240-0b8c7d540ad5","stop":1750253591778}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253591608,"uuid":"c7755f60-3aa5-47c6-8efc-13f0ce4c5ca6","stop":1750253591778}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253591599,"uuid":"c9863663-7daa-4875-8f6c-6d56a30e4e4e","stop":1750253591778},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253591779,"name":"page.goto(/login/authorization)","uuid":"f4cad5dc-a56f-4b96-af6c-6672c4315f93","stop":1750253598615},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253598615,"name":"locator.fill(invalid-email)","uuid":"2159095c-5dd7-457c-bc25-9dae1a3586c1","stop":1750253598658},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253598659,"name":"locator.fill(anyPassword123)","uuid":"b8c35087-9a7e-48f7-90eb-48e3fed1dca9","stop":1750253598673},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253598674,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"798bd53f-97e5-40e1-a9db-ba80adc24118","stop":1750253598729},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253598730,"name":"expect.toBeVisible","uuid":"f39a4098-559f-4d1a-9a30-ebcec5565ed5","stop":1750253598739},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253598739,"uuid":"393543e4-4e26-4e47-88ca-d45145c148c0","stop":1750253598739},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253598739,"uuid":"1590e170-d01b-4683-88d9-f15569be8050","stop":1750253598739}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253598739,"uuid":"ac921585-a8da-474e-ab99-c781726b30c3","stop":1750253598771}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-3"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"}],"links":[],"start":1750253591599,"testCaseId":"e5764a911de0175f8f7118313ae14544","fullName":"ui/login/login.negative.spec.ts:46:7","stop":1750253598769} \ No newline at end of file diff --git a/allure-results/a5730d42-de9d-4b22-89cd-f16e14dd3b85-result.json b/allure-results/a5730d42-de9d-4b22-89cd-f16e14dd3b85-result.json new file mode 100644 index 0000000..c97899a --- /dev/null +++ b/allure-results/a5730d42-de9d-4b22-89cd-f16e14dd3b85-result.json @@ -0,0 +1 @@ +{"uuid":"a5730d42-de9d-4b22-89cd-f16e14dd3b85","name":"Пользователь должен успешно залогиниться с валидными данными","historyId":"92a5ca35180a4cbe902714b987a6bf44:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252812985,"uuid":"19e3f3b5-42fc-484a-8aa0-812317f9a6c7","stop":1750252812986}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252812985,"uuid":"53d270fe-fdb0-420e-bb1a-3660eedec0a0","stop":1750252812986},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252812987,"uuid":"59263e83-176c-48a1-9bec-4c602bab5233","stop":1750252813024}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252812987,"uuid":"bc60f8e5-4b89-4868-bc8b-a3abd1b03924","stop":1750252813024}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252812984,"uuid":"3e37aed4-fd43-44bc-b5c4-486232437f03","stop":1750252813024},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252813024,"name":"page.goto(/login/authorization)","uuid":"f1c029fa-8066-4092-8302-3abf22a3a933","stop":1750252813719},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252813719,"name":"locator.fill(autotest@example.com)","uuid":"1007769c-6c72-4dab-bb24-39b334315cf3","stop":1750252813774},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252813775,"name":"locator.fill(!Test123456)","uuid":"9ee04734-cbbf-437e-8c24-eab2f92f029a","stop":1750252813812},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252813814,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"68acff74-2b68-4c3a-8c3e-82d207f749fe","stop":1750252813840},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252813841,"name":"expect.toHaveURL","uuid":"ca2316bc-f5bb-4fbc-8e54-9c17c03c7b12","stop":1750252813951},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252813952,"name":"expect.toBeVisible","uuid":"57f969b7-8bb8-4616-8b9a-fe19772fa878","stop":1750252813957},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252813957,"uuid":"4c7c7120-2ebb-4064-b62b-2e07e0949dcc","stop":1750252813957},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252813957,"uuid":"4a642df8-0cb4-45cf-8c1b-e04a7257b759","stop":1750252813957}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252813957,"uuid":"d15e9e3e-6d4d-46d1-8299-7be1cc0ed287","stop":1750252814010}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.spec.ts > Авторизация пользователя"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.spec.ts"},{"name":"subSuite","value":"Авторизация пользователя"}],"links":[],"start":1750252812984,"testCaseId":"92a5ca35180a4cbe902714b987a6bf44","fullName":"ui/login/login.spec.ts:7:7","stop":1750252814009} \ No newline at end of file diff --git a/allure-results/a69a6c6a-ef76-4114-a6a0-f1c5337d4271-result.json b/allure-results/a69a6c6a-ef76-4114-a6a0-f1c5337d4271-result.json new file mode 100644 index 0000000..ca4ff8b --- /dev/null +++ b/allure-results/a69a6c6a-ef76-4114-a6a0-f1c5337d4271-result.json @@ -0,0 +1 @@ +{"uuid":"a69a6c6a-ef76-4114-a6a0-f1c5337d4271","name":"Только email без пароля","historyId":"8c67bb2f4fb916157fb6191bbb5e4267:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253478768,"uuid":"6298741e-18d8-4783-8f87-f520662f5a8e","stop":1750253478769}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253478767,"uuid":"b2357e21-e216-4f23-933b-7f5d8601ba28","stop":1750253478770},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253478770,"uuid":"feb15324-06ef-428e-a33c-4293a6a10504","stop":1750253478803}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253478770,"uuid":"41c36abe-dad6-4e64-992e-3e0297ecacbe","stop":1750253478803}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253478767,"uuid":"68b10501-a767-4747-bc10-1d8ce6b0122e","stop":1750253478803},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253478803,"name":"page.goto(/login/authorization)","uuid":"66943e1f-e234-4ac8-b90d-d1f3a028eafa","stop":1750253479633},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253479634,"name":"locator.fill(autotest@example.com)","uuid":"d28c1cea-7752-4934-b934-5ca41a87a9c1","stop":1750253479652},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253479652,"name":"locator.fill()","uuid":"2a3da0cd-4dce-423a-87d2-0b4a7c15950f","stop":1750253479694},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253479695,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"db01a1fb-23e3-4f2f-bcda-c088a8d74f65","stop":1750253479738},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253479738,"name":"expect.toBeVisible","uuid":"7f348375-1819-4a45-95aa-535d2b0d3172","stop":1750253479743},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253479743,"uuid":"2bcac63d-c2a4-4ab2-bde9-bb83a2990ae1","stop":1750253479743},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253479744,"uuid":"2a6103b9-6a96-48e9-b63e-6297e4a7bd27","stop":1750253479744}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253479743,"uuid":"5bead229-d746-47c2-b2d8-c3e2abca75ed","stop":1750253480533}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-1"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"}],"links":[],"start":1750253478767,"testCaseId":"8c67bb2f4fb916157fb6191bbb5e4267","fullName":"ui/login/login.negative.spec.ts:37:7","stop":1750253480532} \ No newline at end of file diff --git a/allure-results/a75cdd8b-8415-4f08-a850-193c47eb5375-result.json b/allure-results/a75cdd8b-8415-4f08-a850-193c47eb5375-result.json new file mode 100644 index 0000000..8b00653 --- /dev/null +++ b/allure-results/a75cdd8b-8415-4f08-a850-193c47eb5375-result.json @@ -0,0 +1 @@ +{"uuid":"a75cdd8b-8415-4f08-a850-193c47eb5375","name":"Переключатель видимости пароля показывает и скрывает ввод","historyId":"b1726395bd827a3a21fe3c829a098be4:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252857948,"uuid":"e7141a82-a1d4-4a46-b30d-440e2aaeb668","stop":1750252857950}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252857948,"uuid":"3a740740-278b-4437-ac18-04ce58652ac4","stop":1750252857950},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252857951,"uuid":"88f1cf0b-0efc-4760-a08f-0bfe44205040","stop":1750252858056}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252857950,"uuid":"3c0d76df-afb6-4027-bbb4-dee1ae3180f1","stop":1750252858056}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252857947,"uuid":"95d722c0-dab6-4a92-a472-0e376d1d5393","stop":1750252858056},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252858057,"name":"page.goto(/login/authorization)","uuid":"2b61362a-abc5-42d4-8cfd-fd70611bd123","stop":1750252859212},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252859213,"name":"locator.fill(!Test123456)","uuid":"ecf15946-033d-4caf-a36f-47c59339f403","stop":1750252859295},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252859296,"name":"locator.getByPlaceholder('Пароль').getAttribute","uuid":"e3364023-54b6-468e-afef-3f9451d945eb","stop":1750252859298},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252859299,"name":"expect.toBe","uuid":"ea21c62e-68d5-4599-b5a8-12515de0fea0","stop":1750252859299},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252859299,"name":"locator.getByAltText('показать пароль').click","uuid":"26efd31c-bd64-4f63-853c-23b3d694bb8e","stop":1750252859333},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252859334,"name":"locator.getByPlaceholder('Пароль').getAttribute","uuid":"8f45c341-00ac-4f94-a6b9-372ffd989ac7","stop":1750252859335},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252859335,"name":"expect.toBe","uuid":"b730230e-e3e5-47f4-9b29-bd6fa6c5e419","stop":1750252859336},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252859336,"name":"locator.getByAltText('показать пароль').click","uuid":"cb0e6ace-97cd-46c3-8793-e3ca6763e4f5","stop":1750252859365},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252859365,"name":"locator.getByPlaceholder('Пароль').getAttribute","uuid":"b1a19b26-557e-4bd6-af84-6fe8bb59d6c4","stop":1750252859366},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252859366,"name":"expect.toBe","uuid":"d90f90f8-2e27-4d5f-904f-8ae581b97f6a","stop":1750252859366},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252859367,"uuid":"ce6695e3-d97f-4684-a719-87ba5534151e","stop":1750252859367},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252859367,"uuid":"c1b4d27a-b41a-46fa-a6bb-c72f4841b568","stop":1750252859367}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252859367,"uuid":"7d9aa981-0822-4d00-97a5-f8e910f6ced9","stop":1750252859372}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.ui.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.ui.spec.ts > UI сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-1"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.ui.spec.ts"},{"name":"subSuite","value":"UI сценарии авторизации"}],"links":[],"start":1750252857947,"testCaseId":"b1726395bd827a3a21fe3c829a098be4","fullName":"ui/login/login.ui.spec.ts:7:7","stop":1750252859370} \ No newline at end of file diff --git a/allure-results/a83cba40-e123-4163-bc69-e2ad6645b289-result.json b/allure-results/a83cba40-e123-4163-bc69-e2ad6645b289-result.json new file mode 100644 index 0000000..4768546 --- /dev/null +++ b/allure-results/a83cba40-e123-4163-bc69-e2ad6645b289-result.json @@ -0,0 +1 @@ +{"uuid":"a83cba40-e123-4163-bc69-e2ad6645b289","name":"Неверный код подтверждения","historyId":"31f03826b2a8da254be42b2d49bc35f3:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253627415,"uuid":"3d19d2c6-e6f0-4a00-a070-23191484f524","stop":1750253627418}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253627415,"uuid":"0c321d47-94f8-41bd-be41-daef74d4d7a3","stop":1750253627420},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253627420,"uuid":"66a1f05a-8016-42e7-9899-7e57b28623b7","stop":1750253627543}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253627420,"uuid":"ea0702df-8717-4bed-bd7c-a9071a0cf6f9","stop":1750253627543}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253627414,"uuid":"57e1598a-f573-4104-be84-f24aedb33399","stop":1750253627543},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253627545,"name":"page.goto(/recoverpassword)","uuid":"e845a41c-df21-496c-9f6a-e6357f96ecd0","stop":1750253629263},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253629263,"name":"locator.fill(autotest@example.com)","uuid":"c27d742d-b81f-43d2-aab3-a0c0f5df8e78","stop":1750253629291},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253629292,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"60500660-0c92-494c-b7e5-5928dc36b480","stop":1750253629348},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253629349,"name":"expect.toHaveURL","uuid":"7256ff2d-c7a6-4041-bfff-aa0b53b63e2e","stop":1750253629477},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253629478,"name":"locator.count(input[type=\"text\"])","uuid":"ede7930a-fcff-4324-95a0-25c53f997601","stop":1750253629492},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253629494,"name":"locator.fill(6)","uuid":"5671ddda-0900-4be2-a978-dfcb8aeff808","stop":1750253629524},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253629525,"name":"locator.fill(5)","uuid":"e9d3f70e-5e1c-49dc-862f-bc0dfda73291","stop":1750253629535},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253629536,"name":"locator.fill(4)","uuid":"976aa6be-2689-4822-b9bd-44880d4bbe41","stop":1750253629545},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253629545,"name":"locator.fill(3)","uuid":"beb3cf23-d336-45db-a21f-6bf76a69e1ca","stop":1750253629555},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253629556,"name":"locator.fill(2)","uuid":"8a61e340-e51b-4977-aa5d-1dbd565f3f4a","stop":1750253629579},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253629581,"name":"locator.fill(1)","uuid":"95df5170-21f7-40ff-80de-0bd375fcb60f","stop":1750253629598},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253629599,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"424587cc-aae1-4e81-9cf9-7d46b110a70f","stop":1750253629653},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253629654,"name":"expect.toBeVisible","uuid":"64303273-15a4-4d20-8a9b-8ca0c951489a","stop":1750253629771},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253629772,"uuid":"93e9bd16-cc60-40ec-846e-57d7a24d2285","stop":1750253629772},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253629772,"uuid":"69127010-b834-4046-b85c-9a6c04e744fb","stop":1750253629772}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253629772,"uuid":"29ea35d2-0b40-4edb-82a8-d506a71f2647","stop":1750253629829}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-3"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"}],"links":[],"start":1750253627415,"testCaseId":"31f03826b2a8da254be42b2d49bc35f3","fullName":"ui/recovery/recover-negative.spec.ts:23:7","stop":1750253629829} \ No newline at end of file diff --git a/allure-results/a9f61035-e26d-4fe4-9c44-cbbd759639cc-result.json b/allure-results/a9f61035-e26d-4fe4-9c44-cbbd759639cc-result.json new file mode 100644 index 0000000..141c3a4 --- /dev/null +++ b/allure-results/a9f61035-e26d-4fe4-9c44-cbbd759639cc-result.json @@ -0,0 +1 @@ +{"uuid":"a9f61035-e26d-4fe4-9c44-cbbd759639cc","name":"Регистр в email (User@test.com ≠ user@test.com)","historyId":"cc4ad4b40ef726af11b2bd4f5523dbe0:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253591862,"uuid":"d4c45169-6704-43fc-a152-4ce66cce4a64","stop":1750253591865}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253591862,"uuid":"d67093bf-474d-4cec-9bdd-50ff580fabfe","stop":1750253591869},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253591869,"uuid":"4dcd29a7-f2e1-4a8d-9dd9-9d5e7a867924","stop":1750253592031}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253591869,"uuid":"a275d80e-3563-4de5-bf83-b39a0fc2c223","stop":1750253592031}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253591861,"uuid":"f30012c8-c4e2-4e01-a7f3-f642fbd55207","stop":1750253592031},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253592031,"name":"page.goto(/login/authorization)","uuid":"cfdb10ad-0e07-4d3a-b770-0ec753b2c05d","stop":1750253598202},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253598204,"name":"locator.fill(Autotest@Example.com)","uuid":"35af991a-51ee-4068-a316-aaace23e0bcc","stop":1750253598234},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253598235,"name":"locator.fill(!Test123456)","uuid":"a84fd977-bf22-47cd-8079-07eff2229139","stop":1750253598243},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253598244,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"4cb5374b-1787-4cb0-9a3a-127a273952bd","stop":1750253598313},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253598313,"name":"expect.toBeVisible","uuid":"0ee45a9d-f9a8-4957-aeca-0ae1abb041d0","stop":1750253598424},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253598424,"uuid":"1a7dcb54-6d02-4e57-ab86-5263122a2d0f","stop":1750253598424},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253598424,"uuid":"1ce23237-972f-4698-8bd2-05d493f97559","stop":1750253598424}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253598424,"uuid":"e7f039e8-b287-4d3e-854d-8e82184de444","stop":1750253598455}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"tag","value":"test.com"},{"name":"tag","value":"test.com)"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-1"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"}],"links":[],"start":1750253591861,"testCaseId":"cc4ad4b40ef726af11b2bd4f5523dbe0","fullName":"ui/login/login.negative.spec.ts:58:7","stop":1750253598453} \ No newline at end of file diff --git a/allure-results/a9fc77c6-85e0-4201-bbe5-ec86e1c78957-result.json b/allure-results/a9fc77c6-85e0-4201-bbe5-ec86e1c78957-result.json new file mode 100644 index 0000000..514149e --- /dev/null +++ b/allure-results/a9fc77c6-85e0-4201-bbe5-ec86e1c78957-result.json @@ -0,0 +1 @@ +{"uuid":"a9fc77c6-85e0-4201-bbe5-ec86e1c78957","name":"Некорректный формат email","historyId":"e5764a911de0175f8f7118313ae14544:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252842228,"uuid":"e3f6bceb-0edc-4fd3-b9b7-2716ad44212d","stop":1750252842241}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252842227,"uuid":"822dce14-9ca2-4696-b1c9-105280a98c40","stop":1750252842242},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252842242,"uuid":"5e2fdd61-4290-417c-b330-09bb19b1ce89","stop":1750252842384}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252842242,"uuid":"110f794f-8093-48bc-9ed5-e5d65bbb49bb","stop":1750252842384}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252842226,"uuid":"2278fb47-748a-4a5f-8bdd-2c18068662df","stop":1750252842385},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252842385,"name":"page.goto(/login/authorization)","uuid":"aa29b5d6-f326-485a-962e-5b83c786206a","stop":1750252843792},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252843793,"name":"locator.fill(invalid-email)","uuid":"15b663f8-e6d2-4243-9e17-661cdec11106","stop":1750252843833},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252843834,"name":"locator.fill(anyPassword123)","uuid":"837cde1f-6517-4e4e-b8f3-33839f5d0690","stop":1750252843841},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252843842,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"43bb3df1-d6b4-4003-a392-6a0ddb153c6b","stop":1750252843922},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252843923,"name":"expect.toBeVisible","uuid":"ee5557e6-907f-4589-a25f-8f8b80f4f5d6","stop":1750252843929},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252843929,"uuid":"34399b20-36dd-4e5a-8eac-daced1d76115","stop":1750252843929},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252843929,"uuid":"4ac54053-d2b2-4461-a08a-861672fbc8cf","stop":1750252843929}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252843929,"uuid":"788381ae-4c32-4fb8-bc3d-ac317630cb4e","stop":1750252843936}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-3"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"}],"links":[],"start":1750252842226,"testCaseId":"e5764a911de0175f8f7118313ae14544","fullName":"ui/login/login.negative.spec.ts:46:7","stop":1750252843934} \ No newline at end of file diff --git a/allure-results/aa69f634-88a4-4c4d-a8c6-606b840685ae-result.json b/allure-results/aa69f634-88a4-4c4d-a8c6-606b840685ae-result.json new file mode 100644 index 0000000..d1f7dbf --- /dev/null +++ b/allure-results/aa69f634-88a4-4c4d-a8c6-606b840685ae-result.json @@ -0,0 +1 @@ +{"uuid":"aa69f634-88a4-4c4d-a8c6-606b840685ae","name":"has title","historyId":"3a2a809b453af4fd564578d1a27f3e45:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserType.launch","start":1750253539588,"uuid":"580f53a1-f94e-4204-8de5-89a66bf38d64","stop":1750253539894}],"attachments":[],"parameters":[],"name":"fixture: browser","start":1750253539587,"uuid":"8ed9da56-2dad-43dc-947e-ca9df39ed4ad","stop":1750253539894},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253539900,"uuid":"da0f2231-7b00-496e-9cca-b3c6d54e1796","stop":1750253539926}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253539895,"uuid":"aa54774c-1096-4699-9277-1f2af9ef9647","stop":1750253539973},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253539982,"uuid":"23660f59-d28c-4b28-a68b-db4deb393965","stop":1750253540164}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253539973,"uuid":"a66df76d-f121-4b85-b404-b90ab1f00cf7","stop":1750253540164}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253539580,"uuid":"3b9ac281-4dcf-4db2-b62c-7eb7e9373eb0","stop":1750253540164},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253540167,"name":"page.goto(https://playwright.dev/)","uuid":"0165972e-95e0-4fbf-8cd2-fa96a02b1ac7","stop":1750253541729},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253541731,"name":"expect.toHaveTitle","uuid":"a2fb5a9e-3ceb-4fff-abc6-2df6fefac2f5","stop":1750253541765},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253541766,"uuid":"43209217-fea9-4c05-a51f-56662b7ea62d","stop":1750253541766},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253541766,"uuid":"9427e4df-c1d7-4d06-9813-f87ef0b80665","stop":1750253541766}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253541765,"uuid":"65c2d915-51cd-447d-8981-1718087129fc","stop":1750253541838}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > chromium > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"example.spec.ts"}],"links":[],"start":1750253539581,"testCaseId":"3a2a809b453af4fd564578d1a27f3e45","fullName":"example.spec.ts:3:5","stop":1750253541528} \ No newline at end of file diff --git a/allure-results/abc2e8cf-321a-4595-aa4d-b5086838a108-result.json b/allure-results/abc2e8cf-321a-4595-aa4d-b5086838a108-result.json new file mode 100644 index 0000000..fd83874 --- /dev/null +++ b/allure-results/abc2e8cf-321a-4595-aa4d-b5086838a108-result.json @@ -0,0 +1 @@ +{"uuid":"abc2e8cf-321a-4595-aa4d-b5086838a108","name":"Некорректное имя и фамилия (слишком длинные)","historyId":"7134a02a04b606099de5c920fb62990a:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253604408,"uuid":"0352e9bf-5caa-44a5-bd16-a275a999f74f","stop":1750253604410}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253604408,"uuid":"f450350a-ef80-4580-abf2-445aedfdd190","stop":1750253604413},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253604414,"uuid":"a2094ea3-12b4-4ef1-871a-e5d130244e9b","stop":1750253604618}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253604413,"uuid":"52e0ec72-2ae2-403e-9fda-d3075b467b91","stop":1750253604618}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253604407,"uuid":"21a39e21-3ff3-40e9-ad37-a6ff22390a16","stop":1750253604618},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253604622,"name":"page.goto(/login/registration)","uuid":"6bc76ac3-e83e-4ccc-9bf4-cf0ba5955d07","stop":1750253611492},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253611496,"name":"locator.fill(ААААААААААААААААААААААААААААААААААААААААААААААААААА)","uuid":"1c8b6324-d8be-4b7b-b6e9-95c536854ee7","stop":1750253611595},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253611596,"name":"locator.fill(БББББББББББББББББББББББББББББББББББББББББББББББББББ)","uuid":"908a257e-9a6c-4a55-ac65-50e94e8e64f7","stop":1750253611639},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253611642,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"328a3b09-02ba-4751-b15d-2a595c7eb37c","stop":1750253611733},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253611734,"name":"expect.toBeVisible","uuid":"15d3e10e-2f16-4b10-ada1-9866a1ca0c35","stop":1750253611747},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253611748,"name":"expect.toBeVisible","uuid":"7cff1dbf-0c57-4474-afbd-79b5c62f3fed","stop":1750253611760},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253611761,"uuid":"76a2573d-77a4-43c1-88f6-550c763c3d25","stop":1750253611761},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253611761,"uuid":"7e078cf2-bd65-4063-b55e-39f52b30b0c8","stop":1750253611761}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253611761,"uuid":"cb4ffa99-a78e-4075-a31f-108a8e6086de","stop":1750253611804}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-3"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750253604406,"testCaseId":"7134a02a04b606099de5c920fb62990a","fullName":"ui/registration/register.negative.spec.ts:16:7","stop":1750253611801} \ No newline at end of file diff --git a/allure-results/ac8d4bf1-ff55-4701-889a-a0525da563bf-result.json b/allure-results/ac8d4bf1-ff55-4701-889a-a0525da563bf-result.json new file mode 100644 index 0000000..70754d2 --- /dev/null +++ b/allure-results/ac8d4bf1-ff55-4701-889a-a0525da563bf-result.json @@ -0,0 +1 @@ +{"uuid":"ac8d4bf1-ff55-4701-889a-a0525da563bf","name":"Пустое поле \"Повторите пароль\"","historyId":"e6d2fb91f0b85b95c3962ffc860dddd7:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253562566,"uuid":"33a16c7f-a176-40aa-8371-4aa6aab3849d","stop":1750253562567}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253562565,"uuid":"ba7785de-c943-4474-a835-c2aecdb12dec","stop":1750253562568},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253562568,"uuid":"4f18f2d8-1106-4fbe-bcf6-3eeaa425aa07","stop":1750253562602}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253562568,"uuid":"4f828459-e11b-433c-8021-2dcdcae13096","stop":1750253562602}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253562565,"uuid":"52420737-aeb7-4f21-ac18-fb92a8fd88ad","stop":1750253562602},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253562603,"name":"page.goto(/recoverpassword)","uuid":"e36b5dff-3791-4ac3-8271-40c038a8ba63","stop":1750253563322},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253563322,"name":"locator.fill(autotest@example.com)","uuid":"35a36c60-d5e7-4487-bf47-dba421c50b63","stop":1750253563343},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253563343,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"3a51a54f-0603-40f1-8a34-24e83e9de1bf","stop":1750253563381},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253563382,"name":"locator.count(input[type=\"text\"])","uuid":"0e2a4ffd-50da-4cf8-9da3-f29f56235b4a","stop":1750253563384},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253563385,"name":"locator.fill(0)","uuid":"98291671-1eb0-4642-a19c-f6b87d67e1da","stop":1750253563486},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253563486,"name":"locator.fill(0)","uuid":"5598f06a-5820-426a-8719-162ab4f4816d","stop":1750253563490},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253563490,"name":"locator.fill(0)","uuid":"b7bca627-2888-4fcb-ba08-2a83c7a54810","stop":1750253563496},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253563496,"name":"locator.fill(0)","uuid":"e9ca4080-41ec-4839-ae69-ee02f4815b02","stop":1750253563501},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253563501,"name":"locator.fill(0)","uuid":"2313d70c-0599-40ed-9baf-8c841507ad02","stop":1750253563505},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253563505,"name":"locator.fill(0)","uuid":"8a470790-b204-448f-bf16-9db2be595c52","stop":1750253563510},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253563510,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"aed83c4c-5d0a-48b2-a7f7-71e78bf09605","stop":1750253563550},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253563550,"name":"locator.fill(!Test123456)","uuid":"e363f445-56c0-4037-b3db-0c8cecb5d599","stop":1750253563629},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253563629,"name":"locator.fill()","uuid":"c4280609-a6bc-4803-be61-f0bd73e6483e","stop":1750253563633},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253563633,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"8b855ee1-fd32-488c-9356-07e4097f2baf","stop":1750253563666},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253563666,"name":"expect.toBeVisible","uuid":"d7911dd0-7428-4a97-babc-8238999ac07d","stop":1750253563671},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253563671,"uuid":"b65527a5-9a05-468c-b6e8-e1c5816bb46d","stop":1750253563671},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253563671,"uuid":"5fa1852d-b614-4df9-9b2f-8c3cad5b13d9","stop":1750253563671}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253563671,"uuid":"f870ed0a-35d4-4ff6-8468-d66ba1b5634c","stop":1750253564292}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"}],"links":[],"start":1750253562565,"testCaseId":"e6d2fb91f0b85b95c3962ffc860dddd7","fullName":"ui/recovery/recover-negative.spec.ts:45:7","stop":1750253564290} \ No newline at end of file diff --git a/allure-results/ad9eb640-035f-4004-a647-a3e0695c9067-result.json b/allure-results/ad9eb640-035f-4004-a647-a3e0695c9067-result.json new file mode 100644 index 0000000..ba52b9f --- /dev/null +++ b/allure-results/ad9eb640-035f-4004-a647-a3e0695c9067-result.json @@ -0,0 +1 @@ +{"uuid":"ad9eb640-035f-4004-a647-a3e0695c9067","name":"Некорректный новый пароль","historyId":"18246cf63350a71f5b46012e257bafcf:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252814583,"uuid":"bcee0e88-8c07-4139-88fc-523b31563546","stop":1750252814584}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252814583,"uuid":"d9eff65c-e765-4ab7-964b-2b86b1f46538","stop":1750252814584},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252814585,"uuid":"05999467-281b-482e-91ea-2e877fac4ecc","stop":1750252814619}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252814585,"uuid":"3288359c-010b-478f-8807-f96dacd2a8c1","stop":1750252814619}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252814582,"uuid":"91fb3342-ef15-443d-a93a-993e7888ec1d","stop":1750252814619},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252814620,"name":"page.goto(/recoverpassword)","uuid":"a45168db-6751-4a18-9f91-0ade1116af9c","stop":1750252815366},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252815367,"name":"locator.fill(autotest@example.com)","uuid":"32b7aa50-9125-4817-ba73-d4bd59178ae8","stop":1750252815399},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252815399,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"ff1c9060-88a6-44de-9283-348f78aae144","stop":1750252815423},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252815423,"name":"locator.count(input[type=\"text\"])","uuid":"7c7af2d6-127f-4627-a5d7-e55e03477903","stop":1750252815424},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252815425,"name":"locator.fill(0)","uuid":"243be4c0-1bd5-402b-804f-a84db856c06a","stop":1750252822761},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252822762,"name":"locator.fill(0)","uuid":"31962fd7-ebb6-4dbd-b662-1bea83fd823a","stop":1750252822765},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252822766,"name":"locator.fill(0)","uuid":"4f01ae17-b4e0-4dce-ad0f-cf2c731c6340","stop":1750252822770},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252822771,"name":"locator.fill(0)","uuid":"d73ebfb3-50cc-4c25-a955-eccda7c06a16","stop":1750252822775},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252822776,"name":"locator.fill(0)","uuid":"c90bd81c-e900-48fc-8568-adb6756d45c4","stop":1750252822781},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252822782,"name":"locator.fill(0)","uuid":"08075aa2-258c-4435-94f1-05ef9d0f3e5d","stop":1750252822787},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252822788,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"51e91d2c-226c-44ea-b882-f06a21e30f92","stop":1750252822826},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252822827,"name":"locator.fill(123)","uuid":"02abf5ce-f1c2-4c75-93f9-420d59e63fca","stop":1750252824624},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252824626,"name":"locator.fill(123)","uuid":"b2a0706e-e8c1-48d7-8f7e-2b2851d32a2b","stop":1750252824634},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252824637,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"995581ef-e99a-484d-8bdd-78f6d7ce4b1b","stop":1750252824676},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252824676,"name":"expect.toBeVisible","uuid":"92c93163-bd6e-415e-a9c7-7661c4356226","stop":1750252824679},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252824680,"uuid":"8999f00f-7ccd-46e8-89b8-5edb6eda7cd5","stop":1750252824680},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252824680,"uuid":"f3386767-a55a-40ab-aa56-52d87f5c38f9","stop":1750252824680}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252824679,"uuid":"1c90884d-c978-4201-ae52-8d16c1aba88e","stop":1750252824689}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"}],"links":[],"start":1750252814582,"testCaseId":"18246cf63350a71f5b46012e257bafcf","fullName":"ui/recovery/recover-negative.spec.ts:34:7","stop":1750252824686} \ No newline at end of file diff --git a/allure-results/aed327f6-8fcd-44c3-9c90-2663887251b7-result.json b/allure-results/aed327f6-8fcd-44c3-9c90-2663887251b7-result.json new file mode 100644 index 0000000..49fb450 --- /dev/null +++ b/allure-results/aed327f6-8fcd-44c3-9c90-2663887251b7-result.json @@ -0,0 +1 @@ +{"uuid":"aed327f6-8fcd-44c3-9c90-2663887251b7","name":"Переход по ссылке \"Забыли пароль?\"","historyId":"91fcabcb669557e4ddb559c077420e45:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserType.launch","start":1750253470952,"uuid":"50629263-f7d9-4287-8fd4-6ade51d71f46","stop":1750253471347}],"attachments":[],"parameters":[],"name":"fixture: browser","start":1750253470949,"uuid":"baeb3547-5d9e-463c-8cbb-6118bded8625","stop":1750253471348},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253471350,"uuid":"5c0c96e4-1558-460c-bcd4-b2efe716c3ae","stop":1750253471365}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253471349,"uuid":"fad7bf35-b13b-4fe3-92d1-e633f03db1b8","stop":1750253471395},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253471397,"uuid":"5a098fc1-d88f-4474-a4f1-6adf59823393","stop":1750253471643}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253471396,"uuid":"64751d54-bba9-4062-8840-30c07108e69a","stop":1750253471643}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253470946,"uuid":"8dd98a46-7032-4b1b-8e81-3bf4bd1e76ab","stop":1750253471643},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253471645,"name":"page.goto(/login/authorization)","uuid":"2305e845-650f-4440-b470-916f4518a48e","stop":1750253472728},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253472730,"name":"locator.getByText('Забыли пароль?').click","uuid":"ef0c64c2-0ee8-4761-b99d-02f98e6570f4","stop":1750253472842},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253472845,"name":"expect.toHaveURL","uuid":"01b53eec-af12-4ff8-9975-d3fce0bb2987","stop":1750253472858},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253472858,"name":"expect.toBeVisible","uuid":"913c3053-107a-490f-a206-79e785d1a4dc","stop":1750253472863},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253472864,"uuid":"b59239f4-df56-48b3-94d0-fef212779d42","stop":1750253472864},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253472864,"uuid":"55636f9c-a2e2-4722-b03b-7b9cb84b3560","stop":1750253472864}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253472864,"uuid":"2f4fd760-8880-44f8-9ce9-119e3cbec3d8","stop":1750253478043}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"}],"links":[],"start":1750253470949,"testCaseId":"91fcabcb669557e4ddb559c077420e45","fullName":"ui/login/login.link.spec.ts:6:5","stop":1750253477644} \ No newline at end of file diff --git a/allure-results/b236e994-2b5f-469e-a59f-a03e98d0eb89-result.json b/allure-results/b236e994-2b5f-469e-a59f-a03e98d0eb89-result.json new file mode 100644 index 0000000..ae83134 --- /dev/null +++ b/allure-results/b236e994-2b5f-469e-a59f-a03e98d0eb89-result.json @@ -0,0 +1 @@ +{"uuid":"b236e994-2b5f-469e-a59f-a03e98d0eb89","name":"Несуществующий email","historyId":"69b9236bee03ff0034bfbd5addc25f93:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserType.launch","start":1750252855707,"uuid":"975d826f-bd61-47bb-afc8-328c02ca9912","stop":1750252855851}],"attachments":[],"parameters":[],"name":"fixture: browser","start":1750252855705,"uuid":"6451b2fe-8cf5-4895-bc56-cf67c0e873e5","stop":1750252855851},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252855853,"uuid":"f9f62fec-f105-4684-a062-948320dff5f7","stop":1750252855890}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252855852,"uuid":"81b1bc75-0397-48df-965a-69fe03711bd4","stop":1750252855891},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252855892,"uuid":"6d29302f-d50b-46d8-8519-7401d61c9fcd","stop":1750252856110}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252855891,"uuid":"a0b15fcb-263c-4707-bab2-4f699d422b9c","stop":1750252856110}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252855701,"uuid":"126bc6f9-c76b-413f-9e5e-a2ad00e1b963","stop":1750252856110},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252856115,"name":"page.goto(/login/authorization)","uuid":"f2237c69-910c-4fec-9494-ea5e2b16c807","stop":1750252857450},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252857451,"name":"locator.fill(wrong@example.com)","uuid":"2f0c089b-274b-4d00-a929-b51d10847302","stop":1750252857490},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252857491,"name":"locator.fill(anyPassword123)","uuid":"3808c3b0-3558-4477-8467-057d8d487df8","stop":1750252857504},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252857506,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"695307cc-40f4-4261-bf00-07bad12eae87","stop":1750252857555},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252857556,"name":"expect.toBeVisible","uuid":"4744f117-9ec2-4ee2-bcf9-9693a9bc8449","stop":1750252857672},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252857673,"uuid":"b90e7fd4-fbb8-42ef-ad48-83ae4b600492","stop":1750252857673},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252857673,"uuid":"d13336ea-c86b-433b-8683-b0f667436c46","stop":1750252857673}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252857672,"uuid":"24dbbae0-2c77-4863-b204-f4fa86449310","stop":1750252857691}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-3"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"}],"links":[],"start":1750252855698,"testCaseId":"69b9236bee03ff0034bfbd5addc25f93","fullName":"ui/login/login.negative.spec.ts:17:7","stop":1750252857537} \ No newline at end of file diff --git a/allure-results/b4137f48-4d24-439c-be4f-e7293fa6eca2-result.json b/allure-results/b4137f48-4d24-439c-be4f-e7293fa6eca2-result.json new file mode 100644 index 0000000..c52b9a3 --- /dev/null +++ b/allure-results/b4137f48-4d24-439c-be4f-e7293fa6eca2-result.json @@ -0,0 +1 @@ +{"uuid":"b4137f48-4d24-439c-be4f-e7293fa6eca2","name":"Некорректный email формат","historyId":"de8c598c53adc6e2133478f1b9141597:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253631624,"uuid":"9059c937-484b-4b84-a8aa-addfe975443a","stop":1750253631626}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253631624,"uuid":"e9c6c5ec-1084-4426-953e-ba4158212d2f","stop":1750253631627},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253631628,"uuid":"b8147c2a-5eb9-448c-9b73-3cb5d86107e6","stop":1750253631740}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253631627,"uuid":"109c4fff-13ea-4f4b-a421-d676730b0437","stop":1750253631740}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253631623,"uuid":"b5e01d6b-9484-4024-bcb4-f434d3233bdf","stop":1750253631740},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253631740,"name":"page.goto(/login/registration)","uuid":"c6ff109a-f3d4-4cb7-a4fe-4625d9aae6f7","stop":1750253632827},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253632827,"name":"locator.fill(invalid-email)","uuid":"ecbc59bb-84e3-4391-ad67-95ae0d029a0a","stop":1750253632893},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253632893,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"961b7ebb-6aac-4f46-a9d1-dd9d394e4eef","stop":1750253633165},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253633165,"name":"expect.toBeVisible","uuid":"3b422c87-82ed-4008-9366-612d4814e0c5","stop":1750253633174},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253633175,"uuid":"c541fc64-d92c-41e7-a9e9-22f2021cff83","stop":1750253633175},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253633175,"uuid":"0ca9a746-3c1e-433d-8c4e-64a58f91f5d4","stop":1750253633175}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253633175,"uuid":"51c405be-2ba2-4525-befc-680c0f87d733","stop":1750253633318}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-3"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750253631623,"testCaseId":"de8c598c53adc6e2133478f1b9141597","fullName":"ui/registration/register.negative.spec.ts:28:7","stop":1750253633317} \ No newline at end of file diff --git a/allure-results/b5288439-5483-4e41-8ba9-42dd0bd67731-result.json b/allure-results/b5288439-5483-4e41-8ba9-42dd0bd67731-result.json new file mode 100644 index 0000000..138335f --- /dev/null +++ b/allure-results/b5288439-5483-4e41-8ba9-42dd0bd67731-result.json @@ -0,0 +1 @@ +{"uuid":"b5288439-5483-4e41-8ba9-42dd0bd67731","name":"Некорректный email (формат)","historyId":"d776d5fb9c918a79827aea417bdc449a:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253625779,"uuid":"2917e398-87fe-456e-86cc-08bf7b91f8de","stop":1750253625781}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253625778,"uuid":"b3a2e377-25e4-41e1-8990-bf5d4b30c6fe","stop":1750253625782},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253625783,"uuid":"27227c6f-d57e-493a-ab97-587ce70affc6","stop":1750253625918}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253625782,"uuid":"9ec7af2e-84c2-481b-af57-26d7eb947d6f","stop":1750253625918}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253625776,"uuid":"6f35c34c-9dcf-4c93-9a02-899d7a795976","stop":1750253625918},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253625920,"name":"page.goto(/recoverpassword)","uuid":"15ed73b2-f196-4022-be64-51c79d42703f","stop":1750253626974},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253626975,"name":"locator.fill(invalid-email)","uuid":"58aa0273-858f-447d-8ad3-e89297dc967b","stop":1750253627031},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253627032,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"304c6e38-bd9a-4587-9e5f-6da63707fbdf","stop":1750253627224},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253627225,"name":"expect.toBeVisible","uuid":"d77f6c2f-51b9-4f8e-b92b-85545e5acb7a","stop":1750253627240},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253627241,"uuid":"32d2cb61-2104-45f4-96f0-ff3ccd7097b2","stop":1750253627241},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253627241,"uuid":"72364fcc-f1c5-48c8-bc0b-7e7b4650609b","stop":1750253627241}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253627240,"uuid":"3dbc8bef-53e7-4ee9-84b7-0baff1dea317","stop":1750253628903}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-0"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"}],"links":[],"start":1750253625776,"testCaseId":"d776d5fb9c918a79827aea417bdc449a","fullName":"ui/recovery/recover-negative.spec.ts:7:7","stop":1750253628901} \ No newline at end of file diff --git a/allure-results/b597280e-c996-44c4-aabc-6074c6de15aa-result.json b/allure-results/b597280e-c996-44c4-aabc-6074c6de15aa-result.json new file mode 100644 index 0000000..7fa8253 --- /dev/null +++ b/allure-results/b597280e-c996-44c4-aabc-6074c6de15aa-result.json @@ -0,0 +1 @@ +{"uuid":"b597280e-c996-44c4-aabc-6074c6de15aa","name":"Слишком длинное название организации","historyId":"26486147b8778ca2341563049d2a3728:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253577609,"uuid":"00c6d7e1-2253-4289-8858-6118e38f243e","stop":1750253577613}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253577608,"uuid":"71c25baa-cf35-4f90-9e75-726ef947a4b2","stop":1750253577616},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253577617,"uuid":"950864e6-c449-4996-8bb1-58020e1578c8","stop":1750253577669}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253577617,"uuid":"31918f50-761a-44a4-be22-056618f968ef","stop":1750253577669}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253577607,"uuid":"32d3e27b-15e0-43f3-b0ea-9588ab36355f","stop":1750253577669},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253577670,"name":"page.goto(/login/registration)","uuid":"88386259-4245-4ea8-be07-bacabe794c07","stop":1750253578807},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253578809,"name":"locator.fill(Иван)","uuid":"d65b514a-1509-4c1e-9310-a65b9efd4bbc","stop":1750253578834},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253578834,"name":"locator.fill(Иванов)","uuid":"990260fc-125b-4491-b2a4-ae52ce3d7a57","stop":1750253578846},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253578846,"name":"locator.getByPlaceholder('Учёное звание*').click","uuid":"1a6f8555-c4c2-4c77-9ebf-dcd540aed77b","stop":1750253578889},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253578889,"name":"locator.click(li >> internal:has-text=\"Доцент\"i)","uuid":"05b5b175-38a9-4815-91c5-c0620e7ff2d6","stop":1750253579053},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253579053,"name":"locator.getByPlaceholder('Учёная степень*').click","uuid":"f2604b57-f8da-4805-8b27-0d93af59f2fb","stop":1750253579432},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253579433,"name":"locator.click(li >> internal:has-text=\"Кандидат наук\"i)","uuid":"de1cecdd-339b-4856-a0ac-7ded8de2540f","stop":1750253579468},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253579468,"name":"locator.fill(Преподаватель)","uuid":"837e0979-5f49-44cf-80bd-91c3c704da73","stop":1750253579475},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253579476,"name":"locator.fill(ООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООО)","uuid":"a463c6f2-5d8f-43ed-9ee8-283a98ebada8","stop":1750253579487},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253579488,"name":"locator.fill(test1750253578807@example.com)","uuid":"d947337a-6dec-4578-a5e2-b0a23a641322","stop":1750253579501},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253579502,"name":"locator.fill(+79990726629)","uuid":"6de3f488-67fb-4a90-aa30-86d689529901","stop":1750253579510},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253579511,"name":"locator.fill(!Test123)","uuid":"0b648df8-db34-430f-9b9f-8d53ab0047e4","stop":1750253579522},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253579523,"name":"locator.fill(!Test123)","uuid":"4ae22ece-b37f-4e0c-bbbf-584d6efc4a2f","stop":1750253579531},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253579531,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"2e70a9b2-621a-4888-adb1-6345d3dc2166","stop":1750253579567},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253579567,"name":"expect.toBeVisible","uuid":"0ef2d085-47d5-4099-917f-17634565ce1a","stop":1750253579674},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253579675,"uuid":"3437022b-95dd-4bce-8d1a-f5791eb7a36c","stop":1750253579675},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253579676,"uuid":"f51404fc-b54e-4313-bcc2-b2a7d612c486","stop":1750253579676}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253579675,"uuid":"114e43e7-7fb3-4117-9166-3893d68ecfa5","stop":1750253579832}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750253577607,"testCaseId":"26486147b8778ca2341563049d2a3728","fullName":"ui/registration/register.negative.spec.ts:48:7","stop":1750253579829} \ No newline at end of file diff --git a/allure-results/b5dc58f7-07f2-4069-899f-696854359f05-attachment.zip b/allure-results/b5dc58f7-07f2-4069-899f-696854359f05-attachment.zip new file mode 100644 index 0000000..75e1b21 Binary files /dev/null and b/allure-results/b5dc58f7-07f2-4069-899f-696854359f05-attachment.zip differ diff --git a/allure-results/b6d842dd-b8f4-49b4-b617-3767caaa53f2-result.json b/allure-results/b6d842dd-b8f4-49b4-b617-3767caaa53f2-result.json new file mode 100644 index 0000000..9f92750 --- /dev/null +++ b/allure-results/b6d842dd-b8f4-49b4-b617-3767caaa53f2-result.json @@ -0,0 +1 @@ +{"uuid":"b6d842dd-b8f4-49b4-b617-3767caaa53f2","name":"Несуществующий email","historyId":"c118be77fa2af6f0e0052ec7489ba66c:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253482992,"uuid":"497ac97f-5e41-4343-8397-63bc0dbb44ec","stop":1750253482993}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253482991,"uuid":"cbcb39d6-0a5a-443b-917c-1e33d9a19f8b","stop":1750253482995},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253482995,"uuid":"6249c33f-9cb2-43ff-9b29-734995322cba","stop":1750253483029}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253482995,"uuid":"f5bbd793-0a89-472b-a9e4-597c4de058c2","stop":1750253483029}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253482991,"uuid":"11e3675f-7699-43eb-ad89-78c4ff0d96fc","stop":1750253483030},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253483031,"name":"page.goto(/recoverpassword)","uuid":"a54e7328-b0f7-46c2-a6dd-89e3dad07f4a","stop":1750253489019},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253489021,"name":"locator.fill(nobody@example.com)","uuid":"6527d91e-2150-4c3d-80b5-9dd6cda20c7a","stop":1750253489041},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253489041,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"cc01a536-21ae-4f6a-aade-7898b5cd7299","stop":1750253489069},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253489069,"name":"expect.toBeVisible","uuid":"fb36e66e-5a30-44c6-bc6b-d48a88c1151d","stop":1750253489176},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253489176,"uuid":"e23ea2cd-7b57-4886-b7c6-e94cee0724fc","stop":1750253489176},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253489176,"uuid":"7a3f0a9c-90eb-42f6-aa93-c612de425adf","stop":1750253489176}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253489176,"uuid":"317f452e-0bba-461e-ac1c-0727ea9f888f","stop":1750253489851}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"}],"links":[],"start":1750253482991,"testCaseId":"c118be77fa2af6f0e0052ec7489ba66c","fullName":"ui/recovery/recover-negative.spec.ts:15:7","stop":1750253489850} \ No newline at end of file diff --git a/allure-results/b76a56c5-e324-4d41-8b18-65bafe627a65-result.json b/allure-results/b76a56c5-e324-4d41-8b18-65bafe627a65-result.json new file mode 100644 index 0000000..5633da5 --- /dev/null +++ b/allure-results/b76a56c5-e324-4d41-8b18-65bafe627a65-result.json @@ -0,0 +1 @@ +{"uuid":"b76a56c5-e324-4d41-8b18-65bafe627a65","name":"Успешная регистрация нового пользователя","historyId":"3562648cd3231e14b42a7151c17c62aa:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253633098,"uuid":"19338213-1f7e-49bd-b091-1f2b24190577","stop":1750253633100}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253633098,"uuid":"9e6ef7c4-c15f-4dc6-8d9a-3cdfd8811c76","stop":1750253633102},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253633103,"uuid":"afa2f78c-1362-4615-9812-a8b2c9f4dfc6","stop":1750253633218}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253633102,"uuid":"d704410e-488d-4dbd-93c8-57692854012f","stop":1750253633218}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253633096,"uuid":"55a4cd24-e12f-4a49-bf83-732b2a45bbe6","stop":1750253633218},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253633219,"name":"page.goto(/login/registration)","uuid":"e300a0e1-5d95-429b-8efc-dfdd6c981fc6","stop":1750253634657},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253634658,"name":"locator.fill(Иван)","uuid":"5da4df44-f64a-48cb-8e2c-c9bdeb461637","stop":1750253634700},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253634700,"name":"locator.fill(Тестов)","uuid":"991f753b-dad4-447d-a4cc-fd8e58c9d38c","stop":1750253634711},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253634711,"name":"locator.fill(Александрович)","uuid":"3bf9b707-b00a-49a0-8855-4329d8379e0d","stop":1750253634721},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253634722,"name":"locator.getByPlaceholder('Учёное звание*').click","uuid":"481eff32-9142-4547-aefc-0c3e2e8fff6c","stop":1750253634993},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253634994,"name":"locator.click(li >> internal:has-text=\"Доцент\"i)","uuid":"ceb041d1-3156-4579-a407-9ef63ac1c29f","stop":1750253635392},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253635392,"name":"locator.getByPlaceholder('Учёная степень*').click","uuid":"db8320c4-cd56-4554-8ce4-c05e86d616e7","stop":1750253635790},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253635791,"name":"locator.click(li >> internal:has-text=\"Кандидат наук\"i)","uuid":"b3af852c-7157-4197-9edc-19c074740081","stop":1750253636178},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253636178,"name":"locator.fill(Преподаватель)","uuid":"6772a145-678d-470a-ae91-77f3e3115921","stop":1750253636187},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253636187,"name":"locator.fill(ЮФУ)","uuid":"adcc839e-ca16-4778-80d7-f9a225ee59e5","stop":1750253636196},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253636196,"name":"locator.fill(autotest22822@example.com)","uuid":"e54f209c-ea25-4029-ba21-3343a115b4e6","stop":1750253636205},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253636206,"name":"locator.fill(+79000022822)","uuid":"ce67a57f-a6df-4a90-9c79-0ac0d325014c","stop":1750253636228},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253636229,"name":"locator.fill(!Test123456)","uuid":"cb8dada2-6c26-4d01-9236-1ecc87860bc4","stop":1750253636238},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253636238,"name":"locator.fill(!Test123456)","uuid":"b77524c4-35e4-4f16-a506-35ff04dd788e","stop":1750253636246},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253636247,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"4a25090c-730d-4792-b044-49b1abc2cc45","stop":1750253636294},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253636295,"name":"expect.toHaveURL","uuid":"a95b7316-4ef0-4a5b-9812-c2fe6f07caf3","stop":1750253636401},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253636401,"name":"expect.toBeVisible","uuid":"952475cd-e3c5-45c7-9c61-4b61338be353","stop":1750253636404},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253636404,"uuid":"4200fd6d-8edf-416e-adf6-1e04520c6a84","stop":1750253636404},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253636404,"uuid":"a5442cc3-0e77-4f0b-97ff-5828a2ecb384","stop":1750253636404}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253636404,"uuid":"4c01805a-bcb9-4d79-886b-bc10699254e3","stop":1750253636457}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.spec.ts"},{"name":"titlePath","value":" > webkit > ui/registration/register.spec.ts > Позитивные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-2"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/registration/register.spec.ts"},{"name":"subSuite","value":"Позитивные сценарии регистрации"}],"links":[],"start":1750253633097,"testCaseId":"3562648cd3231e14b42a7151c17c62aa","fullName":"ui/registration/register.spec.ts:6:7","stop":1750253636457} \ No newline at end of file diff --git a/allure-results/b7926867-d3a9-4e44-95b0-d41ecb867fda-result.json b/allure-results/b7926867-d3a9-4e44-95b0-d41ecb867fda-result.json new file mode 100644 index 0000000..651bb88 --- /dev/null +++ b/allure-results/b7926867-d3a9-4e44-95b0-d41ecb867fda-result.json @@ -0,0 +1 @@ +{"uuid":"b7926867-d3a9-4e44-95b0-d41ecb867fda","name":"Оба поля пустые","historyId":"58990385f74407307e4ace7ad02abf05:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253542028,"uuid":"1887d07d-f3b3-4fe8-a8f0-b98858abe8a2","stop":1750253542029}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253542027,"uuid":"8a052e22-6a6f-4bca-8f24-ae1326041785","stop":1750253542031},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253542032,"uuid":"818eecdd-ca81-4929-a7c1-78b461b5f9fd","stop":1750253542069}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253542032,"uuid":"f93be8a6-4930-411a-a26a-079a5abe2b31","stop":1750253542070}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253542026,"uuid":"6349944c-6242-49bd-943e-e317c0242df9","stop":1750253542070},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253542070,"name":"page.goto(/login/authorization)","uuid":"ea42aacd-f76c-429c-92fe-64175f80f7ba","stop":1750253543087},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253543087,"name":"locator.fill()","uuid":"b0dc6efa-c47d-4396-b6c5-63d20f4c09b5","stop":1750253543119},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253543119,"name":"locator.fill()","uuid":"7bd404dd-a30f-481f-8448-e9c29f9df92f","stop":1750253543154},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253543155,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"1f23f21d-67e6-43dd-8c7a-45c5e809550c","stop":1750253543187},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253543187,"name":"expect.toBeVisible","uuid":"b260de59-37e0-440f-be6a-1d578f7473e5","stop":1750253543191},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253543191,"name":"expect.toBeVisible","uuid":"d3185995-acbd-4bbf-a487-d99a7f18ba2a","stop":1750253543193},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253543194,"uuid":"be59e85d-4ccd-4af5-917e-c2316e2f848c","stop":1750253543194},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253543195,"uuid":"ef7e40db-9db6-4ecc-a8e1-9c711998174d","stop":1750253543195}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253543194,"uuid":"67773ad9-8414-4fb1-9340-9ff06f69f78d","stop":1750253543996}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"}],"links":[],"start":1750253542026,"testCaseId":"58990385f74407307e4ace7ad02abf05","fullName":"ui/login/login.negative.spec.ts:27:7","stop":1750253543994} \ No newline at end of file diff --git a/allure-results/b8eebefc-c8d4-4005-b85a-d58fb9a7837d-result.json b/allure-results/b8eebefc-c8d4-4005-b85a-d58fb9a7837d-result.json new file mode 100644 index 0000000..edc0a69 --- /dev/null +++ b/allure-results/b8eebefc-c8d4-4005-b85a-d58fb9a7837d-result.json @@ -0,0 +1 @@ +{"uuid":"b8eebefc-c8d4-4005-b85a-d58fb9a7837d","name":"Некорректный email формат","historyId":"de8c598c53adc6e2133478f1b9141597:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253491942,"uuid":"bf95c0eb-ac49-4344-ad5e-9e0728aa6cd8","stop":1750253491943}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253491942,"uuid":"6c60cb3a-717e-4ea9-9844-541324ad41f9","stop":1750253491944},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253491944,"uuid":"e3aafceb-5197-41e3-9b92-26b0f49bfa06","stop":1750253491979}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253491944,"uuid":"38c53790-8549-48b8-9fe6-17040132c675","stop":1750253491979}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253491941,"uuid":"1076a229-4c32-4b79-8ff3-03b19f3014f1","stop":1750253491979},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491981,"name":"page.goto(/login/registration)","uuid":"d017edd3-fade-4622-91d2-fe422cbeaaea","stop":1750253497271},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253497271,"name":"locator.fill(invalid-email)","uuid":"47b92ebd-aec5-4692-990a-88b231cafb2b","stop":1750253497292},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253497293,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"8f501522-7838-45a2-b209-22d72281b0ea","stop":1750253497342},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253497342,"name":"expect.toBeVisible","uuid":"4ba93f4a-c1e6-45a8-b5c2-8f3bb59fbbe8","stop":1750253497346},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253497347,"uuid":"0919fbda-b72d-49d9-929d-36521d9aae55","stop":1750253497347},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253497347,"uuid":"fc631ed6-0f32-469c-a6aa-a3699abfe47a","stop":1750253497347}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253497346,"uuid":"02c88ce4-2e38-4fa5-b9b8-63c8a43f5cbe","stop":1750253498001}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-1"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750253491941,"testCaseId":"de8c598c53adc6e2133478f1b9141597","fullName":"ui/registration/register.negative.spec.ts:28:7","stop":1750253497999} \ No newline at end of file diff --git a/allure-results/b9ef7d3b-3c7a-4141-9440-85571da55e68-result.json b/allure-results/b9ef7d3b-3c7a-4141-9440-85571da55e68-result.json new file mode 100644 index 0000000..321dbb5 --- /dev/null +++ b/allure-results/b9ef7d3b-3c7a-4141-9440-85571da55e68-result.json @@ -0,0 +1 @@ +{"uuid":"b9ef7d3b-3c7a-4141-9440-85571da55e68","name":"Отправка пустой формы","historyId":"61b0fd9a6b9153c787b71ef3413cea92:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252861197,"uuid":"e330ff92-1ecb-4346-ba5b-2892ab0adfef","stop":1750252861198}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252861196,"uuid":"0de2304d-cb3a-4fd4-aea4-4ba845502905","stop":1750252861198},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252861199,"uuid":"f97043e7-876d-4352-aa94-4f8f206e2e8d","stop":1750252861307}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252861198,"uuid":"056ce832-4720-420e-b4c5-1789be4efc64","stop":1750252861307}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252861196,"uuid":"1d396dd2-3d6d-4b72-bf13-3c9b4425e021","stop":1750252861307},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252861310,"name":"page.goto(/login/registration)","uuid":"a6358c5f-408e-4726-aea9-58bc6ca519d8","stop":1750252862220},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252862220,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"668ecba9-db04-46b4-9e58-9ba3cdd1c558","stop":1750252862607},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252862613,"name":"locator.allTextContents(div[name=\"error\"] >> internal:has-text=\"Поле обязательно для заполнения\"i)","uuid":"bbcdb726-fbe1-46b2-872c-819dec2cdac4","stop":1750252862642},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252862643,"name":"expect.toBeGreaterThan","uuid":"1254cee8-837a-4c7b-8f58-fbe5b7f78de2","stop":1750252862644},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252862644,"name":"expect.toBeVisible","uuid":"3090b04c-28cf-43c9-ac3b-ba73d5eb19e9","stop":1750252862654},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252862656,"uuid":"6d1d03c7-418f-44c0-9c4c-6d489738e4b2","stop":1750252862656},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252862656,"uuid":"a34e3602-9f09-4caa-91af-32525f67dd17","stop":1750252862656}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252862654,"uuid":"dec3dbba-2473-4bc2-9378-62f21d66c487","stop":1750252862670}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-1"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750252861196,"testCaseId":"61b0fd9a6b9153c787b71ef3413cea92","fullName":"ui/registration/register.negative.spec.ts:6:7","stop":1750252862666} \ No newline at end of file diff --git a/allure-results/ba29a847-9f45-4c16-8823-69c4f2af6bc0-result.json b/allure-results/ba29a847-9f45-4c16-8823-69c4f2af6bc0-result.json new file mode 100644 index 0000000..1670c74 --- /dev/null +++ b/allure-results/ba29a847-9f45-4c16-8823-69c4f2af6bc0-result.json @@ -0,0 +1 @@ +{"uuid":"ba29a847-9f45-4c16-8823-69c4f2af6bc0","name":"Пустое поле \"Повторите пароль\"","historyId":"e6d2fb91f0b85b95c3962ffc860dddd7:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252860236,"uuid":"ff4a33ee-3bc7-41f5-ac3f-3334502935b1","stop":1750252860238}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252860236,"uuid":"8b639e90-625f-4f6b-95f5-61b53f64fae9","stop":1750252860239},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252860239,"uuid":"f1b32bca-392d-4496-9c3b-ff57e6cb8347","stop":1750252860364}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252860239,"uuid":"abb73b67-9ec5-4728-8820-9de297d908ba","stop":1750252860364}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252860235,"uuid":"7b23f35e-3314-46c5-92de-a2ec5f5c5327","stop":1750252860364},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252860365,"name":"page.goto(/recoverpassword)","uuid":"819ec279-50e1-4eec-ba54-246cea7cec85","stop":1750252861414},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252861414,"name":"locator.fill(autotest@example.com)","uuid":"e16fa60f-9ec3-4aff-a308-3b771c163df3","stop":1750252861437},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252861437,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"9a35405f-638a-4903-a392-d0e395b9b222","stop":1750252861485},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252861486,"name":"locator.count(input[type=\"text\"])","uuid":"afb43be0-ede1-4ae6-a9ef-049336e5e46a","stop":1750252861487},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252861488,"name":"locator.fill(0)","uuid":"adc35368-8edb-4799-9366-24a1f8c4ff9f","stop":1750252861567},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252861568,"name":"locator.fill(0)","uuid":"2058db6d-75e9-4c1e-a888-dec5670438f7","stop":1750252861574},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252861574,"name":"locator.fill(0)","uuid":"b31271ec-b8f3-452d-b765-cd62c1ccee3d","stop":1750252861579},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252861579,"name":"locator.fill(0)","uuid":"339392f9-4d35-4350-b6c9-78ac43f0b5b7","stop":1750252861583},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252861584,"name":"locator.fill(0)","uuid":"51869074-024a-41be-ae2e-77e97feac809","stop":1750252861592},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252861593,"name":"locator.fill(0)","uuid":"0424250d-0b5e-4e44-9a5f-b6f161f62f50","stop":1750252861599},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252861600,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"6a7ba6c0-395e-4aac-8302-be7afc12c235","stop":1750252861638},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252861638,"name":"locator.fill(!Test123456)","uuid":"ae24b050-17c5-4f32-83e0-7126d8a9ada0","stop":1750252861725},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252861725,"name":"locator.fill()","uuid":"2ca02700-86d4-4f60-a3a7-6e5ae15ef275","stop":1750252861733},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252861733,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"35f37c34-50ab-4e82-942b-6cd39033c56d","stop":1750252861767},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252861768,"name":"expect.toBeVisible","uuid":"0eff52b8-3e0d-441b-b6ff-350198669548","stop":1750252861770},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252861771,"uuid":"51c5009a-6436-41d3-bbf2-8a0d393c6d1b","stop":1750252861771},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252861771,"uuid":"a0f4324a-f21a-4635-8800-a1efbdab958b","stop":1750252861771}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252861771,"uuid":"b42db9d4-542a-46e2-9cdd-11c69b506aca","stop":1750252861773}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-0"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"}],"links":[],"start":1750252860235,"testCaseId":"e6d2fb91f0b85b95c3962ffc860dddd7","fullName":"ui/recovery/recover-negative.spec.ts:45:7","stop":1750252861771} \ No newline at end of file diff --git a/allure-results/bcba8c40-268f-4ad8-a1bc-614d07f1c857-result.json b/allure-results/bcba8c40-268f-4ad8-a1bc-614d07f1c857-result.json new file mode 100644 index 0000000..53f2182 --- /dev/null +++ b/allure-results/bcba8c40-268f-4ad8-a1bc-614d07f1c857-result.json @@ -0,0 +1 @@ +{"uuid":"bcba8c40-268f-4ad8-a1bc-614d07f1c857","name":"Пользователь успешно восстанавливает пароль","historyId":"1779c735aef9d62c071557455e74e57f:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253490554,"uuid":"758c3797-ce05-43bd-9714-a5ab2055df41","stop":1750253490555}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253490553,"uuid":"8ad11925-a16a-4e9b-96ec-624896c31b8e","stop":1750253490556},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253490556,"uuid":"742c541d-c769-49b1-8023-22b9d7440a88","stop":1750253490593}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253490556,"uuid":"f546e32f-4227-4508-9840-a5123660d98e","stop":1750253490593}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253490553,"uuid":"266c79ec-dfc5-45e9-87b8-26a58a64037d","stop":1750253490593},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253490594,"name":"page.goto(/recoverpassword)","uuid":"6c48b787-03e4-4116-9fbe-3123cb259e5a","stop":1750253491561},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491561,"name":"locator.fill(autotest@example.com)","uuid":"8e555f1e-2494-4067-b547-f94887bc1810","stop":1750253491582},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491583,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"c191cbfc-b9a5-4063-8cfa-1d3347853bcc","stop":1750253491620},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491620,"name":"expect.toHaveURL","uuid":"34378c37-dc23-4044-8b35-3757d4c68a83","stop":1750253491731},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491732,"name":"locator.count(input[type=\"text\"])","uuid":"2c2f4969-62b8-4c06-89b7-b9dfa0cc68d7","stop":1750253491734},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491735,"name":"locator.fill(0)","uuid":"e679a47c-3a39-4951-890e-1653ca89bd27","stop":1750253491741},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491742,"name":"locator.fill(0)","uuid":"f4de6126-3aa4-4047-85f2-68919336f1dc","stop":1750253491745},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491746,"name":"locator.fill(0)","uuid":"c0e0919f-570e-451c-bbe2-08ceffd2201f","stop":1750253491752},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491753,"name":"locator.fill(0)","uuid":"8b6c4fbc-760c-455f-8e9e-cec3d5adf2b2","stop":1750253491758},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491759,"name":"locator.fill(0)","uuid":"515fffcf-3640-4efc-a6e3-fd905eb4c82f","stop":1750253491762},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491762,"name":"locator.fill(0)","uuid":"24f2a171-7da3-4a0a-b5e6-5a3edf23a1c7","stop":1750253491769},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491770,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"91cd0f35-7e6a-4adb-b189-777977ab2fdc","stop":1750253491805},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491805,"name":"expect.toBeVisible","uuid":"424f8ed7-1d0e-4b2b-a515-9a513f72c793","stop":1750253491910},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491911,"name":"locator.fill(!Test123456)","uuid":"9d72eabf-1017-4bc3-ad96-67a9eba8bdc6","stop":1750253491918},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491919,"name":"locator.fill(!Test123456)","uuid":"6161bfe7-5294-4bc8-968f-98ddea10b8c4","stop":1750253491929},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491929,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"fc2e3183-9ce9-4346-a954-92054d2fdfbc","stop":1750253491969},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491970,"name":"expect.toHaveURL","uuid":"2a87557c-5630-4f8b-ad71-d25dd699f899","stop":1750253492074},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253492075,"name":"expect.toBeVisible","uuid":"598d07de-8ac2-4963-9abd-1e7828fabecf","stop":1750253492078},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253492078,"uuid":"2290ad30-4be4-455c-a5ed-5fc194055e32","stop":1750253492078},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253492078,"uuid":"e7db4cf7-d3e1-48df-a4c6-e6a30c1ab1d9","stop":1750253492078}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253492078,"uuid":"5927f2df-6ab2-4e0a-aeeb-d031d1b96de0","stop":1750253497292}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-password.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-password.spec.ts > Восстановление пароля — позитивные сценарии"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-password.spec.ts"},{"name":"subSuite","value":"Восстановление пароля — позитивные сценарии"}],"links":[],"start":1750253490553,"testCaseId":"1779c735aef9d62c071557455e74e57f","fullName":"ui/recovery/recover-password.spec.ts:7:7","stop":1750253497291} \ No newline at end of file diff --git a/allure-results/be4584f3-a506-4a9a-98eb-cf8c5e97d4bd-result.json b/allure-results/be4584f3-a506-4a9a-98eb-cf8c5e97d4bd-result.json new file mode 100644 index 0000000..51c13b0 --- /dev/null +++ b/allure-results/be4584f3-a506-4a9a-98eb-cf8c5e97d4bd-result.json @@ -0,0 +1 @@ +{"uuid":"be4584f3-a506-4a9a-98eb-cf8c5e97d4bd","name":"has title","historyId":"3a2a809b453af4fd564578d1a27f3e45:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserType.launch","start":1750252852138,"uuid":"cdd2943a-6425-4044-834a-2e5bdd26afee","stop":1750252852582}],"attachments":[],"parameters":[],"name":"fixture: browser","start":1750252852137,"uuid":"5bb4353b-9384-46e4-9175-169b09fb4ce7","stop":1750252852582},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252852584,"uuid":"96aef92d-cb98-40c8-8d8c-c7e03f2476c4","stop":1750252852657}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252852583,"uuid":"5830aef8-e0f9-46e2-83c6-69a326844b15","stop":1750252852658},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252852658,"uuid":"1191c061-9eef-404c-aa36-24985813afb1","stop":1750252853199}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252852658,"uuid":"f609d147-b3b7-4ce3-be4f-27e366feade9","stop":1750252853199}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252852133,"uuid":"be40a41f-4154-41d1-964f-a276b647169c","stop":1750252853199},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252853201,"name":"page.goto(https://playwright.dev/)","uuid":"6d648e5d-f0e4-4dd3-8b49-2a6ccbb4dae5","stop":1750252854604},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252854606,"name":"expect.toHaveTitle","uuid":"d1cd285f-1a32-40aa-b4a5-c624096562dd","stop":1750252854634},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252854635,"uuid":"6465f49a-4032-476b-8ff1-c0d07341a5e6","stop":1750252854635},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252854635,"uuid":"608f083b-e260-4043-a387-bb6e8ed6dd62","stop":1750252854635}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252854634,"uuid":"2031c408-9806-4ff0-8f16-6c82e5d35873","stop":1750252854641}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > webkit > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-2"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"example.spec.ts"}],"links":[],"start":1750252852132,"testCaseId":"3a2a809b453af4fd564578d1a27f3e45","fullName":"example.spec.ts:3:5","stop":1750252854191} \ No newline at end of file diff --git a/allure-results/bf51a723-95cb-485e-bdf8-047a050cd516-result.json b/allure-results/bf51a723-95cb-485e-bdf8-047a050cd516-result.json new file mode 100644 index 0000000..58e9b8e --- /dev/null +++ b/allure-results/bf51a723-95cb-485e-bdf8-047a050cd516-result.json @@ -0,0 +1 @@ +{"uuid":"bf51a723-95cb-485e-bdf8-047a050cd516","name":"get started link","historyId":"37e4aa066a5f6eac2e4d3b98a2ed98a7:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserType.launch","start":1750253470955,"uuid":"0b6240e8-47e7-471f-83c0-e3692c8dce14","stop":1750253471353}],"attachments":[],"parameters":[],"name":"fixture: browser","start":1750253470953,"uuid":"84dceab1-1639-4bc3-8b75-71ef9725a81f","stop":1750253471354},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253471360,"uuid":"466da44f-c2c2-4f8d-a914-d6cc2dbb8357","stop":1750253471395}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253471355,"uuid":"bd4bc85b-19cb-418a-ba49-6996e63402e4","stop":1750253471406},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253471410,"uuid":"04049590-0ea7-4c33-95b4-3e7c4a6d67e4","stop":1750253471643}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253471406,"uuid":"5a5a2bd8-785a-4f3c-8aad-dab30d00a842","stop":1750253471643}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253470948,"uuid":"603d6e6f-d82c-4343-b39c-d87c413b8c54","stop":1750253471643},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253471645,"name":"page.goto(https://playwright.dev/)","uuid":"af6031b6-0c62-4215-95ce-ca553a01b2c3","stop":1750253473633},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253473636,"name":"locator.getByRole('link', { name: 'Get started' }).click","uuid":"3121fb43-1982-422d-9f45-33f6bd2412be","stop":1750253473718},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253473719,"name":"expect.toBeVisible","uuid":"f746a408-3aa1-4a35-b1ad-86ebb7966033","stop":1750253474088},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253474089,"uuid":"71078663-a464-467c-a363-a6a0f244b0f7","stop":1750253474089},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253474089,"uuid":"268a51f5-3129-42b7-a5d1-5514086c7802","stop":1750253474089}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253474088,"uuid":"f1c7b234-4eeb-4092-beaf-ef7189dc36bf","stop":1750253474164}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > chromium > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-1"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"example.spec.ts"}],"links":[],"start":1750253470950,"testCaseId":"37e4aa066a5f6eac2e4d3b98a2ed98a7","fullName":"example.spec.ts:10:5","stop":1750253473760} \ No newline at end of file diff --git a/allure-results/c03b2708-b272-4209-a24a-2bc8e5838f00-result.json b/allure-results/c03b2708-b272-4209-a24a-2bc8e5838f00-result.json new file mode 100644 index 0000000..1f3c109 --- /dev/null +++ b/allure-results/c03b2708-b272-4209-a24a-2bc8e5838f00-result.json @@ -0,0 +1 @@ +{"uuid":"c03b2708-b272-4209-a24a-2bc8e5838f00","name":"Некорректный новый пароль","historyId":"18246cf63350a71f5b46012e257bafcf:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253556747,"uuid":"b5568131-8263-474e-8cd7-d121184c011c","stop":1750253556748}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253556746,"uuid":"766a1620-aa6d-4a93-83a3-4a1ce773646f","stop":1750253556749},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253556749,"uuid":"214cb103-4c64-49df-865f-d8e257fda291","stop":1750253556780}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253556749,"uuid":"e8d23103-c48a-4252-a6d8-bf2feaef2062","stop":1750253556781}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253556746,"uuid":"5f62df47-8bd1-4359-8de7-918f8477286b","stop":1750253556781},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253556781,"name":"page.goto(/recoverpassword)","uuid":"a0bf8158-ad60-473e-8db2-e044b46559a7","stop":1750253561786},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253561787,"name":"locator.fill(autotest@example.com)","uuid":"025db389-0729-4b02-9ee4-4aa4d3e81050","stop":1750253561817},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253561817,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"1792e713-b79a-485c-9e4d-202c831392c7","stop":1750253561924},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253561925,"name":"locator.count(input[type=\"text\"])","uuid":"b811d62d-3b64-4721-a6b5-d51450ba17e5","stop":1750253561938},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253561938,"name":"locator.fill(0)","uuid":"6a75dd30-ba95-4e9d-acee-7c11aba2498d","stop":1750253561992},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253561992,"name":"locator.fill(0)","uuid":"89acc705-946d-4215-bfa5-8ab98546ef91","stop":1750253562013},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253562013,"name":"locator.fill(0)","uuid":"23b20924-d993-479f-9e60-9fb60804c0bb","stop":1750253562025},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253562025,"name":"locator.fill(0)","uuid":"3b766c2b-27ac-4d70-86be-b859d172ee8b","stop":1750253562042},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253562045,"name":"locator.fill(0)","uuid":"4e916d2d-64eb-4e19-bea8-601bbb0e7cb0","stop":1750253562057},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253562057,"name":"locator.fill(0)","uuid":"a9bc357c-5923-4ee9-831a-9ea06e8685e0","stop":1750253562081},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253562082,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"8585beec-b219-4592-9440-eaaccbdddfc5","stop":1750253562125},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253562126,"name":"locator.fill(123)","uuid":"0b570e9e-e234-4916-8212-21315572ad3a","stop":1750253562183},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253562184,"name":"locator.fill(123)","uuid":"a0535875-19a0-4cc9-bb45-c23a23ae5bd8","stop":1750253562197},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253562200,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"f0d0861a-2d27-4dcf-bbe4-bf9c9ee5c7b8","stop":1750253562251},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253562252,"name":"expect.toBeVisible","uuid":"6ad8490a-ab0a-4189-ba6e-634d4a4c942a","stop":1750253562256},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253562256,"uuid":"b0805fc0-7f1b-44f2-a64c-feb98b45b266","stop":1750253562256},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253562256,"uuid":"0b764e7b-fb28-43e8-ab58-964992e35b2a","stop":1750253562256}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253562256,"uuid":"5275bd51-61f5-42e3-b248-0ffb9b6d2ed8","stop":1750253562563}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"}],"links":[],"start":1750253556746,"testCaseId":"18246cf63350a71f5b46012e257bafcf","fullName":"ui/recovery/recover-negative.spec.ts:34:7","stop":1750253562562} \ No newline at end of file diff --git a/allure-results/c4369580-947e-4d85-bf49-64657793741c-result.json b/allure-results/c4369580-947e-4d85-bf49-64657793741c-result.json new file mode 100644 index 0000000..0d60c76 --- /dev/null +++ b/allure-results/c4369580-947e-4d85-bf49-64657793741c-result.json @@ -0,0 +1 @@ +{"uuid":"c4369580-947e-4d85-bf49-64657793741c","name":"Пароли не совпадают","historyId":"a7eaebb1e41fbbf13bf61195120b3ce9:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252860502,"uuid":"3c2d09a3-4a33-4ac0-839c-8111a1e61bb9","stop":1750252860509}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252860501,"uuid":"aac0f949-eb9d-4bd2-807b-c236773a38d3","stop":1750252860510},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252860510,"uuid":"736c8ad3-c0ef-40a8-bb8e-f1f01bed3b71","stop":1750252860623}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252860510,"uuid":"a1fe6278-ffe1-4f0c-8580-fa7a095d431d","stop":1750252860623}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252860501,"uuid":"3b451c2a-1bd0-469f-a296-07263743ea67","stop":1750252860623},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252860624,"name":"page.goto(/recoverpassword)","uuid":"8845c957-69c7-4462-801b-2b8b5d923d40","stop":1750252861522},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252861523,"name":"locator.fill(autotest@example.com)","uuid":"8555527f-8710-4b9e-903d-ac20473a071d","stop":1750252861549},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252861549,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"92a0bf71-faeb-480e-bd23-a195fa9aa49d","stop":1750252861588},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252861589,"name":"locator.count(input[type=\"text\"])","uuid":"d543a177-cd2f-4b62-8c3a-ef110d08f8cd","stop":1750252861592},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252861593,"name":"locator.fill(0)","uuid":"4477606d-326f-42cd-950d-83ff762b06ba","stop":1750252861678},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252861682,"name":"locator.fill(0)","uuid":"8d595af0-b990-496c-9312-58bb7a3b2b16","stop":1750252861689},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252861689,"name":"locator.fill(0)","uuid":"8e9240b2-05f3-4e19-ab17-6b7e3e5866f3","stop":1750252861694},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252861695,"name":"locator.fill(0)","uuid":"bc962270-8c57-41bc-9416-cf9acc676953","stop":1750252861700},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252861701,"name":"locator.fill(0)","uuid":"5c95410a-e257-487c-a42f-e10c8f8aad74","stop":1750252861705},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252861705,"name":"locator.fill(0)","uuid":"a55fc35f-979c-4971-a42a-2281f77afbc3","stop":1750252861709},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252861711,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"3794ccfc-bc2f-477a-8260-e3ed6f65b6c5","stop":1750252861756},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252861756,"name":"locator.fill(!Test123456)","uuid":"60cb673a-2218-4df0-a63e-37f19e776b7d","stop":1750252861841},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252861843,"name":"locator.fill(!OtherPass123)","uuid":"e51815cb-4418-45fb-9af3-72edcc7717dd","stop":1750252861858},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252861859,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"5952c7c8-0838-4553-bf34-ae9b80b6660b","stop":1750252861904},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252861904,"name":"expect.toBeVisible","uuid":"9dc0aa0e-b9d9-4a88-a312-9c212100ff3f","stop":1750252861909},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252861910,"uuid":"c1ee73df-d227-4130-8bb0-e035986e387c","stop":1750252861910},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252861910,"uuid":"22be2f46-55e3-4b0e-bf3f-27feda5d1963","stop":1750252861910}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252861909,"uuid":"bb39bc94-b1b6-4910-9972-93ac2b0fbd34","stop":1750252861916}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-3"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"}],"links":[],"start":1750252860501,"testCaseId":"a7eaebb1e41fbbf13bf61195120b3ce9","fullName":"ui/recovery/recover-negative.spec.ts:56:7","stop":1750252861914} \ No newline at end of file diff --git a/allure-results/c49970bb-7c38-4942-ba5d-892bd38edd00-result.json b/allure-results/c49970bb-7c38-4942-ba5d-892bd38edd00-result.json new file mode 100644 index 0000000..175e4e0 --- /dev/null +++ b/allure-results/c49970bb-7c38-4942-ba5d-892bd38edd00-result.json @@ -0,0 +1 @@ +{"uuid":"c49970bb-7c38-4942-ba5d-892bd38edd00","name":"Некорректный email формат","historyId":"de8c598c53adc6e2133478f1b9141597:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252849518,"uuid":"adf40413-239f-457e-9352-401a4ed70f88","stop":1750252849523}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252849518,"uuid":"33d561b7-d454-4d71-b417-ceaff5a9815c","stop":1750252849523},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252849525,"uuid":"0ddd34b2-5d6e-496e-b48e-08851877f24f","stop":1750252849753}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252849524,"uuid":"b32f9f75-21a5-4fd2-8583-93c5b01436c5","stop":1750252849753}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252849517,"uuid":"dc6a9bb4-5475-4c62-a20f-284932eb19a3","stop":1750252849754},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252849754,"name":"page.goto(/login/registration)","uuid":"af7f429f-b520-4f5a-ac50-234907403871","stop":1750252851110},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252851113,"name":"locator.fill(invalid-email)","uuid":"e472f12f-2ee8-4b8a-b180-5a441d5379b7","stop":1750252851141},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252851141,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"a1c29f34-f696-4162-8005-5a082a7d8e29","stop":1750252851233},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252851233,"name":"expect.toBeVisible","uuid":"8bef932c-e154-4731-8fb6-b54372146747","stop":1750252851239},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252851239,"uuid":"591bdde5-242b-4d3d-8d0f-5b2c1a04caba","stop":1750252851239},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252851240,"uuid":"750dff04-3986-480f-9c8c-eea9445e1ca0","stop":1750252851240}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252851239,"uuid":"92ae04fb-90a0-40b7-971f-e5623b3b9260","stop":1750252851249}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750252849516,"testCaseId":"de8c598c53adc6e2133478f1b9141597","fullName":"ui/registration/register.negative.spec.ts:28:7","stop":1750252851246} \ No newline at end of file diff --git a/allure-results/c51b6dc4-dfa6-44c4-b038-eb66e4f8c588-result.json b/allure-results/c51b6dc4-dfa6-44c4-b038-eb66e4f8c588-result.json new file mode 100644 index 0000000..7678526 --- /dev/null +++ b/allure-results/c51b6dc4-dfa6-44c4-b038-eb66e4f8c588-result.json @@ -0,0 +1 @@ +{"uuid":"c51b6dc4-dfa6-44c4-b038-eb66e4f8c588","name":"Слишком длинная должность","historyId":"2214c0f917091cfcda832cd03e01bb76:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253570266,"uuid":"88b70cbb-6db0-49e9-abd3-8259c260313d","stop":1750253570267}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253570266,"uuid":"e1d16b36-dcde-4d1f-9d4e-fa182f07335c","stop":1750253570268},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253570269,"uuid":"5ace9a4d-d193-44af-9bfc-6ffe80fa3195","stop":1750253570302}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253570268,"uuid":"7ce78f41-d6a5-4105-bcb6-6b929b66d2a0","stop":1750253570302}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253570265,"uuid":"28ea3166-ace3-4136-8c77-9d9c1955252a","stop":1750253570302},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253570302,"name":"page.goto(/login/registration)","uuid":"9acf5afd-827b-4008-a692-bd935d1213d5","stop":1750253575315},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253575319,"name":"locator.fill(XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX)","uuid":"efb4a10b-8824-4a02-b07b-2382fcf19a12","stop":1750253575421},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253575422,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"1e040e50-adf1-4e12-a15e-760ed0b2a37c","stop":1750253575471},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253575472,"name":"expect.toBeVisible","uuid":"9ad39a9b-2335-40f2-86d1-6cc038dce59c","stop":1750253575516},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253575519,"uuid":"665d73d9-d98b-40ae-b5bb-4f741750d60c","stop":1750253575519},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253575519,"uuid":"a1b7ab35-9206-4c25-96fd-cc6d4eaff809","stop":1750253575519}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253575518,"uuid":"9aeb2226-2d60-4b62-b0e8-c4e6b06c6a82","stop":1750253577604}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750253570265,"testCaseId":"2214c0f917091cfcda832cd03e01bb76","fullName":"ui/registration/register.negative.spec.ts:38:7","stop":1750253577600} \ No newline at end of file diff --git a/allure-results/c58d24c1-79b5-4ef1-960c-56332131fbea-result.json b/allure-results/c58d24c1-79b5-4ef1-960c-56332131fbea-result.json new file mode 100644 index 0000000..2819953 --- /dev/null +++ b/allure-results/c58d24c1-79b5-4ef1-960c-56332131fbea-result.json @@ -0,0 +1 @@ +{"uuid":"c58d24c1-79b5-4ef1-960c-56332131fbea","name":"Отправка пустой формы","historyId":"61b0fd9a6b9153c787b71ef3413cea92:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253491473,"uuid":"cfa4c13b-157d-4b34-bd19-f49eb92090de","stop":1750253491475}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253491472,"uuid":"80b0f799-6cf3-497f-bb40-1aaa059da3a9","stop":1750253491477},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253491477,"uuid":"93a40624-c61c-4206-bac9-6ccb7e248f2a","stop":1750253491515}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253491477,"uuid":"e785d05c-d9e3-4e16-bb44-8e8b23350fd1","stop":1750253491516}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253491472,"uuid":"77d77698-4f8e-46e0-8cea-f040f8c7e54b","stop":1750253491516},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491517,"name":"page.goto(/login/registration)","uuid":"8d2bff10-70cf-4de7-ae40-092b0041f170","stop":1750253503130},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253503133,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"e13eb414-982a-4e2b-81be-3e95b4518f11","stop":1750253503262},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253503266,"name":"locator.allTextContents(div[name=\"error\"] >> internal:has-text=\"Поле обязательно для заполнения\"i)","uuid":"e24e58f3-f171-480b-bc63-52cd1aac46ca","stop":1750253503324},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253503325,"name":"expect.toBeGreaterThan","uuid":"18d8b8a9-0c4e-470e-ab25-51dbb1025d12","stop":1750253503330},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253503326,"name":"expect.toBeVisible","uuid":"38eb92ea-1ef8-42a6-9701-c03d6221b2f0","stop":1750253503342},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253503343,"uuid":"bef2f544-d506-4fb2-841f-bc2f9ec742fe","stop":1750253503343},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253503343,"uuid":"1fdced15-0522-4097-80ce-ab21f48acc17","stop":1750253503343}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253503343,"uuid":"82e87dae-f74e-4ca8-bf88-706dd887b58a","stop":1750253504133}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750253491472,"testCaseId":"61b0fd9a6b9153c787b71ef3413cea92","fullName":"ui/registration/register.negative.spec.ts:6:7","stop":1750253504132} \ No newline at end of file diff --git a/allure-results/c6216a67-e9b9-436b-ba98-cbdfa19697ae-result.json b/allure-results/c6216a67-e9b9-436b-ba98-cbdfa19697ae-result.json new file mode 100644 index 0000000..8164a68 --- /dev/null +++ b/allure-results/c6216a67-e9b9-436b-ba98-cbdfa19697ae-result.json @@ -0,0 +1 @@ +{"uuid":"c6216a67-e9b9-436b-ba98-cbdfa19697ae","name":"Переключатель видимости пароля показывает и скрывает ввод","historyId":"b1726395bd827a3a21fe3c829a098be4:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252843668,"uuid":"299d9dea-6544-4eb2-a165-a0027ac5c86b","stop":1750252843673}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252843668,"uuid":"3943705f-01c5-412c-9a09-59c2606e5bad","stop":1750252843674},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252843676,"uuid":"d9f1cf00-7ba8-4c25-abe4-0908ecd8be95","stop":1750252843865}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252843675,"uuid":"9f07c631-2b5a-4f24-8479-173326235cd9","stop":1750252843865}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252843667,"uuid":"12516e0a-1602-423c-aadc-3e066aebdeda","stop":1750252843865},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252843865,"name":"page.goto(/login/authorization)","uuid":"092605f4-662c-4785-b02b-eddb50251510","stop":1750252845522},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252845523,"name":"locator.fill(!Test123456)","uuid":"297c4b7f-6ec9-4d32-a176-79a145b836e6","stop":1750252845567},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252845568,"name":"locator.getByPlaceholder('Пароль').getAttribute","uuid":"57623fef-2784-4874-b3b8-5737d9ad6509","stop":1750252845571},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252845571,"name":"expect.toBe","uuid":"23275982-d61c-436f-8e29-549725a5eff9","stop":1750252845572},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252845572,"name":"locator.getByAltText('показать пароль').click","uuid":"e7f3c241-3999-4954-9160-970716357d73","stop":1750252845618},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252845618,"name":"locator.getByPlaceholder('Пароль').getAttribute","uuid":"8ba2f0de-48a0-4f89-8420-04ad18af3b5c","stop":1750252845620},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252845620,"name":"expect.toBe","uuid":"8975547c-2208-4077-9da6-8132ea43f42f","stop":1750252845620},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252845620,"name":"locator.getByAltText('показать пароль').click","uuid":"58599941-150f-4029-8270-01a15b855af9","stop":1750252845667},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252845667,"name":"locator.getByPlaceholder('Пароль').getAttribute","uuid":"5da0e7ec-4aaa-4f73-abd0-d2fe5546e7a5","stop":1750252845669},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252845669,"name":"expect.toBe","uuid":"6db274f0-1062-4992-991c-d8f866eb64ed","stop":1750252845669},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252845669,"uuid":"dfc0c9b3-ea6e-42ff-8322-e91d0f6a8600","stop":1750252845669},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252845669,"uuid":"899aab08-f201-4b64-a523-0da064f3ba49","stop":1750252845670}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252845669,"uuid":"3100b3f6-9f5c-4f61-9c17-ac83b1204d16","stop":1750252845675}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.ui.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.ui.spec.ts > UI сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.ui.spec.ts"},{"name":"subSuite","value":"UI сценарии авторизации"}],"links":[],"start":1750252843667,"testCaseId":"b1726395bd827a3a21fe3c829a098be4","fullName":"ui/login/login.ui.spec.ts:7:7","stop":1750252845672} \ No newline at end of file diff --git a/allure-results/c6235380-7fae-4a81-adaf-310386ed9c10-result.json b/allure-results/c6235380-7fae-4a81-adaf-310386ed9c10-result.json new file mode 100644 index 0000000..416a365 --- /dev/null +++ b/allure-results/c6235380-7fae-4a81-adaf-310386ed9c10-result.json @@ -0,0 +1 @@ +{"uuid":"c6235380-7fae-4a81-adaf-310386ed9c10","name":"Некорректный email формат","historyId":"de8c598c53adc6e2133478f1b9141597:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253604967,"uuid":"a6aada23-9a4e-4e2f-8713-fd1ea6c00327","stop":1750253604970}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253604967,"uuid":"193448f1-ccd6-41d6-b785-f46ae9527ea1","stop":1750253604972},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253604972,"uuid":"c59ebfdd-cd56-4ace-8c6d-33b08ad64fbc","stop":1750253605142}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253604972,"uuid":"9d8ac2b9-f7ef-45a8-8a8a-93605f2713c8","stop":1750253605142}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253604966,"uuid":"3a52783b-c894-4590-b2e2-1738d9e30993","stop":1750253605142},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253605143,"name":"page.goto(/login/registration)","uuid":"a327ae31-3e0f-43bb-96ea-43ed3129accb","stop":1750253611212},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253611214,"name":"locator.fill(invalid-email)","uuid":"da06d06f-004a-460e-9424-7998defb3ffa","stop":1750253611255},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253611256,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"589e8531-8615-463d-afed-8314663673ed","stop":1750253611314},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253611315,"name":"expect.toBeVisible","uuid":"8651416e-7c50-4f39-94f9-b8ba552b216a","stop":1750253611327},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253611327,"uuid":"440e60e6-e6dc-49b0-a66f-8d6655847f58","stop":1750253611327},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253611327,"uuid":"9a254585-bc2c-4e3e-93b3-981ad360b0d0","stop":1750253611327}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253611327,"uuid":"cef5ab04-682c-48a7-934a-b45caf4c62bf","stop":1750253611364}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750253604966,"testCaseId":"de8c598c53adc6e2133478f1b9141597","fullName":"ui/registration/register.negative.spec.ts:28:7","stop":1750253611362} \ No newline at end of file diff --git a/allure-results/c8634378-85ef-4ac0-bdc7-f841f898499c-result.json b/allure-results/c8634378-85ef-4ac0-bdc7-f841f898499c-result.json new file mode 100644 index 0000000..88d6074 --- /dev/null +++ b/allure-results/c8634378-85ef-4ac0-bdc7-f841f898499c-result.json @@ -0,0 +1 @@ +{"uuid":"c8634378-85ef-4ac0-bdc7-f841f898499c","name":"Оба поля пустые","historyId":"58990385f74407307e4ace7ad02abf05:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252841469,"uuid":"6c8de7c0-9be9-4fe5-ba6a-b58cbd6b9d57","stop":1750252841486}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252841469,"uuid":"a9ffdbde-51a0-4f72-8423-54773695a026","stop":1750252841486},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252841486,"uuid":"d4dc00ef-1b88-45f8-9c8f-bb8fba858397","stop":1750252841710}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252841486,"uuid":"fd557a4b-ae19-4fb4-a8fd-7ae5112f522c","stop":1750252841711}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252841464,"uuid":"750dbc8b-4beb-4a79-a297-12c8a14c15fe","stop":1750252841711},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252841711,"name":"page.goto(/login/authorization)","uuid":"8e56c93b-fc46-4c7f-bd68-9eac7ef92c71","stop":1750252843342},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252843344,"name":"locator.fill()","uuid":"7a8216e4-5488-441d-a33f-fbb0f1b91cce","stop":1750252843376},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252843377,"name":"locator.fill()","uuid":"d603991e-e58c-45f1-b5ab-75b4377ea20e","stop":1750252843384},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252843386,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"24cb5e5c-4e0e-430c-b47b-fe6e86e0d8eb","stop":1750252843433},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252843434,"name":"expect.toBeVisible","uuid":"9079af55-b781-453c-a400-3730481d332c","stop":1750252843439},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252843440,"name":"expect.toBeVisible","uuid":"a64a8e98-3fdc-40a4-9d84-a32cac65f812","stop":1750252843443},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252843443,"uuid":"3b8d16ae-60b2-4f62-a017-3142a2cfd1ad","stop":1750252843443},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252843443,"uuid":"248bb3de-5bb8-4351-a998-d5a70100578d","stop":1750252843443}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252843443,"uuid":"8c95495f-09c7-4f26-8135-4dd9c42979ae","stop":1750252843450}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"}],"links":[],"start":1750252841468,"testCaseId":"58990385f74407307e4ace7ad02abf05","fullName":"ui/login/login.negative.spec.ts:27:7","stop":1750252843449} \ No newline at end of file diff --git a/allure-results/cc2876bf-84be-4290-b3c0-239295f13888-result.json b/allure-results/cc2876bf-84be-4290-b3c0-239295f13888-result.json new file mode 100644 index 0000000..896ee4c --- /dev/null +++ b/allure-results/cc2876bf-84be-4290-b3c0-239295f13888-result.json @@ -0,0 +1 @@ +{"uuid":"cc2876bf-84be-4290-b3c0-239295f13888","name":"Слишком длинная должность","historyId":"2214c0f917091cfcda832cd03e01bb76:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253631639,"uuid":"314ebccb-fe9e-47b8-82d6-be7e39f34696","stop":1750253631641}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253631639,"uuid":"60b612ca-4b49-46f4-8393-cb1cf093b2d6","stop":1750253631643},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253631643,"uuid":"d37e327e-004a-4aa3-b4bf-56271ff34579","stop":1750253631754}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253631643,"uuid":"94fc20ab-409e-4a96-845a-cb44e06402cc","stop":1750253631754}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253631638,"uuid":"5d461c06-1eaf-4927-b5d8-b3610b1abcce","stop":1750253631754},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253631755,"name":"page.goto(/login/registration)","uuid":"1b81567c-d939-4522-a97b-a0e21f28a725","stop":1750253633321},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253633321,"name":"locator.fill(XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX)","uuid":"784fa2f3-10ce-4fcc-be0a-99b6d0e29456","stop":1750253633377},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253633378,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"84b600d4-4859-4549-a6f9-e8f5059b33c7","stop":1750253633430},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253633430,"name":"expect.toBeVisible","uuid":"bca6515f-a428-4179-b6c3-2416c906817c","stop":1750253633437},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253633437,"uuid":"0dc1be74-29af-499d-9ba1-2f5d5d96925d","stop":1750253633437},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253633437,"uuid":"d4d90097-b0f0-431a-911a-eadd401704cb","stop":1750253633438}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253633437,"uuid":"9d4bf06a-7595-48f8-b98c-404da87cfd89","stop":1750253633506}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-1"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750253631638,"testCaseId":"2214c0f917091cfcda832cd03e01bb76","fullName":"ui/registration/register.negative.spec.ts:38:7","stop":1750253633505} \ No newline at end of file diff --git a/allure-results/ccc9cba9-8f96-4ad7-8f81-0603068ae8ff-result.json b/allure-results/ccc9cba9-8f96-4ad7-8f81-0603068ae8ff-result.json new file mode 100644 index 0000000..8d4f0ac --- /dev/null +++ b/allure-results/ccc9cba9-8f96-4ad7-8f81-0603068ae8ff-result.json @@ -0,0 +1 @@ +{"uuid":"ccc9cba9-8f96-4ad7-8f81-0603068ae8ff","name":"Отправка пустой формы","historyId":"61b0fd9a6b9153c787b71ef3413cea92:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserType.launch","start":1750252705773,"uuid":"abf1d0bc-c65d-4776-b296-b78f6636b3fe","stop":1750252706652}],"attachments":[],"parameters":[],"name":"fixture: browser","start":1750252705772,"uuid":"9bcd6b15-a9fc-4947-8f4a-9e632d1c74eb","stop":1750252706652},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252706654,"uuid":"66ffd109-238a-4c9d-910a-fa830a0b5d4d","stop":1750252707425}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252706653,"uuid":"5ec0da49-fa9c-4c7a-a82e-9fa2fc4049a5","stop":1750252707428},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252707429,"uuid":"f665d2bd-d526-4c53-9366-6e2086c2c638","stop":1750252707953}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252707428,"uuid":"8700a317-9e6e-45ff-bf04-fb98c570d6df","stop":1750252707953}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252705769,"uuid":"dc767f88-8d49-4f5c-baa1-8e71cf445ed6","stop":1750252707953},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252707957,"name":"page.goto(/login/registration)","uuid":"1042cfda-84fa-49f2-ae5f-16817ab4b97f","stop":1750252716447},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252716451,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"f86fdfb3-e6c2-4296-8257-cf912228da29","stop":1750252717549},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252717550,"name":"locator.allTextContents(div[name=\"error\"] >> internal:has-text=\"Поле обязательно для заполнения\"i)","uuid":"be7ddfdc-473e-4790-abe4-d57a51723cc8","stop":1750252744940},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252744944,"name":"expect.toBeGreaterThan","uuid":"27aa0271-be1d-4a25-9ec5-acfb2236e711","stop":1750252744945},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252744947,"name":"expect.toBeVisible","uuid":"8bd25ecb-5fff-4dfe-a91e-55c046d7b186","stop":1750252746993},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252746994,"uuid":"be76e2a6-3bfd-4029-8dbe-87f8bfd70b49","stop":1750252746995},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252746995,"uuid":"471d1563-440c-41ba-adad-86e415f41e3c","stop":1750252746995}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252746993,"uuid":"506535af-bee3-4f86-beea-99be1ba1fea5","stop":1750252747030}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-57952-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750252705775,"testCaseId":"61b0fd9a6b9153c787b71ef3413cea92","fullName":"ui/registration/register.negative.spec.ts:6:7","stop":1750252746151} \ No newline at end of file diff --git a/allure-results/cf086b8f-12a0-4dc5-af3d-f87209a246b6-result.json b/allure-results/cf086b8f-12a0-4dc5-af3d-f87209a246b6-result.json new file mode 100644 index 0000000..8f4c6d8 --- /dev/null +++ b/allure-results/cf086b8f-12a0-4dc5-af3d-f87209a246b6-result.json @@ -0,0 +1 @@ +{"uuid":"cf086b8f-12a0-4dc5-af3d-f87209a246b6","name":"Некорректный формат email","historyId":"e5764a911de0175f8f7118313ae14544:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253543981,"uuid":"b9afa7a9-83da-472d-bf8d-7febe6d4a2e0","stop":1750253543982}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253543981,"uuid":"ae667a48-beec-4049-a062-b49757d98df6","stop":1750253543983},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253543984,"uuid":"980949ca-bc52-4084-a259-c58cbc73a1eb","stop":1750253544025}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253543983,"uuid":"f4e30cf2-36cc-453f-b8f2-fe5f20a66c50","stop":1750253544025}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253543980,"uuid":"6ad8834f-9272-44c7-be13-b2e3925c1553","stop":1750253544025},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253544026,"name":"page.goto(/login/authorization)","uuid":"82e6d50b-64a4-4ef2-9ce9-52fd5625f7c5","stop":1750253549025},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253549027,"name":"locator.fill(invalid-email)","uuid":"9d7d00d0-469f-4225-9ae0-d907c326167e","stop":1750253549081},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253549082,"name":"locator.fill(anyPassword123)","uuid":"c9aa84a7-50a5-424f-9494-9647b3175b1c","stop":1750253549143},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253549145,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"9e8e7991-b17b-4696-9ef9-7530a1a707a2","stop":1750253549219},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253549220,"name":"expect.toBeVisible","uuid":"c0029a5a-d889-464b-ab95-fd76edc4524a","stop":1750253549234},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253549235,"uuid":"637e062f-d3bd-4b80-b33f-816f8bfc4e31","stop":1750253549235},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253549235,"uuid":"4f21b805-a1b2-4c81-aa2a-6c0eefe67f97","stop":1750253549235}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253549234,"uuid":"6695f635-b4a8-488c-9e8a-2b23ec4f9dca","stop":1750253554439}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"}],"links":[],"start":1750253543980,"testCaseId":"e5764a911de0175f8f7118313ae14544","fullName":"ui/login/login.negative.spec.ts:46:7","stop":1750253554437} \ No newline at end of file diff --git a/allure-results/d0780c0d-5625-46dc-af94-89242fdd226a-result.json b/allure-results/d0780c0d-5625-46dc-af94-89242fdd226a-result.json new file mode 100644 index 0000000..6ca145a --- /dev/null +++ b/allure-results/d0780c0d-5625-46dc-af94-89242fdd226a-result.json @@ -0,0 +1 @@ +{"uuid":"d0780c0d-5625-46dc-af94-89242fdd226a","name":"Некорректный новый пароль","historyId":"18246cf63350a71f5b46012e257bafcf:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253627425,"uuid":"dec6397b-36dd-4a9f-bac9-549a0a477381","stop":1750253627436}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253627425,"uuid":"6ba0fb99-aba3-4719-b7be-87a92cb7cff2","stop":1750253627437},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253627438,"uuid":"5a06173f-b293-442f-bb74-e922c3bc7823","stop":1750253627549}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253627438,"uuid":"a51b79cf-2b52-4503-bc4d-892788beaf2e","stop":1750253627549}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253627424,"uuid":"a84a38c3-60b1-4331-b972-f5f4f4f8c1ad","stop":1750253627549},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253627551,"name":"page.goto(/recoverpassword)","uuid":"205d9004-d157-44d8-b4e9-51fbcd5914d2","stop":1750253628594},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253628595,"name":"locator.fill(autotest@example.com)","uuid":"15b1d8f0-69e0-4914-bb08-8b908058d183","stop":1750253628633},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253628634,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"3c6c70a5-0a21-49f8-96bf-f180fccaf5fc","stop":1750253628969},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253628971,"name":"locator.count(input[type=\"text\"])","uuid":"4e77bbaa-9814-4410-be53-8a55850d6f06","stop":1750253628976},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253628977,"name":"locator.fill(0)","uuid":"fe7a047a-8dbb-4fbd-9924-c9b7273e3f97","stop":1750253629083},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253629083,"name":"locator.fill(0)","uuid":"fe31be25-64e0-457d-9950-7ca185189b32","stop":1750253629092},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253629092,"name":"locator.fill(0)","uuid":"b7843e1d-0a73-4488-a5d4-33b525343e58","stop":1750253629100},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253629101,"name":"locator.fill(0)","uuid":"9993fcd2-2c8a-490c-9070-ebcf7f812626","stop":1750253629119},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253629120,"name":"locator.fill(0)","uuid":"927d9b0e-3281-4d51-82b6-3ea52156b5a7","stop":1750253629146},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253629147,"name":"locator.fill(0)","uuid":"af3d2970-e69d-4306-ac6d-a5a345ece4f1","stop":1750253629154},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253629155,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"cb33e92e-0989-4eae-b329-4f472a4c7fa8","stop":1750253629199},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253629200,"name":"locator.fill(123)","uuid":"a3d75acf-de8a-4295-8ef7-b87412c5f1c6","stop":1750253629298},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253629299,"name":"locator.fill(123)","uuid":"bd4db6aa-26f2-439c-b6aa-eea05a99ea26","stop":1750253629307},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253629308,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"fa5e9887-5cca-4bbb-a77d-866d936b824e","stop":1750253629346},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253629347,"name":"expect.toBeVisible","uuid":"7f2dfca4-c237-40b3-a868-52411d1d581a","stop":1750253629377},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253629378,"uuid":"05b04d80-f2a6-44c9-a90b-7cc46da7db6d","stop":1750253629378},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253629378,"uuid":"559b0b54-3953-4eb0-b655-acaaad361ddc","stop":1750253629378}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253629378,"uuid":"90ad2878-6b56-445b-9fc1-6f1afbc615ff","stop":1750253629447}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-2"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"}],"links":[],"start":1750253627424,"testCaseId":"18246cf63350a71f5b46012e257bafcf","fullName":"ui/recovery/recover-negative.spec.ts:34:7","stop":1750253629445} \ No newline at end of file diff --git a/allure-results/d1950409-f2fb-4807-8f5c-749c0436b7e7-result.json b/allure-results/d1950409-f2fb-4807-8f5c-749c0436b7e7-result.json new file mode 100644 index 0000000..0a98f23 --- /dev/null +++ b/allure-results/d1950409-f2fb-4807-8f5c-749c0436b7e7-result.json @@ -0,0 +1 @@ +{"uuid":"d1950409-f2fb-4807-8f5c-749c0436b7e7","name":"Регистр в email (User@test.com ≠ user@test.com)","historyId":"cc4ad4b40ef726af11b2bd4f5523dbe0:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252857740,"uuid":"668604fd-5e2b-4ede-80ea-4387a45b3f1e","stop":1750252857749}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252857739,"uuid":"1227ba8e-d163-4433-856c-1218b15bc35b","stop":1750252857751},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252857755,"uuid":"d5dafd36-3267-472d-931f-85460e0be260","stop":1750252857909}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252857751,"uuid":"eb3c1dea-7e0a-4bb3-9a0f-1e938086b5ad","stop":1750252857909}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252857734,"uuid":"1a3075d1-a5ed-457e-a509-e84b50ec4bd3","stop":1750252857910},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252857910,"name":"page.goto(/login/authorization)","uuid":"b89fe02a-d3d0-464f-846d-61d4e03db689","stop":1750252858561},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252858562,"name":"locator.fill(Autotest@Example.com)","uuid":"9ccf7cb1-1f16-4f6e-92de-8d48bd10a03a","stop":1750252858650},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252858652,"name":"locator.fill(!Test123456)","uuid":"a41721fb-d153-4dc0-82db-a07fe0052deb","stop":1750252858670},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252858670,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"8cdc6f52-f273-48ca-9eac-48df93d65a8d","stop":1750252858717},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252858717,"name":"expect.toBeVisible","uuid":"1a7f7462-e3db-4632-bb3b-d9f63953a5b0","stop":1750252858826},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252858826,"uuid":"f5f8103e-a6c2-4cd4-b046-e61bc26a279a","stop":1750252858826},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252858827,"uuid":"274090ec-6a1e-42c0-8403-481f1ff02b34","stop":1750252858827}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252858826,"uuid":"82cebad6-260d-4e72-980b-fa3b0418d601","stop":1750252858835}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"tag","value":"test.com"},{"name":"tag","value":"test.com)"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-0"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"}],"links":[],"start":1750252857734,"testCaseId":"cc4ad4b40ef726af11b2bd4f5523dbe0","fullName":"ui/login/login.negative.spec.ts:58:7","stop":1750252858830} \ No newline at end of file diff --git a/allure-results/d394e205-2d59-4049-8756-ced534252834-result.json b/allure-results/d394e205-2d59-4049-8756-ced534252834-result.json new file mode 100644 index 0000000..53e943a --- /dev/null +++ b/allure-results/d394e205-2d59-4049-8756-ced534252834-result.json @@ -0,0 +1 @@ +{"uuid":"d394e205-2d59-4049-8756-ced534252834","name":"Пользователь успешно восстанавливает пароль","historyId":"1779c735aef9d62c071557455e74e57f:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252860881,"uuid":"e4e7b9e2-d79b-4787-b5f7-992c353560ad","stop":1750252860886}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252860881,"uuid":"afd06e19-8fcd-4dda-81fc-022b5d257a50","stop":1750252860886},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252860887,"uuid":"04b7dd0b-5692-4e57-84d8-94a56f1f1e7f","stop":1750252860996}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252860886,"uuid":"7554de4c-0cc9-44f6-a645-dc050070ebbd","stop":1750252860997}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252860877,"uuid":"c00c22a9-9f81-4463-8a98-3e18301e855f","stop":1750252860997},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252860998,"name":"page.goto(/recoverpassword)","uuid":"1a48597d-f4b8-4e43-96e1-e42da4062163","stop":1750252862094},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252862094,"name":"locator.fill(autotest@example.com)","uuid":"5b7f0818-2be0-410c-bcb3-a16024c5e326","stop":1750252862117},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252862118,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"c2f646c8-8d78-4027-931b-9e863a2175f7","stop":1750252862154},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252862155,"name":"expect.toHaveURL","uuid":"5f2b67db-7667-4adf-8df4-32eedbfece3e","stop":1750252862260},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252862261,"name":"locator.count(input[type=\"text\"])","uuid":"621200a0-a1cb-4eb3-8c87-78a51c041c45","stop":1750252862262},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252862263,"name":"locator.fill(0)","uuid":"c3e7ba39-92c5-4126-a4b5-024e1b6fac12","stop":1750252862267},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252862268,"name":"locator.fill(0)","uuid":"b65c19b5-f5a7-45f3-9ba9-e86643b6e79d","stop":1750252862273},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252862273,"name":"locator.fill(0)","uuid":"631381a3-ec16-4d00-b136-4b6c0dd61f39","stop":1750252862278},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252862279,"name":"locator.fill(0)","uuid":"d5308e07-b7fa-4f5e-a9d5-66a80a1249d7","stop":1750252862282},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252862283,"name":"locator.fill(0)","uuid":"bb0b5613-250e-4928-9a17-9f38687a2ceb","stop":1750252862287},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252862287,"name":"locator.fill(0)","uuid":"2991f5bc-7f6b-4866-8889-b723e6402241","stop":1750252862291},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252862291,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"63906154-814d-4ccd-8109-aa769a042557","stop":1750252862337},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252862337,"name":"expect.toBeVisible","uuid":"33d9a968-ac05-438e-89d2-e8f12fec6ee1","stop":1750252862442},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252862442,"name":"locator.fill(!Test123456)","uuid":"628e3184-a39b-4a4e-ad3e-5ce64ed93bac","stop":1750252862450},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252862451,"name":"locator.fill(!Test123456)","uuid":"65d7f827-1bdc-4858-9b4b-4c14e43afcc7","stop":1750252862456},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252862457,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"2f1ebeaf-8519-42ef-8a9a-26215b824abb","stop":1750252862507},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252862508,"name":"expect.toHaveURL","uuid":"524959c2-5819-41d2-8bec-9148eed7b9dd","stop":1750252862616},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252862617,"name":"expect.toBeVisible","uuid":"f87fa8ae-a708-486a-8e4b-02acd37cfc37","stop":1750252862625},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252862625,"uuid":"10883629-81b3-41c3-8e18-b4edb8e6021f","stop":1750252862625},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252862626,"uuid":"68b05939-188b-4c26-abb9-894303cbfb07","stop":1750252862626}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252862625,"uuid":"2c783d34-f47f-4da4-84de-a255ed43a1a2","stop":1750252862635}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-password.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-password.spec.ts > Восстановление пароля — позитивные сценарии"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-2"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-password.spec.ts"},{"name":"subSuite","value":"Восстановление пароля — позитивные сценарии"}],"links":[],"start":1750252860877,"testCaseId":"1779c735aef9d62c071557455e74e57f","fullName":"ui/recovery/recover-password.spec.ts:7:7","stop":1750252862631} \ No newline at end of file diff --git a/allure-results/d39989d4-e2a8-4554-bd3a-8fa3e6072f88-result.json b/allure-results/d39989d4-e2a8-4554-bd3a-8fa3e6072f88-result.json new file mode 100644 index 0000000..fba9026 --- /dev/null +++ b/allure-results/d39989d4-e2a8-4554-bd3a-8fa3e6072f88-result.json @@ -0,0 +1 @@ +{"uuid":"d39989d4-e2a8-4554-bd3a-8fa3e6072f88","name":"Слишком длинное название организации","historyId":"26486147b8778ca2341563049d2a3728:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"failed","statusDetails":{"message":"Error: Timed out 5000ms waiting for expect(locator).toBeVisible()\n\nLocator: getByText('Некорректное название организации!')\nExpected: visible\nReceived: \nCall log:\n - expect.toBeVisible with timeout 5000ms\n - waiting for getByText('Некорректное название организации!')\n","trace":"Error: Timed out 5000ms waiting for expect(locator).toBeVisible()\n\nLocator: getByText('Некорректное название организации!')\nExpected: visible\nReceived: \nCall log:\n - expect.toBeVisible with timeout 5000ms\n - waiting for getByText('Некорректное название организации!')\n\n at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.negative.spec.ts:67:72"},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252518180,"uuid":"9d40b39d-74b0-4cce-98ee-3456586582b2","stop":1750252518865}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252518180,"uuid":"e5510c28-a758-457b-9c58-1c8bbfaabfdb","stop":1750252518865},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252518865,"uuid":"5737f1c2-9091-4f23-a93c-aae321e52733","stop":1750252519119}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252518865,"uuid":"2feb731c-5dec-4bf1-b2d2-5ec39a7624dc","stop":1750252519119}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252518176,"uuid":"e368d0e1-c0fd-4756-9bd9-c840d78ba085","stop":1750252519119},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252519120,"name":"page.goto(/login/registration)","uuid":"94e959eb-4003-4bdc-999f-88845c2f8bb0","stop":1750252524320},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252524323,"name":"locator.fill(Иван)","uuid":"60e043cc-b68b-4948-a481-55b3483f045f","stop":1750252525356},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252525357,"name":"locator.fill(Иванов)","uuid":"56c4cca9-d910-4c5f-a055-930e2bd75059","stop":1750252526304},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252526306,"name":"locator.getByPlaceholder('Учёное звание*').click","uuid":"4f90ab5c-7f51-4d7a-9c2a-7639fa7c57aa","stop":1750252526897},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252526899,"name":"locator.click(li >> internal:has-text=\"Доцент\"i)","uuid":"e17ce097-55e2-43b9-81ee-7f0de78eaeae","stop":1750252528397},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252528399,"name":"locator.getByPlaceholder('Учёная степень*').click","uuid":"b25c74f5-aa62-4c46-87f1-89068b2dd5be","stop":1750252529198},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252529199,"name":"locator.click(li >> internal:has-text=\"Кандидат наук\"i)","uuid":"663e5e9e-9f51-4d12-a151-e3d92a871e94","stop":1750252531630},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252531631,"name":"locator.fill(Преподаватель)","uuid":"17d92ed0-4226-4791-8bd8-ca4cfbfe58d9","stop":1750252532405},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252532406,"name":"locator.fill(ООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООО)","uuid":"adb55a34-f820-4095-b535-16fccef860ad","stop":1750252533304},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252533306,"name":"locator.fill(test1750252524321@example.com)","uuid":"4293cc7f-6b75-40a4-a2e1-f80ce2197195","stop":1750252534172},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252534173,"name":"locator.fill(+7999197796)","uuid":"5f1ddbb9-4c23-4a19-8a99-33083cf796a2","stop":1750252535553},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252535554,"name":"locator.fill(!Test123)","uuid":"e08fc7b7-fbe1-456c-96e9-cf6c8464f879","stop":1750252536838},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252536839,"name":"locator.fill(!Test123)","uuid":"c01ac543-3fa6-4d94-be4b-48ed57c75fc5","stop":1750252537869},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252537871,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"53b842f8-f21b-457f-b009-78b7f8434ca7","stop":1750252538744},{"status":"failed","statusDetails":{"message":"Error: Timed out 5000ms waiting for expect(locator).toBeVisible()\n\nLocator: getByText('Некорректное название организации!')\nExpected: visible\nReceived: \nCall log:\n - expect.toBeVisible with timeout 5000ms\n - waiting for getByText('Некорректное название организации!')\n","trace":"Error: Timed out 5000ms waiting for expect(locator).toBeVisible()\n\nLocator: getByText('Некорректное название организации!')\nExpected: visible\nReceived: \nCall log:\n - expect.toBeVisible with timeout 5000ms\n - waiting for getByText('Некорректное название организации!')\n\n at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.negative.spec.ts:67:72"},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252538747,"name":"expect.toBeVisible","uuid":"697ceff0-f65d-4acb-97bd-459c3e9c03b1","stop":1750252544995},{"statusDetails":{},"stage":"finished","steps":[],"attachments":[{"name":"_error-context-0","source":"f480083e-a011-4b7c-a314-552b460951ce-attachment.md","type":"text/markdown"}],"parameters":[],"start":1750252545266,"name":"_error-context-0","stop":1750252545266},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252544997,"uuid":"dd27a382-dbda-4033-bbb6-8d6aecd6908b","stop":1750252544997},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252544997,"uuid":"89eaeb06-9aa9-4e0b-9c24-1dc608278b85","stop":1750252544997}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252544996,"uuid":"47bb278d-6164-4ed2-983a-5618075bb147","stop":1750252545056}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-57209-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750252518180,"testCaseId":"26486147b8778ca2341563049d2a3728","fullName":"ui/registration/register.negative.spec.ts:48:7","stop":1750252545048} \ No newline at end of file diff --git a/allure-results/d4669b33-9c7f-4566-b4df-3431c097e9ad-result.json b/allure-results/d4669b33-9c7f-4566-b4df-3431c097e9ad-result.json new file mode 100644 index 0000000..8b7826e --- /dev/null +++ b/allure-results/d4669b33-9c7f-4566-b4df-3431c097e9ad-result.json @@ -0,0 +1 @@ +{"uuid":"d4669b33-9c7f-4566-b4df-3431c097e9ad","name":"Неверный пароль","historyId":"500ad758ee2db2bb60aa832fb0abbb94:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253474171,"uuid":"3dd6401b-d0b7-4def-9d98-460eab5a9ea1","stop":1750253474172}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253474171,"uuid":"92529b05-9c5e-4225-ab52-57372ad8b7ed","stop":1750253474174},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253474174,"uuid":"899fab1c-f674-432c-8d99-9a7c2a475de6","stop":1750253474209}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253474174,"uuid":"f6c51578-a22b-415d-81a1-f020bbbecd0b","stop":1750253474209}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253474170,"uuid":"2096b0ee-1ab8-4ef4-9e45-78780eb4bba0","stop":1750253474209},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253474211,"name":"page.goto(/login/authorization)","uuid":"311ef843-73b9-4a4d-8cf8-a4be89ff90a5","stop":1750253478077},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253478078,"name":"locator.fill(autotest@example.com)","uuid":"adcd322c-6b83-4838-bcee-cee0475e9005","stop":1750253478105},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253478106,"name":"locator.fill(wrongpass)","uuid":"03da91e2-aa0d-45d2-b49a-54d697f077cf","stop":1750253478162},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253478163,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"83955f75-83aa-4f0b-a2e0-3fc21d622a5b","stop":1750253478239},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253478240,"name":"expect.toBeVisible","uuid":"a209864f-2e13-495a-bddc-cbd695c200d3","stop":1750253478351},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253478352,"uuid":"8263ab31-fe3b-4d5d-87ec-1dd50d0a9cad","stop":1750253478352},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253478352,"uuid":"1f8ac9ae-a753-471a-8896-bddea88d3d7b","stop":1750253478352}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253478351,"uuid":"0a9b7186-9f63-4074-920e-07b641e4fc4b","stop":1750253478766}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-1"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"}],"links":[],"start":1750253474171,"testCaseId":"500ad758ee2db2bb60aa832fb0abbb94","fullName":"ui/login/login.negative.spec.ts:7:7","stop":1750253478765} \ No newline at end of file diff --git a/allure-results/d47a1b15-208e-40ba-885f-9d6c621a5266-result.json b/allure-results/d47a1b15-208e-40ba-885f-9d6c621a5266-result.json new file mode 100644 index 0000000..9a46e09 --- /dev/null +++ b/allure-results/d47a1b15-208e-40ba-885f-9d6c621a5266-result.json @@ -0,0 +1 @@ +{"uuid":"d47a1b15-208e-40ba-885f-9d6c621a5266","name":"Регистр в email (User@test.com ≠ user@test.com)","historyId":"cc4ad4b40ef726af11b2bd4f5523dbe0:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252843110,"uuid":"9e9bddff-945b-47a2-bae7-88c20fbb9931","stop":1750252843120}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252843109,"uuid":"d290961e-8854-4956-984c-0ecb6af4162f","stop":1750252843121},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252843121,"uuid":"7a601581-101e-41a3-93be-4c175955c323","stop":1750252843276}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252843121,"uuid":"2493dda3-d748-4083-a7e0-3d0003f942a6","stop":1750252843276}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252843108,"uuid":"45e59f66-1469-4120-b459-af12e9c1a541","stop":1750252843276},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252843277,"name":"page.goto(/login/authorization)","uuid":"83568752-7a7a-4a0e-a836-fae44320afff","stop":1750252844579},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252844581,"name":"locator.fill(Autotest@Example.com)","uuid":"0c7ae5ba-0dd6-49c7-88ea-0d131a8b5a9d","stop":1750252844609},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252844611,"name":"locator.fill(!Test123456)","uuid":"b0f6cf67-068d-4c4d-a14e-ac344336fb29","stop":1750252844628},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252844629,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"fff93322-f817-4151-96f0-d98c6775b9ad","stop":1750252844685},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252844686,"name":"expect.toBeVisible","uuid":"a4ca5edb-e701-4390-8f34-54aaa054b962","stop":1750252844795},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252844795,"uuid":"9ec6012f-41c8-432c-a557-3e2d9086cab5","stop":1750252844796},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252844796,"uuid":"2227b34b-5fd8-40b9-a0da-171db67d94c5","stop":1750252844796}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252844795,"uuid":"d8a8a844-47d5-4934-a411-3973eae9f1f5","stop":1750252844802}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"tag","value":"test.com"},{"name":"tag","value":"test.com)"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-1"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"}],"links":[],"start":1750252843109,"testCaseId":"cc4ad4b40ef726af11b2bd4f5523dbe0","fullName":"ui/login/login.negative.spec.ts:58:7","stop":1750252844801} \ No newline at end of file diff --git a/allure-results/d7107ceb-9701-454c-9583-5747dc81d31c-result.json b/allure-results/d7107ceb-9701-454c-9583-5747dc81d31c-result.json new file mode 100644 index 0000000..bec1529 --- /dev/null +++ b/allure-results/d7107ceb-9701-454c-9583-5747dc81d31c-result.json @@ -0,0 +1 @@ +{"uuid":"d7107ceb-9701-454c-9583-5747dc81d31c","name":"Переключатель видимости пароля показывает и скрывает ввод","historyId":"b1726395bd827a3a21fe3c829a098be4:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253554503,"uuid":"084be299-b658-4b7c-adbd-0d2d1b3fe23a","stop":1750253554505}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253554503,"uuid":"6910ba34-c9a3-41f7-9eb3-1838b1deba94","stop":1750253554506},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253554507,"uuid":"e6b7de8c-952f-4899-b56e-81b9073dbd8b","stop":1750253554544}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253554506,"uuid":"3e9f1776-57f5-4362-a2fe-6fd77c5fbaec","stop":1750253554544}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253554502,"uuid":"d01f626c-7fa1-4c41-8cac-c4566b4b0d89","stop":1750253554544},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253554545,"name":"page.goto(/login/authorization)","uuid":"d7999845-1a07-4580-8e95-a37c8886d086","stop":1750253555619},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253555620,"name":"locator.fill(!Test123456)","uuid":"b83e2d49-4cc1-4a03-afba-320de35fca61","stop":1750253555758},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253555759,"name":"locator.getByPlaceholder('Пароль').getAttribute","uuid":"635fd344-4557-4c94-a829-660b8aa3be64","stop":1750253555768},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253555769,"name":"expect.toBe","uuid":"c2bffd37-9d26-441a-a26d-ff9597a1e199","stop":1750253555770},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253555770,"name":"locator.getByAltText('показать пароль').click","uuid":"890df74d-368d-4dad-9928-71164209f902","stop":1750253555823},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253555824,"name":"locator.getByPlaceholder('Пароль').getAttribute","uuid":"0da6d39c-1da9-4759-8025-831318166caf","stop":1750253555829},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253555829,"name":"expect.toBe","uuid":"887ee992-71e6-4812-8809-eccf327dc494","stop":1750253555830},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253555830,"name":"locator.getByAltText('показать пароль').click","uuid":"c3fd0291-d120-44df-86e3-1db34e773d2b","stop":1750253555869},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253555869,"name":"locator.getByPlaceholder('Пароль').getAttribute","uuid":"4a4eef4a-7309-4b8b-a15a-45c3d0ba91a6","stop":1750253555877},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253555878,"name":"expect.toBe","uuid":"78e9e1da-21c5-47bc-8ecd-832b259dda15","stop":1750253555879},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253555880,"uuid":"a2bd02e8-c518-4f2b-8e2e-b8c9de97281f","stop":1750253555880},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253555880,"uuid":"5f2e92b5-1f44-47bd-8ad9-f3b8dd21c672","stop":1750253555880}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253555879,"uuid":"524fd18a-d64c-43db-bd9b-eff36cb6d036","stop":1750253556663}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.ui.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.ui.spec.ts > UI сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.ui.spec.ts"},{"name":"subSuite","value":"UI сценарии авторизации"}],"links":[],"start":1750253554502,"testCaseId":"b1726395bd827a3a21fe3c829a098be4","fullName":"ui/login/login.ui.spec.ts:7:7","stop":1750253556660} \ No newline at end of file diff --git a/allure-results/d74a24a2-a1f9-4c2d-9324-a722ab62b2e5-result.json b/allure-results/d74a24a2-a1f9-4c2d-9324-a722ab62b2e5-result.json new file mode 100644 index 0000000..4481747 --- /dev/null +++ b/allure-results/d74a24a2-a1f9-4c2d-9324-a722ab62b2e5-result.json @@ -0,0 +1 @@ +{"uuid":"d74a24a2-a1f9-4c2d-9324-a722ab62b2e5","name":"Некорректный новый пароль","historyId":"18246cf63350a71f5b46012e257bafcf:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252845679,"uuid":"e4f0594f-f475-41ec-9347-bd3c74249e3d","stop":1750252845686}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252845679,"uuid":"9f6baba4-3e21-4193-8748-4a8e799099cd","stop":1750252845687},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252845687,"uuid":"00727af6-f31a-4df3-9d95-4a0898a523b2","stop":1750252845848}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252845687,"uuid":"3b3cb486-6e36-471f-8961-6e074d13d673","stop":1750252845848}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252845678,"uuid":"e0c5a1a8-29cb-4d3e-af15-464aa9f066d2","stop":1750252845848},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252845849,"name":"page.goto(/recoverpassword)","uuid":"6abc50f5-3189-4f6f-aa98-6abc1cca1406","stop":1750252847173},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252847174,"name":"locator.fill(autotest@example.com)","uuid":"5e0d78dd-3261-4e59-9b04-cd0d6878865a","stop":1750252847215},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252847215,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"55551a20-3e1f-4bf0-bb7a-8fb42f80b1d4","stop":1750252847269},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252847270,"name":"locator.count(input[type=\"text\"])","uuid":"17a608c9-d66f-4eed-9785-3f95fe5ff48b","stop":1750252847271},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252847272,"name":"locator.fill(0)","uuid":"7a0cfa61-1412-4382-9154-e6d047126389","stop":1750252847381},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252847383,"name":"locator.fill(0)","uuid":"33d56256-177f-4189-9088-ac67cfe81539","stop":1750252847407},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252847408,"name":"locator.fill(0)","uuid":"b427c598-0466-4e1c-ad8e-d895baffcbed","stop":1750252847475},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252847475,"name":"locator.fill(0)","uuid":"09d8c0a6-2e70-48cb-b5fc-b21b2048a6fd","stop":1750252847490},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252847491,"name":"locator.fill(0)","uuid":"bd62217c-2e19-41b5-9cb2-acae6b2c9557","stop":1750252847502},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252847502,"name":"locator.fill(0)","uuid":"d8cf07ac-05ee-4d0d-afeb-72d92b4c13f5","stop":1750252847509},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252847511,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"219dbeeb-5dc7-4758-ac0c-ade7e6d4e039","stop":1750252847592},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252847593,"name":"locator.fill(123)","uuid":"62ed143c-da5e-4805-b6eb-abe8be0c7972","stop":1750252847700},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252847701,"name":"locator.fill(123)","uuid":"44b7513d-fa9f-44c4-8642-ba7db7b5ef51","stop":1750252847707},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252847707,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"7abb2b3a-6ef8-4bf9-86ed-28ca59e0dc1b","stop":1750252847777},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252847781,"name":"expect.toBeVisible","uuid":"e09b4119-c8af-4ef6-8924-c34b981e7dcc","stop":1750252847793},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252847794,"uuid":"736a518e-56a2-4b8a-a6a9-f36ae3bc8d9a","stop":1750252847794},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252847794,"uuid":"c67f1930-956b-4f42-ad28-ff38542c22eb","stop":1750252847794}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252847793,"uuid":"963ba39a-9d30-4f0b-b265-0153248bd598","stop":1750252847819}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-2"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"}],"links":[],"start":1750252845679,"testCaseId":"18246cf63350a71f5b46012e257bafcf","fullName":"ui/recovery/recover-negative.spec.ts:34:7","stop":1750252847817} \ No newline at end of file diff --git a/allure-results/d8f06c35-2fe3-4dc1-b6e8-bd870e40b257-result.json b/allure-results/d8f06c35-2fe3-4dc1-b6e8-bd870e40b257-result.json new file mode 100644 index 0000000..d2b73f9 --- /dev/null +++ b/allure-results/d8f06c35-2fe3-4dc1-b6e8-bd870e40b257-result.json @@ -0,0 +1 @@ +{"uuid":"d8f06c35-2fe3-4dc1-b6e8-bd870e40b257","name":"Некорректный email формат","historyId":"de8c598c53adc6e2133478f1b9141597:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252824694,"uuid":"2f41b8af-f4fc-48c0-ba89-e77a834f2b1e","stop":1750252824697}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252824693,"uuid":"fb074347-187c-43e2-8066-8bcc74039b41","stop":1750252824698},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252824698,"uuid":"9eaf5adc-735a-4a50-a0d6-0b0e39c6308e","stop":1750252824742}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252824698,"uuid":"2057a610-10ee-496e-ae87-3aad483ca02e","stop":1750252824742}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252824693,"uuid":"91edb034-6ce8-432c-b40f-1ae2053edb02","stop":1750252824742},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252824743,"name":"page.goto(/login/registration)","uuid":"62d76c95-13ed-4eb0-83ad-f9f4a98bb892","stop":1750252825615},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252825616,"name":"locator.fill(invalid-email)","uuid":"2760be87-d122-49ff-8c84-0cf373a76e68","stop":1750252825668},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252825669,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"6c5bf85b-3c80-4616-ad64-831a5f65b1bc","stop":1750252825707},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252825708,"name":"expect.toBeVisible","uuid":"822c3243-f181-4446-8aa5-69d7c95eee3c","stop":1750252825710},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252825711,"uuid":"e4f9e684-a72e-4721-b4e5-62f74886b092","stop":1750252825711},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252825711,"uuid":"6efde8ce-1b89-4ba5-95d8-f50501b5fe33","stop":1750252825711}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252825711,"uuid":"fd1c3639-8424-4479-9625-e90d515e9b71","stop":1750252825714}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750252824693,"testCaseId":"de8c598c53adc6e2133478f1b9141597","fullName":"ui/registration/register.negative.spec.ts:28:7","stop":1750252825713} \ No newline at end of file diff --git a/allure-results/d9e86c4e-a39c-4a97-adae-39ab9a1c2485-result.json b/allure-results/d9e86c4e-a39c-4a97-adae-39ab9a1c2485-result.json new file mode 100644 index 0000000..c69da0e --- /dev/null +++ b/allure-results/d9e86c4e-a39c-4a97-adae-39ab9a1c2485-result.json @@ -0,0 +1 @@ +{"uuid":"d9e86c4e-a39c-4a97-adae-39ab9a1c2485","name":"Слишком длинная должность","historyId":"2214c0f917091cfcda832cd03e01bb76:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252849869,"uuid":"6ec4e302-5dfa-47b9-b501-2f090a953567","stop":1750252849880}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252849869,"uuid":"f71c53c0-cce5-42f9-859a-d408f2faf0ee","stop":1750252849880},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252849881,"uuid":"73f0e8d7-26ec-445c-8a9e-26d6111eb275","stop":1750252850025}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252849880,"uuid":"9de19dbc-374e-418d-a957-919eceb6d8c7","stop":1750252850025}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252849869,"uuid":"de87f789-2bd6-4a7b-a4ca-f92796e16627","stop":1750252850025},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252850029,"name":"page.goto(/login/registration)","uuid":"983f57f7-5c52-41fc-8e1a-73ac9d002480","stop":1750252851294},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252851302,"name":"locator.fill(XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX)","uuid":"5a515719-973a-47ef-9600-3abdeb41d9e1","stop":1750252851334},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252851335,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"89648a9b-feb9-4bcf-af5e-a257895ab30c","stop":1750252851399},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252851400,"name":"expect.toBeVisible","uuid":"8742a77d-17b1-4b5f-8284-587be43ed10c","stop":1750252851415},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252851415,"uuid":"e23c880a-13b3-46b0-9a3c-b23d120de79e","stop":1750252851415},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252851415,"uuid":"a5dfdcfc-3033-4d03-8ab9-dec30a816dc2","stop":1750252851415}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252851415,"uuid":"b900849b-7284-4b05-8b52-97035576b2f3","stop":1750252851421}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-1"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750252849868,"testCaseId":"2214c0f917091cfcda832cd03e01bb76","fullName":"ui/registration/register.negative.spec.ts:38:7","stop":1750252851419} \ No newline at end of file diff --git a/allure-results/dc12d39d-f27a-48eb-bdad-7cefc0e5091d-result.json b/allure-results/dc12d39d-f27a-48eb-bdad-7cefc0e5091d-result.json new file mode 100644 index 0000000..08bc2b2 --- /dev/null +++ b/allure-results/dc12d39d-f27a-48eb-bdad-7cefc0e5091d-result.json @@ -0,0 +1 @@ +{"uuid":"dc12d39d-f27a-48eb-bdad-7cefc0e5091d","name":"has title","historyId":"3a2a809b453af4fd564578d1a27f3e45:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserType.launch","start":1750253470949,"uuid":"d71bc888-610b-44cd-8a47-698a6c81e722","stop":1750253471353}],"attachments":[],"parameters":[],"name":"fixture: browser","start":1750253470947,"uuid":"f273b244-7b65-45da-b3bd-8c5f5b7e3fc1","stop":1750253471354},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253471359,"uuid":"813b53fa-cf3e-410b-a0df-fccac9ac4225","stop":1750253471377}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253471355,"uuid":"72e83bf2-195c-4e84-afda-843b2131cbf3","stop":1750253471400},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253471401,"uuid":"b99749f3-9a33-48ab-a0dd-277550707f88","stop":1750253471645}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253471400,"uuid":"4b26c91c-3301-40d6-be51-3e93057731f0","stop":1750253471645}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253470940,"uuid":"02ae5f9e-180f-4b75-a7eb-945a36ed7362","stop":1750253471645},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253471647,"name":"page.goto(https://playwright.dev/)","uuid":"c56b61c8-5b21-4de9-a438-642e44c5c2cf","stop":1750253485480},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253485482,"name":"expect.toHaveTitle","uuid":"d2ef08be-7b1b-49f3-adae-a1b6aac5d0d5","stop":1750253485516},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253485517,"uuid":"d976e230-8655-40d1-a319-8efdc9a58ca8","stop":1750253485517},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253485517,"uuid":"608d5272-9873-46a6-a17a-2b348eafab2d","stop":1750253485517}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253485516,"uuid":"b5e2d9d5-b0a8-49c4-ab61-eb4cb13a9044","stop":1750253485702}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > chromium > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"example.spec.ts"}],"links":[],"start":1750253470947,"testCaseId":"3a2a809b453af4fd564578d1a27f3e45","fullName":"example.spec.ts:3:5","stop":1750253485298} \ No newline at end of file diff --git a/allure-results/dca4d967-aecb-4f7b-b73d-eb52083a3747-result.json b/allure-results/dca4d967-aecb-4f7b-b73d-eb52083a3747-result.json new file mode 100644 index 0000000..8bb9002 --- /dev/null +++ b/allure-results/dca4d967-aecb-4f7b-b73d-eb52083a3747-result.json @@ -0,0 +1 @@ +{"uuid":"dca4d967-aecb-4f7b-b73d-eb52083a3747","name":"Переключатель видимости пароля показывает и скрывает ввод","historyId":"b1726395bd827a3a21fe3c829a098be4:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253625772,"uuid":"fbf8cc25-630f-4024-b1db-60db15af39e7","stop":1750253625775}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253625772,"uuid":"662e4756-ff2e-4fb6-a904-5e5956e36e83","stop":1750253625778},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253625779,"uuid":"84e8e309-0a45-4d4c-8935-748aea324e48","stop":1750253625918}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253625778,"uuid":"e9926521-7a61-440a-89c9-d88b6bdd2b11","stop":1750253625918}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253625771,"uuid":"85e3cab1-64e1-45e9-8191-83a9e44f2fda","stop":1750253625918},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253625919,"name":"page.goto(/login/authorization)","uuid":"5905d48a-4758-43d5-81e1-4ba9b01e9089","stop":1750253627083},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253627084,"name":"locator.fill(!Test123456)","uuid":"6a63e0be-2670-4e40-bdaa-8f2baa8168b0","stop":1750253627138},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253627139,"name":"locator.getByPlaceholder('Пароль').getAttribute","uuid":"e85567a7-c09d-4e99-bb74-6c9520a7e3ce","stop":1750253627166},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253627166,"name":"expect.toBe","uuid":"929b8379-c1c6-47a7-8c11-8f5f3d1f9e51","stop":1750253627167},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253627167,"name":"locator.getByAltText('показать пароль').click","uuid":"171705ef-9ddd-415c-b147-c72d913e0ca7","stop":1750253627289},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253627291,"name":"locator.getByPlaceholder('Пароль').getAttribute","uuid":"9a5b2c65-03eb-4a1f-8471-024082526702","stop":1750253627306},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253627307,"name":"expect.toBe","uuid":"a3bbb600-3fbe-45df-92cd-05127ede72c6","stop":1750253627307},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253627308,"name":"locator.getByAltText('показать пароль').click","uuid":"06c75cd2-6ee4-48f6-972e-32c05d08e4f4","stop":1750253627343},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253627344,"name":"locator.getByPlaceholder('Пароль').getAttribute","uuid":"5350a58a-941a-446c-afb8-f0ce843e3b24","stop":1750253627347},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253627347,"name":"expect.toBe","uuid":"ac12adb3-3d34-4be6-afe6-d825373828ad","stop":1750253627347},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253627347,"uuid":"a9ae8981-f557-4a2a-8199-c32f57846cc0","stop":1750253627347},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253627347,"uuid":"3281907e-1264-465c-bb54-053897087515","stop":1750253627347}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253627347,"uuid":"17607a26-75ef-46a7-b058-bac8e641185e","stop":1750253627419}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.ui.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.ui.spec.ts > UI сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-2"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.ui.spec.ts"},{"name":"subSuite","value":"UI сценарии авторизации"}],"links":[],"start":1750253625771,"testCaseId":"b1726395bd827a3a21fe3c829a098be4","fullName":"ui/login/login.ui.spec.ts:7:7","stop":1750253627417} \ No newline at end of file diff --git a/allure-results/dce21a05-1bfe-4dfe-959f-dbceb6e02889-result.json b/allure-results/dce21a05-1bfe-4dfe-959f-dbceb6e02889-result.json new file mode 100644 index 0000000..e57a998 --- /dev/null +++ b/allure-results/dce21a05-1bfe-4dfe-959f-dbceb6e02889-result.json @@ -0,0 +1 @@ +{"uuid":"dce21a05-1bfe-4dfe-959f-dbceb6e02889","name":"Переключатель видимости пароля показывает и скрывает ввод","historyId":"b1726395bd827a3a21fe3c829a098be4:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252813038,"uuid":"c31d441d-954b-4174-9ec6-935f32f0d58a","stop":1750252813039}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252813037,"uuid":"38c6b823-61b1-4870-8114-a65d5ee2d0a2","stop":1750252813039},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252813039,"uuid":"13945c8b-6f1a-471d-9254-012331bca470","stop":1750252813099}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252813039,"uuid":"b74722cc-be83-40bd-bc2b-350ec4b15536","stop":1750252813099}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252813036,"uuid":"3b96f734-5114-4b3c-b4c6-b38b9e957c5f","stop":1750252813099},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252813100,"name":"page.goto(/login/authorization)","uuid":"59da0b4c-9a83-4f4d-af14-83668248d5dd","stop":1750252813782},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252813783,"name":"locator.fill(!Test123456)","uuid":"7e18600a-ac21-4f0b-b8fb-6e61a2c3e865","stop":1750252813873},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252813874,"name":"locator.getByPlaceholder('Пароль').getAttribute","uuid":"163b45b3-7d1a-40d9-a055-9b8b3d05d914","stop":1750252813875},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252813875,"name":"expect.toBe","uuid":"8e82c3ef-5a92-4bd1-ae68-edc766065903","stop":1750252813876},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252813876,"name":"locator.getByAltText('показать пароль').click","uuid":"4e9786cc-27be-42ca-bcb5-b552bdc15f38","stop":1750252813908},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252813909,"name":"locator.getByPlaceholder('Пароль').getAttribute","uuid":"ce7058a7-9f91-4907-80e9-5720ea8a5a3e","stop":1750252813910},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252813910,"name":"expect.toBe","uuid":"9fc7dad6-35d0-4bf7-98f1-1cc966073f32","stop":1750252813910},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252813911,"name":"locator.getByAltText('показать пароль').click","uuid":"47577a74-63c0-44cb-8de2-58b46e08ded8","stop":1750252813942},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252813943,"name":"locator.getByPlaceholder('Пароль').getAttribute","uuid":"875c2ad6-4770-4fea-823f-a7f771523fd1","stop":1750252813946},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252813946,"name":"expect.toBe","uuid":"847e0c92-fb3c-40e7-9f8e-292083c1e7a2","stop":1750252813946},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252813946,"uuid":"faa1ff10-a035-464c-a2db-103abc2de960","stop":1750252813946},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252813947,"uuid":"3176adb5-a0bd-47b0-a3d6-0c114756b678","stop":1750252813947}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252813946,"uuid":"056b93e9-37a8-448b-b806-d34cd7467379","stop":1750252813951}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.ui.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.ui.spec.ts > UI сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.ui.spec.ts"},{"name":"subSuite","value":"UI сценарии авторизации"}],"links":[],"start":1750252813037,"testCaseId":"b1726395bd827a3a21fe3c829a098be4","fullName":"ui/login/login.ui.spec.ts:7:7","stop":1750252813951} \ No newline at end of file diff --git a/allure-results/deeaf9bf-bde5-4e2e-96f9-eaee1fa1020f-result.json b/allure-results/deeaf9bf-bde5-4e2e-96f9-eaee1fa1020f-result.json new file mode 100644 index 0000000..4bc5dbb --- /dev/null +++ b/allure-results/deeaf9bf-bde5-4e2e-96f9-eaee1fa1020f-result.json @@ -0,0 +1 @@ +{"uuid":"deeaf9bf-bde5-4e2e-96f9-eaee1fa1020f","name":"Пустое поле \"Повторите пароль\"","historyId":"e6d2fb91f0b85b95c3962ffc860dddd7:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253628908,"uuid":"98873e0a-276b-4905-a40d-f778807b854d","stop":1750253628916}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253628907,"uuid":"6f429577-656f-4f53-9853-90422cb555b4","stop":1750253628920},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253628920,"uuid":"5f108fef-d5f2-4661-958b-f99c9fb306f4","stop":1750253629056}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253628920,"uuid":"d04f4b9c-31b6-4e6b-8f7d-8942bb3cbaeb","stop":1750253629056}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253628906,"uuid":"8a0ccb73-5ca0-4447-844a-9244390c3890","stop":1750253629056},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253629056,"name":"page.goto(/recoverpassword)","uuid":"62f6ccb7-ee7e-4335-8913-4eaf3a1a952e","stop":1750253631875},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253631875,"name":"locator.fill(autotest@example.com)","uuid":"f6bc71e9-133b-4138-b0b7-344dc924f34a","stop":1750253631926},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253631927,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"3d4a2fc9-b127-4224-ba00-92ab93420ee1","stop":1750253632195},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253632195,"name":"locator.count(input[type=\"text\"])","uuid":"a513349f-db36-410d-a8ff-685336d69cbb","stop":1750253632197},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253632198,"name":"locator.fill(0)","uuid":"e176798d-520f-4c74-887c-fa937aa3683e","stop":1750253632387},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253632387,"name":"locator.fill(0)","uuid":"d63135d1-f24e-4dad-9201-f5ce5cadba61","stop":1750253632394},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253632395,"name":"locator.fill(0)","uuid":"583a0a89-38c6-41e4-8744-1f3b3940fc3b","stop":1750253632400},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253632401,"name":"locator.fill(0)","uuid":"90adfaf3-60d2-4f9e-8f6a-5c7fe276bc8c","stop":1750253632408},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253632408,"name":"locator.fill(0)","uuid":"e2d65278-1618-49d4-afde-9b000b4af0e0","stop":1750253632414},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253632415,"name":"locator.fill(0)","uuid":"9a166603-e228-440e-96ce-a84f5bcdfe7c","stop":1750253632435},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253632436,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"9efcb4b6-3e20-468a-bafd-c0e34f1b6ca2","stop":1750253632496},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253632496,"name":"locator.fill(!Test123456)","uuid":"0c993872-937e-4472-9478-eb4dd0e44f0d","stop":1750253632545},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253632546,"name":"locator.fill()","uuid":"d6dd30d7-8825-4dea-a44c-49748af20a86","stop":1750253632555},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253632556,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"7e6fd0f4-d5f4-49bb-a801-d65a35166297","stop":1750253632611},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253632611,"name":"expect.toBeVisible","uuid":"888cd478-045d-49c1-b8f9-f10d591a718b","stop":1750253632615},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253632616,"uuid":"7df92315-8091-471e-b301-5629a12f0e58","stop":1750253632616},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253632616,"uuid":"63a6fcfa-5854-4dbc-903d-e7b93b91f7f8","stop":1750253632616}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253632616,"uuid":"36836086-976b-4521-a5b2-9047d03e5b93","stop":1750253632676}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-0"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"}],"links":[],"start":1750253628906,"testCaseId":"e6d2fb91f0b85b95c3962ffc860dddd7","fullName":"ui/recovery/recover-negative.spec.ts:45:7","stop":1750253632674} \ No newline at end of file diff --git a/allure-results/dfa69183-5c0d-49e0-845a-a9d8f9c900ce-result.json b/allure-results/dfa69183-5c0d-49e0-845a-a9d8f9c900ce-result.json new file mode 100644 index 0000000..d20aed4 --- /dev/null +++ b/allure-results/dfa69183-5c0d-49e0-845a-a9d8f9c900ce-result.json @@ -0,0 +1 @@ +{"uuid":"dfa69183-5c0d-49e0-845a-a9d8f9c900ce","name":"get started link","historyId":"37e4aa066a5f6eac2e4d3b98a2ed98a7:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserType.launch","start":1750252852208,"uuid":"3e7e66c7-2793-4d8b-b75d-82db244a55a8","stop":1750252852582}],"attachments":[],"parameters":[],"name":"fixture: browser","start":1750252852207,"uuid":"439ae22e-f64c-48f7-ab6d-d81a8f06a21b","stop":1750252852582},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252852584,"uuid":"6e8d4d1b-a59d-4063-aaf4-90eff6880932","stop":1750252852657}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252852583,"uuid":"6f64da96-1964-4178-97bd-3c58a71bf244","stop":1750252852658},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252852659,"uuid":"ae6de765-bd1f-4331-af94-0f600498501e","stop":1750252853199}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252852658,"uuid":"14559166-c22a-4c0a-af8d-334b210ac716","stop":1750252853199}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252852204,"uuid":"67c1b435-c3a7-45d6-affa-b3616f333923","stop":1750252853200},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252853201,"name":"page.goto(https://playwright.dev/)","uuid":"6e8d7595-67c7-4a97-9cb8-70849ade863d","stop":1750252854338},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252854341,"name":"locator.getByRole('link', { name: 'Get started' }).click","uuid":"08b2c856-345d-4af8-b700-873f898aba4a","stop":1750252854396},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252854397,"name":"expect.toBeVisible","uuid":"aca520b5-a238-4cd8-90e1-b25d57c8cea3","stop":1750252854548},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252854549,"uuid":"1f38781b-d200-4ced-bca2-4cd9cbdaac43","stop":1750252854549},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252854549,"uuid":"70cf38fe-ee1f-4e79-9880-22ea6a5f910d","stop":1750252854549}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252854549,"uuid":"5cef5b1e-4818-48fe-ac22-68462b61a7e2","stop":1750252854562}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > webkit > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-1"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"example.spec.ts"}],"links":[],"start":1750252852203,"testCaseId":"37e4aa066a5f6eac2e4d3b98a2ed98a7","fullName":"example.spec.ts:10:5","stop":1750252854182} \ No newline at end of file diff --git a/allure-results/e0a3e2aa-62f8-403b-80dd-012ee053b43f-result.json b/allure-results/e0a3e2aa-62f8-403b-80dd-012ee053b43f-result.json new file mode 100644 index 0000000..a73cf23 --- /dev/null +++ b/allure-results/e0a3e2aa-62f8-403b-80dd-012ee053b43f-result.json @@ -0,0 +1 @@ +{"uuid":"e0a3e2aa-62f8-403b-80dd-012ee053b43f","name":"Пользователь успешно восстанавливает пароль","historyId":"1779c735aef9d62c071557455e74e57f:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253629451,"uuid":"4a4800e5-2fb4-4fd5-bc57-9647ebdb00b5","stop":1750253629452}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253629451,"uuid":"9723309d-de19-4a0c-98a8-c87e99da044f","stop":1750253629454},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253629454,"uuid":"0cdc2de6-5312-4de6-9488-9f3baeb18582","stop":1750253629582}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253629454,"uuid":"5453bde9-b6d7-4ac1-9db2-528cae8316fa","stop":1750253629583}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253629450,"uuid":"5dab6005-6fc9-4ea3-8525-f13aebf11708","stop":1750253629583},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253629583,"name":"page.goto(/recoverpassword)","uuid":"c5b0a6cb-87f2-4282-b506-e2c4067386ca","stop":1750253630458},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253630459,"name":"locator.fill(autotest@example.com)","uuid":"9cd9d92c-b552-4ad1-850a-d2c1a5f7fb2f","stop":1750253630511},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253630512,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"7c7c97c4-5d94-4fe5-acc4-094dc8adcee2","stop":1750253630590},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253630590,"name":"expect.toHaveURL","uuid":"456d2ce0-e4c0-41ab-abc0-2d7864613cc7","stop":1750253630697},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253630697,"name":"locator.count(input[type=\"text\"])","uuid":"00d77ff2-d548-49b5-8632-4ae4c7b7835f","stop":1750253630701},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253630702,"name":"locator.fill(0)","uuid":"3dcff0fc-1df3-4652-89f2-6255164e4a1c","stop":1750253630713},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253630714,"name":"locator.fill(0)","uuid":"bcad4d35-7840-4033-b5fd-ae5bb2666bd1","stop":1750253630735},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253630736,"name":"locator.fill(0)","uuid":"d5c35fae-eae9-4fe6-937c-97185b7c8297","stop":1750253630744},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253630745,"name":"locator.fill(0)","uuid":"e55fc147-6896-4d84-9db3-4dfd9ed81e6c","stop":1750253630751},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253630752,"name":"locator.fill(0)","uuid":"e6c2cd45-c7b9-486c-8b93-8dd473b428de","stop":1750253630760},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253630761,"name":"locator.fill(0)","uuid":"dfa7a1fa-7514-46cc-8eb6-3ea75129f27d","stop":1750253630768},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253630770,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"0b6aa322-beab-4564-b72b-b1d5a6a9a57d","stop":1750253630843},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253630844,"name":"expect.toBeVisible","uuid":"c36b3539-3d0c-4a0d-804b-47a03ea76960","stop":1750253630948},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253630949,"name":"locator.fill(!Test123456)","uuid":"07b4f691-b8eb-4797-ae32-eef4e548b44f","stop":1750253630958},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253630958,"name":"locator.fill(!Test123456)","uuid":"df5f00c2-520b-4abf-b16a-d1b44fc9ac6c","stop":1750253630965},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253630966,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"f13c561d-b6f2-4939-a96c-0f708be6b855","stop":1750253631013},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253631014,"name":"expect.toHaveURL","uuid":"62913eaa-3603-4f7c-94dc-af9f168eccf4","stop":1750253631127},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253631128,"name":"expect.toBeVisible","uuid":"b4c991a4-c729-4675-9591-68d6d27cd556","stop":1750253631132},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253631132,"uuid":"d9e24250-f4c3-4abe-9d60-99910be27332","stop":1750253631132},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253631132,"uuid":"cd9af565-b975-4ed1-b3d2-05db879e068f","stop":1750253631132}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253631132,"uuid":"b7020079-f7cc-4716-9031-90d5e4b0012f","stop":1750253631205}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-password.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-password.spec.ts > Восстановление пароля — позитивные сценарии"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-2"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-password.spec.ts"},{"name":"subSuite","value":"Восстановление пароля — позитивные сценарии"}],"links":[],"start":1750253629450,"testCaseId":"1779c735aef9d62c071557455e74e57f","fullName":"ui/recovery/recover-password.spec.ts:7:7","stop":1750253631204} \ No newline at end of file diff --git a/allure-results/e237b9cd-e532-4a2c-9f3c-11c51dab0a80-result.json b/allure-results/e237b9cd-e532-4a2c-9f3c-11c51dab0a80-result.json new file mode 100644 index 0000000..f28ef5a --- /dev/null +++ b/allure-results/e237b9cd-e532-4a2c-9f3c-11c51dab0a80-result.json @@ -0,0 +1 @@ +{"uuid":"e237b9cd-e532-4a2c-9f3c-11c51dab0a80","name":"Некорректный email формат","historyId":"de8c598c53adc6e2133478f1b9141597:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252484905,"uuid":"0c526817-4402-4731-9e51-37e6293671bd","stop":1750252485690}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252484904,"uuid":"9b3bd756-7ad5-455a-9c1a-c87cb7bac874","stop":1750252485691},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252485691,"uuid":"6b973ea0-0873-429a-b759-f4592b0d572f","stop":1750252485950}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252485691,"uuid":"f862c2f9-9879-42b6-b20f-d805a904f9cc","stop":1750252485950}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252484903,"uuid":"95ae8638-b720-4791-89bb-f7c785cead6e","stop":1750252485950},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252485951,"name":"page.goto(/login/registration)","uuid":"e5e05b7a-6824-4d19-b03f-8dce6fbc3b8d","stop":1750252489880},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252489884,"name":"locator.fill(invalid-email)","uuid":"8a6b2e79-7ae4-46db-8470-e040885a26c5","stop":1750252490917},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252490920,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"0d20e619-8fd9-4b6c-985d-1f38f64e46b9","stop":1750252501964},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252501966,"name":"expect.toBeVisible","uuid":"aaf8cd59-77cd-4c02-95c6-c32ceaeb2804","stop":1750252508201},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252508202,"uuid":"67668d11-8420-40fe-b4c3-c2f6e27040a5","stop":1750252508202},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252508202,"uuid":"87f9847b-1103-4785-b951-5f9cd3698ee8","stop":1750252508203}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252508202,"uuid":"87659a42-9390-4814-a075-7d25d8b65acf","stop":1750252508236}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-57209-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750252484903,"testCaseId":"de8c598c53adc6e2133478f1b9141597","fullName":"ui/registration/register.negative.spec.ts:28:7","stop":1750252508228} \ No newline at end of file diff --git a/allure-results/e243ca52-cf83-4928-8a40-de4190a46f03-result.json b/allure-results/e243ca52-cf83-4928-8a40-de4190a46f03-result.json new file mode 100644 index 0000000..184b6b3 --- /dev/null +++ b/allure-results/e243ca52-cf83-4928-8a40-de4190a46f03-result.json @@ -0,0 +1 @@ +{"uuid":"e243ca52-cf83-4928-8a40-de4190a46f03","name":"Некорректный новый пароль","historyId":"18246cf63350a71f5b46012e257bafcf:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252859377,"uuid":"1c18eb3f-ecdb-4e50-a7ee-8cd3d1081801","stop":1750252859381}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252859377,"uuid":"1ebd1557-caef-4010-bf1a-0287fd3c9436","stop":1750252859382},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252859382,"uuid":"9be1c77f-981a-45c4-9a2c-7c2bee7d20d7","stop":1750252859489}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252859382,"uuid":"73daf593-92fa-4929-9beb-34ff4e331666","stop":1750252859489}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252859376,"uuid":"ed6fcc10-33dc-4c2e-87c2-22fd4c65baea","stop":1750252859489},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252859490,"name":"page.goto(/recoverpassword)","uuid":"bdade3e7-38b7-402f-aa60-74caaf537807","stop":1750252860489},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252860490,"name":"locator.fill(autotest@example.com)","uuid":"43d92ced-bd80-461b-8b14-8f45a83e2ab3","stop":1750252860535},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252860536,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"bab78071-f75f-47b1-ba4c-eb77dc2b737f","stop":1750252860804},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252860804,"name":"locator.count(input[type=\"text\"])","uuid":"9f306c24-04d8-4902-9066-154e8861c930","stop":1750252860806},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252860808,"name":"locator.fill(0)","uuid":"c0ff64de-960b-46d3-98b3-420438adfbb6","stop":1750252860854},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252860855,"name":"locator.fill(0)","uuid":"1bedeaf5-1e96-49ca-80e5-72568a8396c0","stop":1750252860862},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252860863,"name":"locator.fill(0)","uuid":"0448d59c-c408-42df-8938-77986ce964b7","stop":1750252860873},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252860873,"name":"locator.fill(0)","uuid":"cd17d9c1-5177-4fa1-8a4a-93aa531a8e02","stop":1750252860879},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252860881,"name":"locator.fill(0)","uuid":"cc873414-1937-4926-949c-8642bdefce00","stop":1750252860890},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252860890,"name":"locator.fill(0)","uuid":"82d2866c-67c6-4646-a941-04d7e818f2d1","stop":1750252860906},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252860907,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"7f2d39e2-b8f1-48f5-a38c-49e0bd413b4a","stop":1750252861041},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252861042,"name":"locator.fill(123)","uuid":"f4ec72e4-82a1-4fdd-9cfd-6fe8fcf62452","stop":1750252861133},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252861134,"name":"locator.fill(123)","uuid":"1dc71f8d-34d8-4057-89ad-113a6e77e135","stop":1750252861144},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252861147,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"e882068b-2615-4533-9a3c-29e2fcf080e1","stop":1750252861182},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252861183,"name":"expect.toBeVisible","uuid":"b346ecc6-a372-48a8-8f41-fe61c1471981","stop":1750252861185},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252861186,"uuid":"c360cb3d-68e9-4c9d-bbb2-77ed83c51fbb","stop":1750252861186},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252861186,"uuid":"693e7bc7-cef8-4937-9db4-ce489d958c24","stop":1750252861186}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252861185,"uuid":"a3d0acb7-9f71-4bf0-9754-17bdebcf19d9","stop":1750252861188}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-1"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"}],"links":[],"start":1750252859376,"testCaseId":"18246cf63350a71f5b46012e257bafcf","fullName":"ui/recovery/recover-negative.spec.ts:34:7","stop":1750252861187} \ No newline at end of file diff --git a/allure-results/e25e414f-0314-4f98-b721-f8ece0a61829-result.json b/allure-results/e25e414f-0314-4f98-b721-f8ece0a61829-result.json new file mode 100644 index 0000000..2393d14 --- /dev/null +++ b/allure-results/e25e414f-0314-4f98-b721-f8ece0a61829-result.json @@ -0,0 +1 @@ +{"uuid":"e25e414f-0314-4f98-b721-f8ece0a61829","name":"Несуществующий email","historyId":"c118be77fa2af6f0e0052ec7489ba66c:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253556277,"uuid":"e72856bc-44b6-4b7b-ba36-c36ac7aa65cd","stop":1750253556278}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253556277,"uuid":"4875bc57-a53e-48a6-8282-5d4bf3397d55","stop":1750253556279},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253556280,"uuid":"ec5a8de3-6f40-45a0-98ed-498745bd47f1","stop":1750253556313}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253556280,"uuid":"cb27086b-9542-4e84-8010-ba5aa339eada","stop":1750253556313}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253556276,"uuid":"be7cfb72-65a5-4015-9828-8486cf5fffa2","stop":1750253556313},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253556314,"name":"page.goto(/recoverpassword)","uuid":"d3a52598-1f20-458f-9b29-5a233d5edc37","stop":1750253561868},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253561869,"name":"locator.fill(nobody@example.com)","uuid":"cafa916f-29f4-470e-9cc3-ab14bf2658d2","stop":1750253561922},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253561923,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"da2840ae-c456-4006-b004-20654279d7c0","stop":1750253561972},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253561973,"name":"expect.toBeVisible","uuid":"af1abf5c-72c1-4042-84c6-64ce035ee692","stop":1750253562052},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253562052,"uuid":"6e2d6281-0e67-4402-9f8d-50adcc13cf98","stop":1750253562053},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253562053,"uuid":"3b3ae8e5-7abb-4d6f-bf52-0470864d688c","stop":1750253562053}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253562052,"uuid":"43c63c50-8444-4c61-9292-3ef939d38a51","stop":1750253562861}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"}],"links":[],"start":1750253556276,"testCaseId":"c118be77fa2af6f0e0052ec7489ba66c","fullName":"ui/recovery/recover-negative.spec.ts:15:7","stop":1750253562859} \ No newline at end of file diff --git a/allure-results/e2673461-498a-480f-9476-28bfc598e895-result.json b/allure-results/e2673461-498a-480f-9476-28bfc598e895-result.json new file mode 100644 index 0000000..0eff614 --- /dev/null +++ b/allure-results/e2673461-498a-480f-9476-28bfc598e895-result.json @@ -0,0 +1 @@ +{"uuid":"e2673461-498a-480f-9476-28bfc598e895","name":"Некорректное имя и фамилия (слишком длинные)","historyId":"7134a02a04b606099de5c920fb62990a:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253491650,"uuid":"38e134c1-a09f-4271-a5ab-c2b375823732","stop":1750253491652}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253491650,"uuid":"64cafe5b-cd72-47f2-aea7-24b6023b3463","stop":1750253491657},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253491658,"uuid":"d908251b-cc9b-488b-a898-7683d41cbd19","stop":1750253491692}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253491658,"uuid":"cf697f7d-863e-489c-a84a-4e4d3d50a5a6","stop":1750253491693}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253491649,"uuid":"ee4b2f91-9455-4021-8a0c-b8914977b25d","stop":1750253491693},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253491695,"name":"page.goto(/login/registration)","uuid":"501b4144-575e-4ddc-a5ac-2692dd1166c4","stop":1750253497574},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253497575,"name":"locator.fill(ААААААААААААААААААААААААААААААААААААААААААААААААААА)","uuid":"fc6be45f-7601-4f23-87d2-22152ef30b15","stop":1750253497599},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253497600,"name":"locator.fill(БББББББББББББББББББББББББББББББББББББББББББББББББББ)","uuid":"9f887e54-9a7d-47ac-8c24-f056c6d18f0b","stop":1750253497609},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253497609,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"f21881dc-6550-45ff-8f23-2ffe615434a8","stop":1750253497656},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253497657,"name":"expect.toBeVisible","uuid":"e371a553-2423-4c64-8309-dddc8b7f339f","stop":1750253497660},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253497661,"name":"expect.toBeVisible","uuid":"a3b15ab5-5b9c-4b81-adb1-e52b820d4cba","stop":1750253497695},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253497695,"uuid":"466b7fe0-e4ae-48ad-817f-1598a6e629b1","stop":1750253497695},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253497696,"uuid":"9240a90a-2c09-4cd5-93c1-f81a8ac3c57d","stop":1750253497696}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253497695,"uuid":"208c808e-4299-4530-a9b6-4661c4386a00","stop":1750253502881}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750253491650,"testCaseId":"7134a02a04b606099de5c920fb62990a","fullName":"ui/registration/register.negative.spec.ts:16:7","stop":1750253502879} \ No newline at end of file diff --git a/allure-results/e4d20963-9bc4-45b3-b37f-b3186a763fce-result.json b/allure-results/e4d20963-9bc4-45b3-b37f-b3186a763fce-result.json new file mode 100644 index 0000000..14f9900 --- /dev/null +++ b/allure-results/e4d20963-9bc4-45b3-b37f-b3186a763fce-result.json @@ -0,0 +1 @@ +{"uuid":"e4d20963-9bc4-45b3-b37f-b3186a763fce","name":"Отправка пустой формы","historyId":"61b0fd9a6b9153c787b71ef3413cea92:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253564296,"uuid":"1b27b1d6-dd97-4f0c-bd1c-80d5c591d855","stop":1750253564297}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253564296,"uuid":"e9f18eee-8ff7-432c-bf36-8bb8fc2a2303","stop":1750253564298},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253564298,"uuid":"ea27654a-63d2-4388-87e5-399f11b0a5c9","stop":1750253564331}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253564298,"uuid":"a9d72953-e027-4ca5-92ff-a77c6889d073","stop":1750253564331}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253564295,"uuid":"ea5c6f72-fb0a-45a2-9c69-c05994f3593c","stop":1750253564331},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253564333,"name":"page.goto(/login/registration)","uuid":"bf9e6b96-0eb1-4488-b645-e02ac2e851fb","stop":1750253569552},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253569554,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"34bae150-250f-43a5-a17a-8d3545c47c71","stop":1750253569600},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253569601,"name":"locator.allTextContents(div[name=\"error\"] >> internal:has-text=\"Поле обязательно для заполнения\"i)","uuid":"37414db2-cfca-4d54-a4ee-531911e42178","stop":1750253569643},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253569644,"name":"expect.toBeGreaterThan","uuid":"7be79589-76c9-4ae0-82c1-fab7ccbced0b","stop":1750253569644},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253569645,"name":"expect.toBeVisible","uuid":"bbce9b82-cf1d-43fa-a032-adaf223ba3a7","stop":1750253569650},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253569650,"uuid":"63e09a98-af76-4c44-a649-d0b0952cad9b","stop":1750253569650},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253569650,"uuid":"45c890ef-1afc-4dc4-a27f-d6018c97049b","stop":1750253569650}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253569650,"uuid":"d52d2e43-201f-4f4d-a70f-eab436ccd21a","stop":1750253570264}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750253564295,"testCaseId":"61b0fd9a6b9153c787b71ef3413cea92","fullName":"ui/registration/register.negative.spec.ts:6:7","stop":1750253570263} \ No newline at end of file diff --git a/allure-results/e5580436-7908-449a-b785-9357a550138d-result.json b/allure-results/e5580436-7908-449a-b785-9357a550138d-result.json new file mode 100644 index 0000000..950ba79 --- /dev/null +++ b/allure-results/e5580436-7908-449a-b785-9357a550138d-result.json @@ -0,0 +1 @@ +{"uuid":"e5580436-7908-449a-b785-9357a550138d","name":"has title","historyId":"3a2a809b453af4fd564578d1a27f3e45:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserType.launch","start":1750253612666,"uuid":"887d4e9d-c341-40ba-96f4-08aef813eb5d","stop":1750253613063}],"attachments":[],"parameters":[],"name":"fixture: browser","start":1750253612665,"uuid":"c50a8bb1-ac9e-4fe2-b3c1-9749fed09396","stop":1750253613063},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253613064,"uuid":"9f25323f-091a-4664-842d-240e25f94fa5","stop":1750253613228}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253613063,"uuid":"ccd3badf-ecc5-4122-847d-762079dc06ec","stop":1750253613231},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253613232,"uuid":"6f3b262d-7480-4fe0-8250-df4587ff9b0f","stop":1750253613916}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253613231,"uuid":"0e6e7bdf-5cce-4149-8815-a83a314d957e","stop":1750253613917}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253612662,"uuid":"cff0c443-7385-42d1-9013-bbc1a818d3d5","stop":1750253613917},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253613922,"name":"page.goto(https://playwright.dev/)","uuid":"80865c9f-dee8-43ee-98f6-fbd179bf8faf","stop":1750253615828},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253615830,"name":"expect.toHaveTitle","uuid":"3e9eea10-fffe-413f-b296-a1939cce2336","stop":1750253615849},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253615849,"uuid":"d1aaec71-f022-458b-9703-130f988f2130","stop":1750253615849},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253615849,"uuid":"83d3334f-6611-4ffb-87ab-6681bfee0f75","stop":1750253615849}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253615849,"uuid":"3a323a11-71c6-4af2-9ee2-cf9c37bed15e","stop":1750253615922}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > webkit > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-3"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"example.spec.ts"}],"links":[],"start":1750253612661,"testCaseId":"3a2a809b453af4fd564578d1a27f3e45","fullName":"example.spec.ts:3:5","stop":1750253615520} \ No newline at end of file diff --git a/allure-results/e7929d73-feae-489d-b925-5fce05fbca42-result.json b/allure-results/e7929d73-feae-489d-b925-5fce05fbca42-result.json new file mode 100644 index 0000000..5f335e3 --- /dev/null +++ b/allure-results/e7929d73-feae-489d-b925-5fce05fbca42-result.json @@ -0,0 +1 @@ +{"uuid":"e7929d73-feae-489d-b925-5fce05fbca42","name":"Некорректный email формат","historyId":"de8c598c53adc6e2133478f1b9141597:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253569431,"uuid":"54ae0f11-ac16-49cf-b9f2-8f55fabe53f1","stop":1750253569432}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253569430,"uuid":"f0422b4a-47c7-4969-8aec-076ce890b88e","stop":1750253569433},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253569433,"uuid":"9c87f10e-3903-43c1-8791-00a7960a1b0e","stop":1750253569477}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253569433,"uuid":"5e1c13f4-c786-4062-90dd-390e5dbf9c3a","stop":1750253569477}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253569430,"uuid":"9f001c91-ee05-45e8-adc3-73c55b187cd9","stop":1750253569477},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253569479,"name":"page.goto(/login/registration)","uuid":"fe78777a-6505-4085-8eea-4f093933fdd1","stop":1750253575335},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253575336,"name":"locator.fill(invalid-email)","uuid":"45b12b61-55df-4503-ae8e-f8509e6fd6cb","stop":1750253575397},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253575398,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"489c4916-6427-4463-a8cd-6c34c55e7951","stop":1750253575802},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253575802,"name":"expect.toBeVisible","uuid":"3c2b39c8-046d-4528-906a-7342edaa4c45","stop":1750253575807},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253575807,"uuid":"4843284d-4d55-4165-9d48-63c627778521","stop":1750253575807},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253575807,"uuid":"a9da0bf3-1629-43d5-97ca-32710d6a8a6e","stop":1750253575807}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253575807,"uuid":"f7814790-feed-46cb-8671-d8b999048262","stop":1750253577639}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750253569430,"testCaseId":"de8c598c53adc6e2133478f1b9141597","fullName":"ui/registration/register.negative.spec.ts:28:7","stop":1750253577638} \ No newline at end of file diff --git a/allure-results/e92d5795-6f77-4a7c-941f-43f0936e34f3-result.json b/allure-results/e92d5795-6f77-4a7c-941f-43f0936e34f3-result.json new file mode 100644 index 0000000..48298a9 --- /dev/null +++ b/allure-results/e92d5795-6f77-4a7c-941f-43f0936e34f3-result.json @@ -0,0 +1 @@ +{"uuid":"e92d5795-6f77-4a7c-941f-43f0936e34f3","name":"Переключатель видимости пароля показывает и скрывает ввод","historyId":"b1726395bd827a3a21fe3c829a098be4:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253482558,"uuid":"22aac1d7-a321-4c66-a738-784e94259708","stop":1750253482560}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253482557,"uuid":"0a7b6865-2ecb-4b6f-bc69-14da4c7a8024","stop":1750253482561},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253482561,"uuid":"1daabb2f-1fa7-4bf1-94b9-6e262a87f8a0","stop":1750253482599}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253482561,"uuid":"761e71df-5e7a-48d9-9b83-8ec7748c4384","stop":1750253482599}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253482556,"uuid":"cddae4a3-9e41-4245-a183-1ac47e7b7232","stop":1750253482599},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253482600,"name":"page.goto(/login/authorization)","uuid":"a387bee6-5631-43ed-8cdb-d3ed3eaf8b9f","stop":1750253489712},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253489713,"name":"locator.fill(!Test123456)","uuid":"cd976ef4-d6b5-44c1-a35f-ad78a2f73ba0","stop":1750253489765},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253489767,"name":"locator.getByPlaceholder('Пароль').getAttribute","uuid":"f5a2a9b9-3dfc-4614-8acb-57032ea700ae","stop":1750253489770},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253489770,"name":"expect.toBe","uuid":"4ebda3a4-7fed-489c-aac2-be0cbb8f4229","stop":1750253489771},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253489771,"name":"locator.getByAltText('показать пароль').click","uuid":"4676d3cb-0750-47b6-89d2-aeb70451a460","stop":1750253489810},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253489811,"name":"locator.getByPlaceholder('Пароль').getAttribute","uuid":"9216fb4c-acdb-469c-9dd8-8eccbd2d74a9","stop":1750253489813},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253489814,"name":"expect.toBe","uuid":"cf0bb8ea-7e7f-4a61-ac2d-14ba246f5e15","stop":1750253489814},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253489816,"name":"locator.getByAltText('показать пароль').click","uuid":"fa4941bd-82de-4b6e-b511-9543e6d93834","stop":1750253489857},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253489858,"name":"locator.getByPlaceholder('Пароль').getAttribute","uuid":"e1053a6c-0003-4471-84fa-44082394e8f6","stop":1750253489860},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253489860,"name":"expect.toBe","uuid":"7f9a8839-d133-4f7d-8f10-d5e03991bd68","stop":1750253489860},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253489861,"uuid":"ccd5e8a4-bb43-4e7d-b37a-b6a025f87865","stop":1750253489861},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253489861,"uuid":"e8594bbf-b5df-464a-a1ce-b75b1c0e2dfe","stop":1750253489861}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253489861,"uuid":"40284d34-3dab-4230-b505-b2c6cf18d5c4","stop":1750253490549}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.ui.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.ui.spec.ts > UI сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59200-worker-3"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.ui.spec.ts"},{"name":"subSuite","value":"UI сценарии авторизации"}],"links":[],"start":1750253482557,"testCaseId":"b1726395bd827a3a21fe3c829a098be4","fullName":"ui/login/login.ui.spec.ts:7:7","stop":1750253490549} \ No newline at end of file diff --git a/allure-results/eaf1e2a5-0cd3-4380-9895-f71222b14f7f-result.json b/allure-results/eaf1e2a5-0cd3-4380-9895-f71222b14f7f-result.json new file mode 100644 index 0000000..e8146dc --- /dev/null +++ b/allure-results/eaf1e2a5-0cd3-4380-9895-f71222b14f7f-result.json @@ -0,0 +1 @@ +{"uuid":"eaf1e2a5-0cd3-4380-9895-f71222b14f7f","name":"Некорректное имя и фамилия (слишком длинные)","historyId":"7134a02a04b606099de5c920fb62990a:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253631209,"uuid":"05faf1ec-ff03-4fa4-838e-2853881909f6","stop":1750253631210}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253631209,"uuid":"1f54474b-4554-4b90-9e36-81353c0ae8d2","stop":1750253631211},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253631212,"uuid":"d7bece7d-2014-4bd6-a317-afdc7dda7fa8","stop":1750253631357}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253631211,"uuid":"0fd2d367-0ddd-4bd2-a3e2-3a510497425b","stop":1750253631357}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253631208,"uuid":"1602a83e-b94d-4e54-9628-bc136063279e","stop":1750253631357},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253631359,"name":"page.goto(/login/registration)","uuid":"76505ffe-6d51-44f0-8226-d0edad579e2a","stop":1750253632928},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253632929,"name":"locator.fill(ААААААААААААААААААААААААААААААААААААААААААААААААААА)","uuid":"8ea81b2d-6239-4e7d-93db-17a04560b4d5","stop":1750253632965},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253632966,"name":"locator.fill(БББББББББББББББББББББББББББББББББББББББББББББББББББ)","uuid":"683e8561-9580-4cdc-a859-4f6f7dce167a","stop":1750253632975},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253632976,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"6dd67ecc-1f29-40ee-878d-be0846c91940","stop":1750253633021},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253633022,"name":"expect.toBeVisible","uuid":"83208ba5-96be-4af5-a157-befaaadc9083","stop":1750253633027},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253633027,"name":"expect.toBeVisible","uuid":"893d6405-aac8-477e-bad2-e449cf53d860","stop":1750253633031},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253633032,"uuid":"ae410215-c8d2-4233-9945-ecbc06ba16f5","stop":1750253633032},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253633032,"uuid":"02379549-eee9-4e5b-89dd-6859368a46cd","stop":1750253633032}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253633031,"uuid":"7b32ac44-7cd5-4461-bae0-b015bdf86696","stop":1750253633094}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-2"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750253631208,"testCaseId":"7134a02a04b606099de5c920fb62990a","fullName":"ui/registration/register.negative.spec.ts:16:7","stop":1750253633092} \ No newline at end of file diff --git a/allure-results/ebd1cb5a-00b2-4a9f-87ea-0c31c8383daf-result.json b/allure-results/ebd1cb5a-00b2-4a9f-87ea-0c31c8383daf-result.json new file mode 100644 index 0000000..c22fb8b --- /dev/null +++ b/allure-results/ebd1cb5a-00b2-4a9f-87ea-0c31c8383daf-result.json @@ -0,0 +1 @@ +{"uuid":"ebd1cb5a-00b2-4a9f-87ea-0c31c8383daf","name":"Неверный пароль","historyId":"500ad758ee2db2bb60aa832fb0abbb94:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253541845,"uuid":"a8c70f30-a152-4ec8-a6e2-0d6315ecb150","stop":1750253541846}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253541845,"uuid":"f95b4ac8-ef4e-474b-a7ce-0e574b1a0ed8","stop":1750253541847},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253541848,"uuid":"e0d21a13-6bf7-4aa6-9796-4ab66ac193bd","stop":1750253541892}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253541847,"uuid":"9959e9a3-ea09-466c-b3f5-96419f938c4d","stop":1750253541892}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253541844,"uuid":"aee0176f-6343-4bad-9a9a-ddb44da0bfb5","stop":1750253541892},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253541894,"name":"page.goto(/login/authorization)","uuid":"c44d4721-6400-4030-88ed-24362d0a1360","stop":1750253542748},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253542749,"name":"locator.fill(autotest@example.com)","uuid":"8622a8d5-bf6d-4ca6-9413-29e1631cfb89","stop":1750253542787},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253542788,"name":"locator.fill(wrongpass)","uuid":"7448cfb2-1e5b-4114-8e63-e959b351ad2b","stop":1750253542828},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253542829,"name":"locator.getByRole('button', { name: 'Войти', exact: true }).click","uuid":"ed256fba-5042-4315-a6bb-cc62c656e29d","stop":1750253542868},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253542868,"name":"expect.toBeVisible","uuid":"cb640bbd-9cb2-4583-9e22-d6920e77ecc2","stop":1750253542978},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253542978,"uuid":"f804a761-8cc1-43d9-b3e5-a6db9a95f48b","stop":1750253542978},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253542979,"uuid":"5f182bce-f022-4948-92b5-95f7e652e7c8","stop":1750253542979}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253542978,"uuid":"0146d0b4-2f23-484a-9364-79a22612861a","stop":1750253543783}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.negative.spec.ts > Негативные сценарии авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии авторизации"}],"links":[],"start":1750253541844,"testCaseId":"500ad758ee2db2bb60aa832fb0abbb94","fullName":"ui/login/login.negative.spec.ts:7:7","stop":1750253543782} \ No newline at end of file diff --git a/allure-results/ecc80443-bbfe-4422-b0b0-0e3189b7f54b-result.json b/allure-results/ecc80443-bbfe-4422-b0b0-0e3189b7f54b-result.json new file mode 100644 index 0000000..0bc4b51 --- /dev/null +++ b/allure-results/ecc80443-bbfe-4422-b0b0-0e3189b7f54b-result.json @@ -0,0 +1 @@ +{"uuid":"ecc80443-bbfe-4422-b0b0-0e3189b7f54b","name":"has title","historyId":"3a2a809b453af4fd564578d1a27f3e45:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserType.launch","start":1750252826946,"uuid":"388b5f04-2686-4a8d-9af9-1931fdf951a4","stop":1750252827955}],"attachments":[],"parameters":[],"name":"fixture: browser","start":1750252826944,"uuid":"ab713773-a8c9-4d5b-9d49-99228a70fc81","stop":1750252827956},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252827960,"uuid":"06b9404b-e6d0-4da5-9dd1-d68e89ef778e","stop":1750252828095}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252827957,"uuid":"49165258-8137-4c00-a9bb-8d97394b08d9","stop":1750252828096},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252828096,"uuid":"e2f835ea-f274-4b68-841f-1db4732b768b","stop":1750252829091}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252828096,"uuid":"2852d7ec-7717-4ceb-b2f1-c765843b3ce1","stop":1750252829091}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252826935,"uuid":"b454a332-3915-4f1a-aad3-570a0e8fa4c3","stop":1750252829091},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252829095,"name":"page.goto(https://playwright.dev/)","uuid":"7d8c186d-c5e5-4536-b32f-569ca917856d","stop":1750252836225},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252836228,"name":"expect.toHaveTitle","uuid":"6697fe46-14e0-4466-acfa-b07cf2dadad9","stop":1750252836628},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252836629,"uuid":"8bef5c0b-6325-42dc-817c-ae65e021f321","stop":1750252836629},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252836629,"uuid":"93f0106c-72f8-407e-8594-fdf9a70c67dc","stop":1750252836629}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252836628,"uuid":"025ab030-0660-4574-a1af-2c779dee01f2","stop":1750252836656}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > firefox > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-1"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"example.spec.ts"}],"links":[],"start":1750252826934,"testCaseId":"3a2a809b453af4fd564578d1a27f3e45","fullName":"example.spec.ts:3:5","stop":1750252835638} \ No newline at end of file diff --git a/allure-results/ecef7f55-434d-4793-9d33-b2127af10eaf-result.json b/allure-results/ecef7f55-434d-4793-9d33-b2127af10eaf-result.json new file mode 100644 index 0000000..3e149f5 --- /dev/null +++ b/allure-results/ecef7f55-434d-4793-9d33-b2127af10eaf-result.json @@ -0,0 +1 @@ +{"uuid":"ecef7f55-434d-4793-9d33-b2127af10eaf","name":"Несуществующий email","historyId":"c118be77fa2af6f0e0052ec7489ba66c:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252858951,"uuid":"1985be24-e21d-4a54-918a-f8dc0ae99810","stop":1750252858953}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252858951,"uuid":"4513d930-d89c-4e8c-8e1d-efbf90aa4738","stop":1750252858953},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252858954,"uuid":"63615c98-0cb7-4131-907e-71f02629bcd9","stop":1750252859057}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252858954,"uuid":"8cf61988-0c19-434c-8b6e-005f74b49629","stop":1750252859057}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252858950,"uuid":"eff71199-85c0-46e2-a0be-f12730bc860d","stop":1750252859057},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252859059,"name":"page.goto(/recoverpassword)","uuid":"bb86e18c-6f31-4e36-8627-84136aa5d6c9","stop":1750252860088},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252860088,"name":"locator.fill(nobody@example.com)","uuid":"7c346d45-dba1-4002-b411-e0f0411fe1cb","stop":1750252860123},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252860124,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"c2faa966-0536-4006-a3b8-0f0ed10d546e","stop":1750252860385},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252860385,"name":"expect.toBeVisible","uuid":"9837e1d7-7225-4542-b616-fe1953b6b401","stop":1750252860491},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252860491,"uuid":"47d08db9-930c-4b66-aa64-98d6283c0607","stop":1750252860491},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252860491,"uuid":"445dcad7-c2fb-4970-a6ef-5b3a2e09f09b","stop":1750252860492}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252860491,"uuid":"8c925879-6968-4abf-bdec-1fec7f08355a","stop":1750252860496}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-3"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"}],"links":[],"start":1750252858950,"testCaseId":"c118be77fa2af6f0e0052ec7489ba66c","fullName":"ui/recovery/recover-negative.spec.ts:15:7","stop":1750252860494} \ No newline at end of file diff --git a/allure-results/ed6cbb39-98a2-4943-aad6-c664b7f0a1d5-result.json b/allure-results/ed6cbb39-98a2-4943-aad6-c664b7f0a1d5-result.json new file mode 100644 index 0000000..a7a9c8a --- /dev/null +++ b/allure-results/ed6cbb39-98a2-4943-aad6-c664b7f0a1d5-result.json @@ -0,0 +1 @@ +{"uuid":"ed6cbb39-98a2-4943-aad6-c664b7f0a1d5","name":"Пароли не совпадают","historyId":"a7eaebb1e41fbbf13bf61195120b3ce9:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253629372,"uuid":"19722cee-e217-4177-a2f9-e51af89cafdc","stop":1750253629376}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253629371,"uuid":"b47be89b-204e-43a2-a62b-be5e853dd6f7","stop":1750253629379},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253629379,"uuid":"fe652d77-fac4-498b-88a7-6f85c94e3b92","stop":1750253629508}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253629379,"uuid":"1a07a841-5bbe-4e3e-89b0-d6e7f114f3e1","stop":1750253629508}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253629371,"uuid":"7f0ad1da-2cef-4926-8029-be2039d799b0","stop":1750253629508},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253629509,"name":"page.goto(/recoverpassword)","uuid":"ce76a2d9-c3e7-4b88-8427-f7ed8865eeb7","stop":1750253630872},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253630873,"name":"locator.fill(autotest@example.com)","uuid":"9d1b9943-470e-4e6d-9103-8843f4d56ad0","stop":1750253630922},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253630923,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"dbfbca60-76d7-4024-ba88-6a5e17a91f69","stop":1750253631182},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253631183,"name":"locator.count(input[type=\"text\"])","uuid":"3f66145a-7af5-47cc-8c97-5ebf5164102e","stop":1750253631187},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253631187,"name":"locator.fill(0)","uuid":"be8ee3a5-e838-4f85-8a98-25fc78dd54d3","stop":1750253631293},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253631294,"name":"locator.fill(0)","uuid":"2a8c06ad-c3ec-4bb6-80dd-1df48494c5d2","stop":1750253631312},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253631312,"name":"locator.fill(0)","uuid":"bac71c8c-f408-4cc1-aac5-cf4d1b352f57","stop":1750253631331},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253631332,"name":"locator.fill(0)","uuid":"a1e42cdc-3456-4b80-8fb8-8c4441b64518","stop":1750253631340},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253631340,"name":"locator.fill(0)","uuid":"2718b087-e8e9-4abd-a33c-3535fc23d5ae","stop":1750253631352},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253631353,"name":"locator.fill(0)","uuid":"439d5d6c-8b47-484c-9e7a-64b0838aa613","stop":1750253631362},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253631362,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"9aa3935c-054d-40d4-b3d4-6e0f66899140","stop":1750253631409},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253631410,"name":"locator.fill(!Test123456)","uuid":"7f1869f7-3831-4047-991b-3768b0dc995d","stop":1750253631496},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253631497,"name":"locator.fill(!OtherPass123)","uuid":"bb8b8d10-8d54-4edd-ab7d-a063d9575687","stop":1750253631506},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253631506,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"a91a8f4b-cd4b-4a6e-9bdb-78cc74286713","stop":1750253631556},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253631556,"name":"expect.toBeVisible","uuid":"0571f856-7b34-4565-9456-e70e9a9d3468","stop":1750253631561},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253631561,"uuid":"496395ef-3b50-4061-bed2-64f269f57b6b","stop":1750253631561},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253631561,"uuid":"93391e0c-e8a3-45b8-80c2-c91f91f900fb","stop":1750253631561}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253631561,"uuid":"ccf8334f-8731-4be9-9566-c50c0a101929","stop":1750253631630}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-1"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"}],"links":[],"start":1750253629369,"testCaseId":"a7eaebb1e41fbbf13bf61195120b3ce9","fullName":"ui/recovery/recover-negative.spec.ts:56:7","stop":1750253631627} \ No newline at end of file diff --git a/allure-results/f00dd179-dda3-4c12-b4bd-75ddef3d19a5-result.json b/allure-results/f00dd179-dda3-4c12-b4bd-75ddef3d19a5-result.json new file mode 100644 index 0000000..8c86cb7 --- /dev/null +++ b/allure-results/f00dd179-dda3-4c12-b4bd-75ddef3d19a5-result.json @@ -0,0 +1 @@ +{"uuid":"f00dd179-dda3-4c12-b4bd-75ddef3d19a5","name":"get started link","historyId":"37e4aa066a5f6eac2e4d3b98a2ed98a7:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserType.launch","start":1750253613529,"uuid":"6010ee91-733c-4fc2-9d07-1cd8309c187c","stop":1750253613694}],"attachments":[],"parameters":[],"name":"fixture: browser","start":1750253613525,"uuid":"70c5a1e0-cb64-4ac8-be81-2bf119a64ed5","stop":1750253613694},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253613695,"uuid":"055e84b1-868d-4763-b439-153221c7ae8b","stop":1750253613734}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253613694,"uuid":"4be309c8-8c55-43ad-bb75-ac9aae0a4178","stop":1750253613741},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253613742,"uuid":"0d90f56f-5bb3-4f0e-9a44-124ef530b546","stop":1750253614007}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253613742,"uuid":"a1c03993-950e-4342-a8aa-d1237333985f","stop":1750253614007}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253613516,"uuid":"aa5efd43-4f04-4f7d-b080-d0005e4593e0","stop":1750253614007},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253614009,"name":"page.goto(https://playwright.dev/)","uuid":"a5f5dbfd-2a1f-4559-af24-d1aafabeb266","stop":1750253616334},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253616336,"name":"locator.getByRole('link', { name: 'Get started' }).click","uuid":"f19bf813-bd22-402c-b8bd-946a7abce22b","stop":1750253616399},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253616400,"name":"expect.toBeVisible","uuid":"7773b162-2b00-449d-b183-f208a68e4a39","stop":1750253616768},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253616769,"uuid":"5cf3596c-9b6e-401d-a3dd-ae162be40170","stop":1750253616769},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253616769,"uuid":"a951ea84-be73-47c8-8f8f-2ebe364c667c","stop":1750253616769}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253616768,"uuid":"a4666e3f-050f-42d7-957e-2dc98def3636","stop":1750253616843}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"example.spec.ts"},{"name":"titlePath","value":" > webkit > example.spec.ts"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-0"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"example.spec.ts"}],"links":[],"start":1750253613514,"testCaseId":"37e4aa066a5f6eac2e4d3b98a2ed98a7","fullName":"example.spec.ts:10:5","stop":1750253616668} \ No newline at end of file diff --git a/allure-results/f0a65a87-69cc-4637-8efb-e14ade6da950-result.json b/allure-results/f0a65a87-69cc-4637-8efb-e14ade6da950-result.json new file mode 100644 index 0000000..0c71921 --- /dev/null +++ b/allure-results/f0a65a87-69cc-4637-8efb-e14ade6da950-result.json @@ -0,0 +1 @@ +{"uuid":"f0a65a87-69cc-4637-8efb-e14ade6da950","name":"Переход по ссылке \"Забыли пароль?\"","historyId":"91fcabcb669557e4ddb559c077420e45:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserType.launch","start":1750252827712,"uuid":"41714f68-9bf8-4fb4-b3fa-0f3d625bb5cf","stop":1750252828444}],"attachments":[],"parameters":[],"name":"fixture: browser","start":1750252827708,"uuid":"5fe6b0c8-5a1a-43b6-b639-2b5894590e94","stop":1750252828444},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252828447,"uuid":"5472b987-d594-4023-ac14-cc715ee937ed","stop":1750252828646}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252828446,"uuid":"6802fae3-8e19-4bd3-8860-65427b0e875c","stop":1750252828650},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252828656,"uuid":"49024826-9b24-4c57-b4bf-50d7b4fa99f6","stop":1750252829518}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252828650,"uuid":"5cbcdeab-22ea-4f9b-b4f5-42d299334860","stop":1750252829519}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252827702,"uuid":"a0bfd4d5-1bad-4971-a276-7174ff26eba4","stop":1750252829519},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252829523,"name":"page.goto(/login/authorization)","uuid":"56004fac-d2b6-49d6-b139-8df4c26eea75","stop":1750252841345},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252841348,"name":"locator.getByText('Забыли пароль?').click","uuid":"61821dd6-51a6-4b3e-bc21-7c466fa368e7","stop":1750252841422},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252841424,"name":"expect.toHaveURL","uuid":"d2556444-a4e3-41b9-a48a-454fab32d259","stop":1750252841437},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252841438,"name":"expect.toBeVisible","uuid":"bcdb4cc5-6191-4d54-8423-d19644132a78","stop":1750252841443},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252841444,"uuid":"f063a5bf-9331-43bd-985c-ae67f9749445","stop":1750252841444},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252841444,"uuid":"8bbff41b-25e8-4fe6-8526-1a18714e545c","stop":1750252841444}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252841443,"uuid":"f8d9c166-58af-48cd-8426-3907e96513c0","stop":1750252841456}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > firefox > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-0"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"}],"links":[],"start":1750252827699,"testCaseId":"91fcabcb669557e4ddb559c077420e45","fullName":"ui/login/login.link.spec.ts:6:5","stop":1750252840712} \ No newline at end of file diff --git a/allure-results/f3480146-3311-4e0c-90b6-7c6dcd9774ea-result.json b/allure-results/f3480146-3311-4e0c-90b6-7c6dcd9774ea-result.json new file mode 100644 index 0000000..5702fc9 --- /dev/null +++ b/allure-results/f3480146-3311-4e0c-90b6-7c6dcd9774ea-result.json @@ -0,0 +1 @@ +{"uuid":"f3480146-3311-4e0c-90b6-7c6dcd9774ea","name":"Несуществующий email","historyId":"c118be77fa2af6f0e0052ec7489ba66c:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253598776,"uuid":"9feea626-6b64-40cd-be39-bae396a8ca35","stop":1750253598779}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253598775,"uuid":"6498ca46-d26a-433e-86ce-1060eba12dfb","stop":1750253598781},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253598782,"uuid":"dadc4e9e-9ed6-4869-9cdd-c9240db71a8f","stop":1750253598995}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253598781,"uuid":"c9d6f0fa-598c-4e2a-8c16-abc993786988","stop":1750253598995}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253598775,"uuid":"4bb724c3-c843-412f-9f62-1d185c4f1064","stop":1750253598995},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253598997,"name":"page.goto(/recoverpassword)","uuid":"d8a33def-3468-4287-a4ab-3d49cd7c2f4e","stop":1750253604157},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253604158,"name":"locator.fill(nobody@example.com)","uuid":"9e291a90-9bd8-4ada-a005-e36f8a952149","stop":1750253604191},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253604193,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"d229ea94-2e7e-4a92-88fd-369e20f8d261","stop":1750253604361},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253604361,"name":"expect.toBeVisible","uuid":"7acaef2a-e94f-4b21-be4e-4f1a3af38342","stop":1750253604370},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253604371,"uuid":"a36c75fd-b3fa-46cb-bf35-f508ea1a1e87","stop":1750253604371},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253604371,"uuid":"05652acf-8366-47ed-b5f8-6eae5b167251","stop":1750253604371}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253604370,"uuid":"1b304f25-e7f3-4c9a-8af3-da434060f52a","stop":1750253604402}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-3"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"}],"links":[],"start":1750253598775,"testCaseId":"c118be77fa2af6f0e0052ec7489ba66c","fullName":"ui/recovery/recover-negative.spec.ts:15:7","stop":1750253604401} \ No newline at end of file diff --git a/allure-results/f480083e-a011-4b7c-a314-552b460951ce-attachment.md b/allure-results/f480083e-a011-4b7c-a314-552b460951ce-attachment.md new file mode 100644 index 0000000..41d05cc --- /dev/null +++ b/allure-results/f480083e-a011-4b7c-a314-552b460951ce-attachment.md @@ -0,0 +1,171 @@ +# Test info + +- Name: Негативные сценарии регистрации >> Слишком длинное название организации +- Location: /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.negative.spec.ts:48:7 + +# Error details + +``` +Error: Timed out 5000ms waiting for expect(locator).toBeVisible() + +Locator: getByText('Некорректное название организации!') +Expected: visible +Received: +Call log: + - expect.toBeVisible with timeout 5000ms + - waiting for getByText('Некорректное название организации!') + + at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.negative.spec.ts:67:72 +``` + +# Page snapshot + +```yaml +- main: + - main: + - button + - button "Скрыть Close": + - text: Скрыть + - img "Close" + - list: + - listitem: + - text: Главная + - img "Arrow" + - listitem: + - text: Автору + - img "Arrow" + - listitem: + - text: Новости + - img "Arrow" + - listitem: + - text: Участники + - img "Arrow" + - listitem: + - text: Оргкомитет + - img "Arrow" + - paragraph: 19.06.2025 + - paragraph: Этап + - img "Logo" + - paragraph: Добро пожаловать + - paragraph: Зарегистрируйтесь, чтобы начать работу. + - textbox "Имя*": Иван + - text: Имя* + - textbox "Фамилия*": Иванов + - text: Фамилия* + - textbox "Отчество" + - textbox "Учёное звание*": Доцент + - img "img" + - text: Учёное звание* + - textbox "Учёная степень*": Кандидат наук + - img "img" + - text: Учёная степень* + - textbox "Должность": Преподаватель + - text: Должность + - textbox "Организация*": ООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООО + - text: Организация* + - textbox "Email (логин)*": test1750252524321@example.com + - text: Email (логин)* + - textbox "Номер телефона*": +7 (999) 197-79-6 + - text: Некорректный номер + - img "!" + - img "показать пароль" + - textbox "Придумайте пароль*": "!Test123" + - text: Придумайте пароль* + - img "показать пароль" + - textbox "Повторите пароль*": "!Test123" + - text: Повторите пароль* + - paragraph: ИЛИ + - button "Sfedu Logo Войти через аккаунт @sfedu": + - img "Sfedu Logo" + - text: Войти через аккаунт @sfedu + - button "Зарегистрироваться" + - paragraph: Уже есть аккаунт? + - paragraph: Авторизируйтесь + - paragraph: Всероссийская научная конференция "Системный синтез и прикладная синергетика" + - paragraph: 19 - 26 июня 2025 года Таганрог + - paragraph: "Напишите нам:" + - paragraph: + - text: "e-mail:" + - link "ssas@ictis.sfedu.ru": + - /url: mailto:ssas@ictis.sfedu.ru + - text: Сайт разработан Центром исследований и разработки ИКТИБ + - link "Ознакомиться с руководством пользователя": + - /url: /static/media/user_manual.f1df94e2c5143919fb0d.pdf +``` + +# Test source + +```ts + 1 | import { test, expect } from '@playwright/test'; + 2 | import { RegisterPage } from '../../../page-objects/RegisterPage'; + 3 | + 4 | test.describe('Негативные сценарии регистрации', () => { + 5 | + 6 | test('Отправка пустой формы', async ({ page }) => { + 7 | const registerPage = new RegisterPage(page); + 8 | await registerPage.goto(); + 9 | await registerPage.submit(); + 10 | + 11 | const requiredErrors = await page.locator('div[name="error"]', { hasText: 'Поле обязательно для заполнения' }).allTextContents(); + 12 | expect(requiredErrors.length).toBeGreaterThan(0); + 13 | await expect(page.getByText('Не менее 8 символов')).toBeVisible(); // пароль + 14 | }); + 15 | + 16 | test('Некорректное имя и фамилия (слишком длинные)', async ({ page }) => { + 17 | const registerPage = new RegisterPage(page); + 18 | await registerPage.goto(); + 19 | + 20 | await registerPage.fillName('А'.repeat(51)); + 21 | await registerPage.fillSurname('Б'.repeat(51)); + 22 | await registerPage.submit(); + 23 | + 24 | await expect(page.getByText('Некорректное имя')).toBeVisible(); + 25 | await expect(page.getByText('Некорректная фамилия')).toBeVisible(); + 26 | }); + 27 | + 28 | test('Некорректный email формат', async ({ page }) => { + 29 | const registerPage = new RegisterPage(page); + 30 | await registerPage.goto(); + 31 | + 32 | await registerPage.fillEmail('invalid-email'); + 33 | await registerPage.submit(); + 34 | + 35 | await expect(page.getByText('Некорректный Email')).toBeVisible(); + 36 | }); + 37 | + 38 | test('Слишком длинная должность', async ({ page }) => { + 39 | const registerPage = new RegisterPage(page); + 40 | await registerPage.goto(); + 41 | + 42 | await registerPage.fillPosition('X'.repeat(201)); + 43 | await registerPage.submit(); + 44 | + 45 | await expect(page.getByText('Не более 200 символов!')).toBeVisible(); + 46 | }); + 47 | + 48 | test('Слишком длинное название организации', async ({ page }) => { + 49 | const registerPage = new RegisterPage(page); + 50 | await registerPage.goto(); + 51 | + 52 | // Заполнить все поля валидно, кроме организации + 53 | await registerPage.register({ + 54 | name: 'Иван', + 55 | surname: 'Иванов', + 56 | patronymic: '', + 57 | academicTitle: 'Доцент', + 58 | degree: 'Кандидат наук', + 59 | position: 'Преподаватель', + 60 | organization: 'О'.repeat(201), + 61 | email: `test${Date.now()}@example.com`, + 62 | phone: `+7999${Math.floor(Math.random() * 1000000).toString().padStart(6, '0')}`, + 63 | password: '!Test123', + 64 | confirmPassword: '!Test123' + 65 | }); + 66 | +> 67 | await expect(page.getByText('Некорректное название организации!')).toBeVisible(); + | ^ Error: Timed out 5000ms waiting for expect(locator).toBeVisible() + 68 | }); + 69 | + 70 | }); + 71 | +``` \ No newline at end of file diff --git a/allure-results/f542fd18-dfa0-48aa-af5b-787bce4a2d9d-attachment.md b/allure-results/f542fd18-dfa0-48aa-af5b-787bce4a2d9d-attachment.md new file mode 100644 index 0000000..8672d53 --- /dev/null +++ b/allure-results/f542fd18-dfa0-48aa-af5b-787bce4a2d9d-attachment.md @@ -0,0 +1,212 @@ +# Test info + +- Name: get started link +- Location: /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/example.spec.ts:10:5 + +# Error details + +``` +Error: locator.click: Test timeout of 30000ms exceeded. +Call log: + - waiting for getByRole('link', { name: 'Get started' }) + - locator resolved to Get started + - attempting click action + - waiting for element to be visible, enabled and stable + + at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/example.spec.ts:14:57 +``` + +# Page snapshot + +```yaml +- region "Skip to main content": + - link "Skip to main content": + - /url: "#__docusaurus_skipToContent_fallback" +- navigation "Main": + - link "Playwright logo Playwright": + - /url: / + - img "Playwright logo" + - text: Playwright + - link "Docs": + - /url: /docs/intro + - link "API": + - /url: /docs/api/class-playwright + - button "Node.js" + - link "Community": + - /url: /community/welcome + - link "GitHub repository": + - /url: https://github.com/microsoft/playwright + - link "Discord server": + - /url: https://aka.ms/playwright/discord + - button "Switch between dark and light mode (currently system mode)" + - button "Search (Command+K)": Search ⌘ K +- banner: + - heading "Playwright enables reliable end-to-end testing for modern web apps." [level=1] + - link "Get started": + - /url: /docs/intro + - link "Star microsoft/playwright on GitHub": + - /url: https://github.com/microsoft/playwright + - text: Star + - link "73k+ stargazers on GitHub": + - /url: https://github.com/microsoft/playwright/stargazers + - text: 73k+ +- main: + - img "Browsers (Chromium, Firefox, WebKit)" + - heading "Any browser • Any platform • One API" [level=3] + - paragraph: Cross-browser. Playwright supports all modern rendering engines including Chromium, WebKit, and Firefox. + - paragraph: Cross-platform. Test on Windows, Linux, and macOS, locally or on CI, headless or headed. + - paragraph: + - text: Cross-language. Use the Playwright API in + - link "TypeScript": + - /url: https://playwright.dev/docs/intro + - text: "," + - link "JavaScript": + - /url: https://playwright.dev/docs/intro + - text: "," + - link "Python": + - /url: https://playwright.dev/python/docs/intro + - text: "," + - link ".NET": + - /url: https://playwright.dev/dotnet/docs/intro + - text: "," + - link "Java": + - /url: https://playwright.dev/java/docs/intro + - text: . + - paragraph: Test Mobile Web. Native mobile emulation of Google Chrome for Android and Mobile Safari. The same rendering engine works on your Desktop and in the Cloud. + - heading [level=3] + - heading [level=3] + - heading "Resilient • No flaky tests" [level=3] + - paragraph: Auto-wait. Playwright waits for elements to be actionable prior to performing actions. It also has a rich set of introspection events. The combination of the two eliminates the need for artificial timeouts - the primary cause of flaky tests. + - paragraph: Web-first assertions. Playwright assertions are created specifically for the dynamic web. Checks are automatically retried until the necessary conditions are met. + - paragraph: Tracing. Configure test retry strategy, capture execution trace, videos, screenshots to eliminate flakes. + - heading "No trade-offs • No limits" [level=3] + - paragraph: Browsers run web content belonging to different origins in different processes. Playwright is aligned with the modern browsers architecture and runs tests out-of-process. This makes Playwright free of the typical in-process test runner limitations. + - paragraph: Multiple everything. Test scenarios that span multiple tabs, multiple origins and multiple users. Create scenarios with different contexts for different users and run them against your server, all in one test. + - paragraph: Trusted events. Hover elements, interact with dynamic controls, produce trusted events. Playwright uses real browser input pipeline indistinguishable from the real user. + - paragraph: Test frames, pierce Shadow DOM. Playwright selectors pierce shadow DOM and allow entering frames seamlessly. + - heading [level=3] + - heading [level=3] + - heading "Full isolation • Fast execution" [level=3] + - paragraph: Browser contexts. Playwright creates a browser context for each test. Browser context is equivalent to a brand new browser profile. This delivers full test isolation with zero overhead. Creating a new browser context only takes a handful of milliseconds. + - paragraph: Log in once. Save the authentication state of the context and reuse it in all the tests. This bypasses repetitive log-in operations in each test, yet delivers full isolation of independent tests. + - heading "Powerful Tooling" [level=3] + - paragraph: + - link "Codegen.": + - /url: docs/codegen + - text: Generate tests by recording your actions. Save them into any language. + - paragraph: + - link "Playwright inspector.": + - /url: docs/debug#playwright-inspector + - text: Inspect page, generate selectors, step through the test execution, see click points, explore execution logs. + - paragraph: + - link "Trace Viewer.": + - /url: docs/trace-viewer-intro + - text: Capture all the information to investigate the test failure. Playwright trace contains test execution screencast, live DOM snapshots, action explorer, test source, and many more. + - heading "Chosen by companies and open source projects" [level=2] + - list: + - listitem: + - link "VS Code": + - /url: https://code.visualstudio.com + - img "VS Code" + - listitem: + - link "Bing": + - /url: https://bing.com + - img "Bing" + - listitem: + - link "Outlook": + - /url: https://outlook.com + - img "Outlook" + - listitem: + - link "Disney+ Hotstar": + - /url: https://www.hotstar.com/ + - img "Disney+ Hotstar" + - listitem: + - link "Material UI": + - /url: https://github.com/mui-org/material-ui + - img "Material UI" + - listitem: + - link "ING": + - /url: https://github.com/ing-bank/lion + - img "ING" + - listitem: + - link "Adobe": + - /url: https://github.com/adobe/spectrum-web-components + - img "Adobe" + - listitem: + - link "React Navigation": + - /url: https://github.com/react-navigation/react-navigation + - img "React Navigation" + - listitem: + - link "Accessibility Insights": + - /url: https://accessibilityinsights.io/ + - img "Accessibility Insights" +- contentinfo: + - text: Learn + - list: + - listitem: + - link "Getting started": + - /url: /docs/intro + - listitem: + - link "Playwright Training": + - /url: https://learn.microsoft.com/en-us/training/modules/build-with-playwright/ + - listitem: + - link "Learn Videos": + - /url: /community/learn-videos + - listitem: + - link "Feature Videos": + - /url: /community/feature-videos + - text: Community + - list: + - listitem: + - link "Stack Overflow": + - /url: https://stackoverflow.com/questions/tagged/playwright + - listitem: + - link "Discord": + - /url: https://aka.ms/playwright/discord + - listitem: + - link "Twitter": + - /url: https://twitter.com/playwrightweb + - listitem: + - link "LinkedIn": + - /url: https://www.linkedin.com/company/playwrightweb + - text: More + - list: + - listitem: + - link "GitHub": + - /url: https://github.com/microsoft/playwright + - listitem: + - link "YouTube": + - /url: https://www.youtube.com/channel/UC46Zj8pDH5tDosqm1gd7WTg + - listitem: + - link "Blog": + - /url: https://dev.to/playwright + - listitem: + - link "Ambassadors": + - /url: /community/ambassadors + - text: Copyright © 2025 Microsoft +``` + +# Test source + +```ts + 1 | import { test, expect } from '@playwright/test'; + 2 | + 3 | test('has title', async ({ page }) => { + 4 | await page.goto('https://playwright.dev/'); + 5 | + 6 | // Expect a title "to contain" a substring. + 7 | await expect(page).toHaveTitle(/Playwright/); + 8 | }); + 9 | + 10 | test('get started link', async ({ page }) => { + 11 | await page.goto('https://playwright.dev/'); + 12 | + 13 | // Click the get started link. +> 14 | await page.getByRole('link', { name: 'Get started' }).click(); + | ^ Error: locator.click: Test timeout of 30000ms exceeded. + 15 | + 16 | // Expects page to have a heading with the name of Installation. + 17 | await expect(page.getByRole('heading', { name: 'Installation' })).toBeVisible(); + 18 | }); + 19 | +``` \ No newline at end of file diff --git a/allure-results/f57f4d2b-e096-49c5-9bc7-499411104084-result.json b/allure-results/f57f4d2b-e096-49c5-9bc7-499411104084-result.json new file mode 100644 index 0000000..c55381a --- /dev/null +++ b/allure-results/f57f4d2b-e096-49c5-9bc7-499411104084-result.json @@ -0,0 +1 @@ +{"uuid":"f57f4d2b-e096-49c5-9bc7-499411104084","name":"Неверный код подтверждения","historyId":"31f03826b2a8da254be42b2d49bc35f3:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252859259,"uuid":"38bc425f-8e93-4a2b-8484-7eb1c4f7b681","stop":1750252859261}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252859258,"uuid":"1e741b20-f653-4cac-ae76-a1f4e98b6862","stop":1750252859261},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252859262,"uuid":"ac9ba000-d718-4a4d-a30d-bd3b936a2052","stop":1750252859386}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252859261,"uuid":"c763e859-7c11-4764-ac88-3fe87dbb1340","stop":1750252859386}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252859258,"uuid":"c34eb077-a69f-41fe-b708-d941d738b405","stop":1750252859386},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252859389,"name":"page.goto(/recoverpassword)","uuid":"fcee15be-9a39-441d-a264-9ae2b24690a0","stop":1750252860215},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252860216,"name":"locator.fill(autotest@example.com)","uuid":"77015696-12de-4614-9f3a-9f8c434ca2f7","stop":1750252860262},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252860263,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"90139771-3d39-42d7-9b57-8eb3cb56b2f1","stop":1750252860538},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252860539,"name":"expect.toHaveURL","uuid":"22019f37-abaf-4002-8390-9691e8446866","stop":1750252860645},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252860646,"name":"locator.count(input[type=\"text\"])","uuid":"974fb0e1-06e9-486d-8a2f-01a8a79dc725","stop":1750252860649},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252860649,"name":"locator.fill(6)","uuid":"355f8810-ae15-4e88-a0cf-f7dd3e59232a","stop":1750252860657},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252860658,"name":"locator.fill(5)","uuid":"4835d08e-1eea-4413-b485-98edcd8cc6f6","stop":1750252860667},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252860667,"name":"locator.fill(4)","uuid":"44dc037a-506c-4bbb-a522-049405713d7b","stop":1750252860671},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252860671,"name":"locator.fill(3)","uuid":"48cb86f9-9bd0-4a53-bc49-b6c7e5b8b0f2","stop":1750252860674},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252860675,"name":"locator.fill(2)","uuid":"b9a987bd-abec-4ce7-9e33-71b3e32a1f4d","stop":1750252860680},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252860680,"name":"locator.fill(1)","uuid":"5cb7cc04-49dd-48b6-97aa-830e442dc1e8","stop":1750252860684},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252860684,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"6c028223-c366-489c-96c3-1359bab582d2","stop":1750252860756},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252860757,"name":"expect.toBeVisible","uuid":"f25312fa-1942-40f3-8c1d-2438caa4ce0a","stop":1750252860864},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252860864,"uuid":"0cabaf66-7cbb-4961-a581-97c3b935a09d","stop":1750252860864},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252860865,"uuid":"70a4da1a-70d2-4104-a71d-06bfcf8d64cf","stop":1750252860865}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252860864,"uuid":"d529be4f-03f1-4bbd-9a50-295a65c7b0b9","stop":1750252860873}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-2"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"}],"links":[],"start":1750252859258,"testCaseId":"31f03826b2a8da254be42b2d49bc35f3","fullName":"ui/recovery/recover-negative.spec.ts:23:7","stop":1750252860871} \ No newline at end of file diff --git a/allure-results/f5af340a-7f33-4278-bfc2-952662aede98-result.json b/allure-results/f5af340a-7f33-4278-bfc2-952662aede98-result.json new file mode 100644 index 0000000..6bbba3c --- /dev/null +++ b/allure-results/f5af340a-7f33-4278-bfc2-952662aede98-result.json @@ -0,0 +1 @@ +{"uuid":"f5af340a-7f33-4278-bfc2-952662aede98","name":"Переход по ссылке \"Забыли пароль?\"","historyId":"91fcabcb669557e4ddb559c077420e45:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserType.launch","start":1750252808951,"uuid":"efbb0290-77fd-4cf1-844d-f624f8df54b3","stop":1750252809251}],"attachments":[],"parameters":[],"name":"fixture: browser","start":1750252808950,"uuid":"7973a863-6999-4ed7-abaa-0dc8355d6c91","stop":1750252809251},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252809252,"uuid":"884f2c2b-1485-45f2-a3d0-94dada792d8f","stop":1750252809268}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252809252,"uuid":"1b7fc4d7-cc4b-4253-b391-01903bc9b5ee","stop":1750252809271},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252809273,"uuid":"191bb51d-a5cd-43da-bfd5-07a53d5c7543","stop":1750252809507}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252809271,"uuid":"167ec591-8e45-4158-a8d8-ccd8403c5afc","stop":1750252809508}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252808945,"uuid":"4c7b4f75-85dc-4c55-a61b-033f7aab0c70","stop":1750252809508},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252809517,"name":"page.goto(/login/authorization)","uuid":"a222ad35-6d27-4a43-aead-6a90ca7e38fd","stop":1750252810657},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252810660,"name":"locator.getByText('Забыли пароль?').click","uuid":"0bc38a32-879a-419f-80b0-9ca5877e4dcc","stop":1750252810784},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252810785,"name":"expect.toHaveURL","uuid":"db59783a-a8cf-4420-bfa4-9b7574c3dcf0","stop":1750252810839},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252810840,"name":"expect.toBeVisible","uuid":"31e745ed-ed43-42e3-b063-639690e41686","stop":1750252810847},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252810848,"uuid":"b45b06d2-0ce5-431a-bbdb-0c71dba6e1ae","stop":1750252810848},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252810848,"uuid":"09f5fe8d-02de-4c6f-b21d-70bc5a81bfa6","stop":1750252810848}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252810847,"uuid":"abb267c8-ef94-4478-a8bc-f00701f7fa5b","stop":1750252810857}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > chromium > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-2"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"}],"links":[],"start":1750252808951,"testCaseId":"91fcabcb669557e4ddb559c077420e45","fullName":"ui/login/login.link.spec.ts:6:5","stop":1750252810557} \ No newline at end of file diff --git a/allure-results/f6597af6-16e0-4b76-bd20-9ee414c8a2e1-result.json b/allure-results/f6597af6-16e0-4b76-bd20-9ee414c8a2e1-result.json new file mode 100644 index 0000000..daf9d93 --- /dev/null +++ b/allure-results/f6597af6-16e0-4b76-bd20-9ee414c8a2e1-result.json @@ -0,0 +1 @@ +{"uuid":"f6597af6-16e0-4b76-bd20-9ee414c8a2e1","name":"Некорректное имя и фамилия (слишком длинные)","historyId":"7134a02a04b606099de5c920fb62990a:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252861779,"uuid":"e9b08d81-ed04-40fc-87f4-8f7af129f1b8","stop":1750252861780}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252861778,"uuid":"d49a55b4-b69d-4bb0-9a22-737a81e04647","stop":1750252861781},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252861781,"uuid":"6649b1d9-6f40-4092-bf0f-678a68f77e66","stop":1750252861904}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252861781,"uuid":"6404616c-8a1d-4eb7-8425-bc853f391112","stop":1750252861904}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252861778,"uuid":"8d8df1de-a179-4ddb-a698-b04264fccbe9","stop":1750252861904},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252861905,"name":"page.goto(/login/registration)","uuid":"a34faba7-941e-4503-8276-8689ada70002","stop":1750252862937},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252862938,"name":"locator.fill(ААААААААААААААААААААААААААААААААААААААААААААААААААА)","uuid":"f2351d53-4cf3-4444-a722-82602bf11eb0","stop":1750252862959},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252862960,"name":"locator.fill(БББББББББББББББББББББББББББББББББББББББББББББББББББ)","uuid":"5594ea11-b10f-4dda-a1e6-2b8c3f80c2f7","stop":1750252862968},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252862969,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"758f6187-1398-4c42-983f-0d11e9719629","stop":1750252863227},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252863227,"name":"expect.toBeVisible","uuid":"9a969c19-3942-459e-bf58-c462eed730c8","stop":1750252863232},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252863233,"name":"expect.toBeVisible","uuid":"89b2fcca-f888-435b-9fd8-529a278fdb26","stop":1750252863237},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252863237,"uuid":"f5301fa6-00dc-4749-8690-fb4199ef0529","stop":1750252863237},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252863238,"uuid":"4f5929ea-92be-4d30-8b1d-055acd689b94","stop":1750252863238}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252863237,"uuid":"ed5564b7-2f20-428b-84a6-38fed8f925a1","stop":1750252863242}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-0"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750252861777,"testCaseId":"7134a02a04b606099de5c920fb62990a","fullName":"ui/registration/register.negative.spec.ts:16:7","stop":1750252863239} \ No newline at end of file diff --git a/allure-results/f7310bb2-e39a-4ba7-a2e8-4c78037402b3-result.json b/allure-results/f7310bb2-e39a-4ba7-a2e8-4c78037402b3-result.json new file mode 100644 index 0000000..bbebc2f --- /dev/null +++ b/allure-results/f7310bb2-e39a-4ba7-a2e8-4c78037402b3-result.json @@ -0,0 +1 @@ +{"uuid":"f7310bb2-e39a-4ba7-a2e8-4c78037402b3","name":"Слишком длинное название организации","historyId":"26486147b8778ca2341563049d2a3728:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserType.launch","start":1750252690589,"uuid":"d3dde7f9-84b7-4ebc-94a5-1722bab32039","stop":1750252692801}],"attachments":[],"parameters":[],"name":"fixture: browser","start":1750252690587,"uuid":"886a3d70-8d6b-4906-86b6-bbe52217ebbd","stop":1750252692801},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252692802,"uuid":"c226b20c-acd5-454b-81ee-e7e2e95726b8","stop":1750252692852}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252692801,"uuid":"fa37a0f2-076d-414c-b051-80e528205eb3","stop":1750252692853},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252692854,"uuid":"d5277178-b569-4e56-b6dd-d85e34fcf4f7","stop":1750252693342}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252692853,"uuid":"5bf008d5-5924-4b32-80ec-21b05c4a2191","stop":1750252693343}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252690583,"uuid":"86068cc3-7b34-4761-8af3-00b486a25bc0","stop":1750252693343},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252693352,"name":"page.goto(/login/registration)","uuid":"b827b909-e6ba-40c8-9f7a-dd171b34d888","stop":1750252694536},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252694538,"name":"locator.fill(Иван)","uuid":"787a6f61-af39-4514-a5fe-73967043e390","stop":1750252694639},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252694640,"name":"locator.fill(Иванов)","uuid":"b66482d5-3799-48b5-9b5f-fbb55e66afc4","stop":1750252694650},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252694652,"name":"locator.getByPlaceholder('Учёное звание*').click","uuid":"bb5908ae-8f0c-45ae-b136-9ab0b1899eb6","stop":1750252694695},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252694696,"name":"locator.click(li >> internal:has-text=\"Доцент\"i)","uuid":"586e8489-0e90-4f06-a995-b9513c942ea2","stop":1750252695089},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252695090,"name":"locator.getByPlaceholder('Учёная степень*').click","uuid":"19d8c99f-6dad-47ac-9745-e55f05f6ca8f","stop":1750252695489},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252695489,"name":"locator.click(li >> internal:has-text=\"Кандидат наук\"i)","uuid":"3a9c21d2-7612-46dc-90bb-d92ea2dc1c58","stop":1750252695875},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252695876,"name":"locator.fill(Преподаватель)","uuid":"3a5838fe-80d4-43ac-a1c7-8ad941f83618","stop":1750252695891},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252695892,"name":"locator.fill(ООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООО)","uuid":"e605b7c8-2f9e-49b5-ab39-114fde09479b","stop":1750252695904},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252695905,"name":"locator.fill(test1750252694536@example.com)","uuid":"9b03be31-c1eb-4d16-b058-09f8629c76f9","stop":1750252695915},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252695916,"name":"locator.fill(+79990241269)","uuid":"565ac22c-def2-4b61-ba5e-20feaefca52c","stop":1750252695923},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252695923,"name":"locator.fill(!Test123)","uuid":"788abdec-dc59-43d2-bcf8-2aa44169d415","stop":1750252695929},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252695930,"name":"locator.fill(!Test123)","uuid":"8d8a618e-b49e-44f1-ba99-1fb0fe1e625b","stop":1750252695939},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252695940,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"2dea5fe0-8abb-435b-82ee-f6ff1506a81c","stop":1750252695989},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252695990,"name":"expect.toBeVisible","uuid":"53b52e69-0f7a-4214-bf62-0c220706e386","stop":1750252696098},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252696099,"uuid":"70618dcf-6ca1-4355-b4ee-daf60c81f37f","stop":1750252696099},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252696099,"uuid":"e1da9de0-e056-4af8-a46c-db4940752db6","stop":1750252696099}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252696098,"uuid":"9a9d68c2-2467-48f5-8ea6-831761dd9ffd","stop":1750252696105}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-57743-worker-2"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750252690591,"testCaseId":"26486147b8778ca2341563049d2a3728","fullName":"ui/registration/register.negative.spec.ts:48:7","stop":1750252693896} \ No newline at end of file diff --git a/allure-results/f90f27e1-2838-4c52-a2b6-70d8eafe51df-result.json b/allure-results/f90f27e1-2838-4c52-a2b6-70d8eafe51df-result.json new file mode 100644 index 0000000..80745fa --- /dev/null +++ b/allure-results/f90f27e1-2838-4c52-a2b6-70d8eafe51df-result.json @@ -0,0 +1 @@ +{"uuid":"f90f27e1-2838-4c52-a2b6-70d8eafe51df","name":"Некорректный email (формат)","historyId":"d776d5fb9c918a79827aea417bdc449a:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252858842,"uuid":"c3a25c49-e868-49e8-9df1-1451433916c3","stop":1750252858844}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252858842,"uuid":"7ac2b437-e883-4abe-969f-174f763c9b51","stop":1750252858845},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252858845,"uuid":"b1545e8d-60dd-4a8e-a6fb-e74d2a33846f","stop":1750252858965}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252858845,"uuid":"60748939-c18c-4df4-a3fd-b1329e3fed16","stop":1750252858965}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252858841,"uuid":"d9231c0f-7379-4741-9714-f3540d01fc32","stop":1750252858965},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252858967,"name":"page.goto(/recoverpassword)","uuid":"2d4714af-0106-44fa-94a2-ad2c1f2600d3","stop":1750252860147},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252860148,"name":"locator.fill(invalid-email)","uuid":"693bd5fe-9b30-4265-8e91-9fea64fdd1e6","stop":1750252860171},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252860172,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"25f5ee89-674c-4f4b-bd39-05b9776d1730","stop":1750252860225},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252860225,"name":"expect.toBeVisible","uuid":"64235a09-b12d-481b-b685-de7610460222","stop":1750252860229},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252860229,"uuid":"2f01956e-483a-4553-bd53-5b929968bad1","stop":1750252860229},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252860229,"uuid":"1a97e961-664c-456a-94fa-cf166d3cd843","stop":1750252860230}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252860229,"uuid":"f3a6abb2-418c-4542-bcaa-c81490b4c9bd","stop":1750252860232}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-0"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"}],"links":[],"start":1750252858841,"testCaseId":"d776d5fb9c918a79827aea417bdc449a","fullName":"ui/recovery/recover-negative.spec.ts:7:7","stop":1750252860230} \ No newline at end of file diff --git a/allure-results/f927944e-8d98-4946-bdc0-b50bc927899a-result.json b/allure-results/f927944e-8d98-4946-bdc0-b50bc927899a-result.json new file mode 100644 index 0000000..f5ca4b4 --- /dev/null +++ b/allure-results/f927944e-8d98-4946-bdc0-b50bc927899a-result.json @@ -0,0 +1 @@ +{"uuid":"f927944e-8d98-4946-bdc0-b50bc927899a","name":"Успешная регистрация нового пользователя","historyId":"3562648cd3231e14b42a7151c17c62aa:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253611749,"uuid":"eb06a725-3c48-42f7-8f55-a1c11fa98721","stop":1750253611756}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253611748,"uuid":"69f41b2b-5199-4dac-a20a-1cfdcba8fe43","stop":1750253611758},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253611759,"uuid":"ab42729f-0e63-4b67-9787-e31af4aadcab","stop":1750253611924}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253611758,"uuid":"64990a2a-eeba-4426-8575-5b10d2554430","stop":1750253611924}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253611748,"uuid":"911973fb-6fe8-4bdb-b7ef-e5f8b381cd98","stop":1750253611924},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253611925,"name":"page.goto(/login/registration)","uuid":"59213678-8a3c-4d5d-bee0-a188b19bf24e","stop":1750253619679},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253619681,"name":"locator.fill(Иван)","uuid":"9741cbde-e828-4793-a4af-fe8fc4fd0df1","stop":1750253619742},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253619743,"name":"locator.fill(Тестов)","uuid":"c4d0ceac-6f9f-4ca8-8b0c-e93594ce483c","stop":1750253619773},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253619774,"name":"locator.fill(Александрович)","uuid":"47318e92-2f90-48db-bd99-b93e65c0b8b3","stop":1750253619811},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253619812,"name":"locator.getByPlaceholder('Учёное звание*').click","uuid":"2e077c74-37a0-4f44-beac-b725fcc107e5","stop":1750253619899},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253619900,"name":"locator.click(li >> internal:has-text=\"Доцент\"i)","uuid":"68f98568-b2c9-4403-aa16-f89b76047020","stop":1750253620001},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253620021,"name":"locator.getByPlaceholder('Учёная степень*').click","uuid":"5fbc71ef-99e3-47c5-ae82-79648dcf5df8","stop":1750253620243},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253620245,"name":"locator.click(li >> internal:has-text=\"Кандидат наук\"i)","uuid":"186b4536-9ff7-4db8-8674-55eea51df4a9","stop":1750253620328},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253620328,"name":"locator.fill(Преподаватель)","uuid":"1c905345-3165-4993-989f-99c7c84bc12b","stop":1750253620344},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253620344,"name":"locator.fill(ЮФУ)","uuid":"150805a6-5697-4ce9-913c-5ff13ddc1224","stop":1750253620367},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253620368,"name":"locator.fill(autotest51068@example.com)","uuid":"50dba950-5f0c-463d-b5e1-747d46aae707","stop":1750253620403},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253620404,"name":"locator.fill(+79000051068)","uuid":"ce2deebd-4675-4c17-a8d1-00aefea112c8","stop":1750253620420},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253620420,"name":"locator.fill(!Test123456)","uuid":"f5c3c717-d545-41ac-b8d5-c6b75b42c34c","stop":1750253620431},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253620431,"name":"locator.fill(!Test123456)","uuid":"4cf4cfd6-c668-40c2-8d96-6379cf3a504d","stop":1750253620446},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253620448,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"796e3c78-89df-4218-b0ca-ee2ccbbd9b3e","stop":1750253620522},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253620522,"name":"expect.toHaveURL","uuid":"d5f404b6-fd53-4b00-868b-8c8c31e73530","stop":1750253620641},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253620641,"name":"expect.toBeVisible","uuid":"7d391255-545e-4c78-9ab1-7e40b9a7bf4e","stop":1750253620648},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253620648,"uuid":"15150e60-532a-4c5e-8838-ee67aa46154b","stop":1750253620649},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253620649,"uuid":"8725bd0f-b3a4-4a23-9ce7-fbea80a105a4","stop":1750253620649}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253620648,"uuid":"58cd167d-afb7-4258-9dc1-2f085c6d62da","stop":1750253620700}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.spec.ts"},{"name":"titlePath","value":" > firefox > ui/registration/register.spec.ts > Позитивные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-1"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/registration/register.spec.ts"},{"name":"subSuite","value":"Позитивные сценарии регистрации"}],"links":[],"start":1750253611748,"testCaseId":"3562648cd3231e14b42a7151c17c62aa","fullName":"ui/registration/register.spec.ts:6:7","stop":1750253620699} \ No newline at end of file diff --git a/allure-results/f9dbc18f-cf01-496a-a929-cf6f0dc0bd68-result.json b/allure-results/f9dbc18f-cf01-496a-a929-cf6f0dc0bd68-result.json new file mode 100644 index 0000000..51a0558 --- /dev/null +++ b/allure-results/f9dbc18f-cf01-496a-a929-cf6f0dc0bd68-result.json @@ -0,0 +1 @@ +{"uuid":"f9dbc18f-cf01-496a-a929-cf6f0dc0bd68","name":"Пароли не совпадают","historyId":"a7eaebb1e41fbbf13bf61195120b3ce9:b444eb0fbe6390c71e68b51dd25701fc","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252847301,"uuid":"4779c22f-3640-44a5-b28d-19d0e64e466b","stop":1750252847307}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252847301,"uuid":"c1453948-2345-4e91-8333-d0cfb7822572","stop":1750252847308},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252847309,"uuid":"e6d7e6a8-ce2f-4ecf-aa4b-75566e3835d4","stop":1750252847550}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252847308,"uuid":"38c53ab8-b64e-4f0f-a0f4-67a230cde840","stop":1750252847550}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252847300,"uuid":"0ec558a3-3c24-4be5-afb8-3317e56da18d","stop":1750252847550},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252847551,"name":"page.goto(/recoverpassword)","uuid":"dd5aa575-669c-4e4a-9fec-4df6c1678ce3","stop":1750252849355},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252849356,"name":"locator.fill(autotest@example.com)","uuid":"ea37bfa0-0a54-4f7c-8d3c-119bc11d26fe","stop":1750252849386},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252849386,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"f90112ba-8560-4dbc-a5b2-2bc6a887980e","stop":1750252849435},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252849436,"name":"locator.count(input[type=\"text\"])","uuid":"8f17703b-dfc1-4761-ad63-638d4b1ff000","stop":1750252849437},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252849438,"name":"locator.fill(0)","uuid":"5faf4092-c2e7-4be8-a42e-219ae647f737","stop":1750252849534},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252849534,"name":"locator.fill(0)","uuid":"f9041227-eb80-4b8b-aaf1-2ca9c44f4151","stop":1750252849546},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252849546,"name":"locator.fill(0)","uuid":"be3d8f52-fa3b-467c-9e99-8766e13a5cfc","stop":1750252849554},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252849555,"name":"locator.fill(0)","uuid":"27d67731-bf23-44ac-af11-bf60058205d4","stop":1750252849563},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252849564,"name":"locator.fill(0)","uuid":"0a56c197-b41c-4e89-9d27-53fb6d00d9e2","stop":1750252849569},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252849569,"name":"locator.fill(0)","uuid":"598b93ce-9bea-449f-a6d2-196a178704ba","stop":1750252849574},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252849574,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"8a91b9bf-4ae4-4943-a34a-dd1ddc47e9fc","stop":1750252849698},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252849698,"name":"locator.fill(!Test123456)","uuid":"0ab0162d-315d-4937-a60f-e80dfb650f5b","stop":1750252849788},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252849789,"name":"locator.fill(!OtherPass123)","uuid":"87aee450-0832-42b4-8188-bba7ad987343","stop":1750252849798},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252849798,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"acacd3d9-2470-4311-a5e4-9c2dc0630089","stop":1750252849849},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252849850,"name":"expect.toBeVisible","uuid":"94be9e9f-d533-496e-8ff7-d9f7a9dc63a8","stop":1750252849856},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252849856,"uuid":"7f32cdd5-e6b1-4c9f-ab4b-ff2e75adcbc7","stop":1750252849856},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252849856,"uuid":"413a5697-841b-4cf1-be0f-5caf9c34953c","stop":1750252849856}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252849856,"uuid":"c3f702ea-7f30-4826-907e-8be1ecb958a2","stop":1750252849864}],"attachments":[],"parameters":[{"name":"Project","value":"firefox"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > firefox > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-1"},{"name":"parentSuite","value":"firefox"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"}],"links":[],"start":1750252847300,"testCaseId":"a7eaebb1e41fbbf13bf61195120b3ce9","fullName":"ui/recovery/recover-negative.spec.ts:56:7","stop":1750252849862} \ No newline at end of file diff --git a/allure-results/fa799a98-de02-4d6e-b3df-4e9a8adbd349-result.json b/allure-results/fa799a98-de02-4d6e-b3df-4e9a8adbd349-result.json new file mode 100644 index 0000000..1d1642b --- /dev/null +++ b/allure-results/fa799a98-de02-4d6e-b3df-4e9a8adbd349-result.json @@ -0,0 +1 @@ +{"uuid":"fa799a98-de02-4d6e-b3df-4e9a8adbd349","name":"Переход по ссылке \"Забыли пароль?\"","historyId":"91fcabcb669557e4ddb559c077420e45:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750253615928,"uuid":"ad3d1bef-9fc2-463e-922e-720efbb205a9","stop":1750253615930}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253615927,"uuid":"ce656ce5-0630-4294-9b90-bfb6c308ef47","stop":1750253615931},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750253615932,"uuid":"e8562ba9-2163-4391-a514-b9c5bcfcd443","stop":1750253616055}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253615931,"uuid":"f0c9e025-db06-4df3-8fc0-fb4891be4d44","stop":1750253616055}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750253615927,"uuid":"05053b90-a438-4e43-af49-8b373801f1b5","stop":1750253616055},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253616057,"name":"page.goto(/login/authorization)","uuid":"15ce832f-232b-40a9-b7af-88a2da5fa652","stop":1750253617322},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253617323,"name":"locator.getByText('Забыли пароль?').click","uuid":"7aae3bef-8494-42db-97b5-85f064611087","stop":1750253617436},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253617437,"name":"expect.toHaveURL","uuid":"8230f6c9-5d20-4a22-bd3e-f0428c20fcd0","stop":1750253617444},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750253617444,"name":"expect.toBeVisible","uuid":"5b65fcc1-d842-4a9f-988f-4a5fd6b54e25","stop":1750253617450},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750253617451,"uuid":"cdbefa90-7b31-447b-9cda-ab4078edd1b0","stop":1750253617451},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750253617451,"uuid":"ef3b074f-fad3-4b24-b0a5-d0411d8bbbbd","stop":1750253617451}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750253617450,"uuid":"b4395eb8-fa8d-4ccc-883e-66d1c166fc94","stop":1750253618483}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.login.login.link.spec.ts"},{"name":"titlePath","value":" > webkit > ui/login/login.link.spec.ts > Переходы по ссылкам в разделе авторизации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-59479-worker-3"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/login/login.link.spec.ts"},{"name":"subSuite","value":"Переходы по ссылкам в разделе авторизации"}],"links":[],"start":1750253615927,"testCaseId":"91fcabcb669557e4ddb559c077420e45","fullName":"ui/login/login.link.spec.ts:6:5","stop":1750253618481} \ No newline at end of file diff --git a/allure-results/fa8d168f-c429-4b90-ba5b-26772808517d-result.json b/allure-results/fa8d168f-c429-4b90-ba5b-26772808517d-result.json new file mode 100644 index 0000000..0a4c73f --- /dev/null +++ b/allure-results/fa8d168f-c429-4b90-ba5b-26772808517d-result.json @@ -0,0 +1 @@ +{"uuid":"fa8d168f-c429-4b90-ba5b-26772808517d","name":"Отправка пустой формы","historyId":"61b0fd9a6b9153c787b71ef3413cea92:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserType.launch","start":1750252435945,"uuid":"65f51d50-4adc-40d0-8cc6-d4e5fa19352c","stop":1750252437703}],"attachments":[],"parameters":[],"name":"fixture: browser","start":1750252435944,"uuid":"281331d8-008e-4b91-a870-64930bc5bcc5","stop":1750252437703},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252437708,"uuid":"4f839b9b-5eef-4523-b8e6-fa1f55c9d911","stop":1750252438639}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252437705,"uuid":"ad5adfe0-bfa2-475e-8f07-518c891404bc","stop":1750252438640},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252438641,"uuid":"d2f5254c-d795-4ac4-9acb-74dd390b403f","stop":1750252439064}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252438640,"uuid":"d1d4b63e-0de3-4327-9665-60b9f9ec02ac","stop":1750252439064}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252435941,"uuid":"6cd0aa62-9b34-43e4-9206-7f1475798c4d","stop":1750252439064},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252439069,"name":"page.goto(/login/registration)","uuid":"3bc79f4f-7145-4659-a00a-357ce515a9e4","stop":1750252443896},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252443901,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"291b9b0b-8fab-4204-a8fa-e6b36bbb7cbb","stop":1750252446112},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252446113,"name":"locator.allTextContents(div[name=\"error\"] >> internal:has-text=\"Поле обязательно для заполнения\"i)","uuid":"347837bf-8ce7-46d3-82d9-3dd7b9b4b400","stop":1750252451128},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252451132,"name":"expect.toBeGreaterThan","uuid":"09bfac02-2e89-407f-be9c-b31593fd1459","stop":1750252451133},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252451134,"name":"expect.toBeVisible","uuid":"112255e2-eaf0-425a-96ba-aea4e7acdf80","stop":1750252463015},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252463017,"uuid":"9fb13cf7-ba2e-453a-9cbd-aa6217c64829","stop":1750252463017},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252463017,"uuid":"fc35ed5d-35ce-4d76-b1ee-47400d4980d8","stop":1750252463017}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252463016,"uuid":"0720a1f1-6b6c-4796-a3e8-82eeb37c41b0","stop":1750252463057}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-57209-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750252435945,"testCaseId":"61b0fd9a6b9153c787b71ef3413cea92","fullName":"ui/registration/register.negative.spec.ts:6:7","stop":1750252461297} \ No newline at end of file diff --git a/allure-results/fbcffb41-682b-4a9e-bd19-1de068d13574-attachment.md b/allure-results/fbcffb41-682b-4a9e-bd19-1de068d13574-attachment.md new file mode 100644 index 0000000..fad9228 --- /dev/null +++ b/allure-results/fbcffb41-682b-4a9e-bd19-1de068d13574-attachment.md @@ -0,0 +1,155 @@ +# Test info + +- Name: Негативные сценарии регистрации >> Некорректный email формат +- Location: /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.negative.spec.ts:28:7 + +# Error details + +``` +Error: page.goto: Target page, context or browser has been closed +Call log: + - navigating to "https://ssas.dev.rdcenter.ru/login/registration", waiting until "load" + + at RegisterPage.goto (/Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/page-objects/RegisterPage.ts:81:21) + at /Users/vladsmykov/Desktop/Work/AUTOTESTS/CCPC_playwright/tests/ui/registration/register.negative.spec.ts:30:24 +``` + +# Test source + +```ts + 1 | import { Page, Locator } from '@playwright/test'; + 2 | + 3 | export class RegisterPage { + 4 | readonly page: Page; + 5 | + 6 | // Поля ввода + 7 | readonly nameInput: Locator; + 8 | readonly surnameInput: Locator; + 9 | readonly patronymicInput: Locator; + 10 | readonly academicTitleInput: Locator; + 11 | readonly degreeInput: Locator; + 12 | readonly positionInput: Locator; + 13 | readonly organizationInput: Locator; + 14 | readonly emailInput: Locator; + 15 | readonly phoneInput: Locator; + 16 | readonly passwordInput: Locator; + 17 | readonly confirmPasswordInput: Locator; + 18 | + 19 | // Глазики + 20 | readonly passwordToggle: Locator; + 21 | readonly confirmPasswordToggle: Locator; + 22 | + 23 | // Кнопка регистрации + 24 | readonly submitButton: Locator; + 25 | + 26 | // Ссылка "Авторизируйтесь" + 27 | readonly loginLink: Locator; + 28 | + 29 | // Ошибки валидации + 30 | readonly requiredFieldErrors: Locator; + 31 | readonly nameError: Locator; + 32 | readonly surnameError: Locator; + 33 | readonly positionError: Locator; + 34 | readonly emailFormatError: Locator; + 35 | readonly passwordLengthError: Locator; + 36 | readonly confirmPasswordRequiredError: Locator; + 37 | + 38 | // Модалки + 39 | readonly duplicateUserModal: Locator; + 40 | readonly invalidOrgModal: Locator; + 41 | + 42 | constructor(page: Page) { + 43 | this.page = page; + 44 | + 45 | // Инпуты + 46 | this.nameInput = page.getByPlaceholder('Имя*'); + 47 | this.surnameInput = page.getByPlaceholder('Фамилия*'); + 48 | this.patronymicInput = page.getByPlaceholder('Отчество'); + 49 | this.academicTitleInput = page.getByPlaceholder('Учёное звание*'); + 50 | this.degreeInput = page.getByPlaceholder('Учёная степень*'); + 51 | this.positionInput = page.getByPlaceholder('Должность'); + 52 | this.organizationInput = page.getByPlaceholder('Организация*'); + 53 | this.emailInput = page.getByPlaceholder('Email (логин)*'); + 54 | this.phoneInput = page.getByPlaceholder('Номер телефона*'); + 55 | this.passwordInput = page.getByPlaceholder('Придумайте пароль*'); + 56 | this.confirmPasswordInput = page.getByPlaceholder('Повторите пароль*'); + 57 | + 58 | // Глазики + 59 | this.passwordToggle = page.locator('input[name="password"] + img'); + 60 | this.confirmPasswordToggle = page.locator('input[name="confirmPassword"] + img'); + 61 | + 62 | // Кнопки + 63 | this.submitButton = page.getByRole('button', { name: 'Зарегистрироваться' }); + 64 | this.loginLink = page.getByText('Авторизируйтесь'); + 65 | + 66 | // Ошибки + 67 | this.requiredFieldErrors = page.locator('div[name="error"]', { hasText: 'Поле обязательно для заполнения' }); + 68 | this.nameError = page.getByText('Некорректное имя'); + 69 | this.surnameError = page.getByText('Некорректная фамилия'); + 70 | this.positionError = page.getByText('Не более 200 символов!'); + 71 | this.emailFormatError = page.getByText('Некорректный Email'); + 72 | this.passwordLengthError = page.getByText('Не менее 8 символов'); + 73 | this.confirmPasswordRequiredError = page.getByText('Поле обязательно для заполнения'); + 74 | + 75 | // Модальные окна + 76 | this.duplicateUserModal = page.getByText('Пользователь с таким email или телефоном уже зарегистрирован!'); + 77 | this.invalidOrgModal = page.getByText('Некорректное название организации!'); + 78 | } + 79 | + 80 | async goto() { +> 81 | await this.page.goto('/login/registration'); + | ^ Error: page.goto: Target page, context or browser has been closed + 82 | } + 83 | + 84 | async register(data: { + 85 | name: string, + 86 | surname: string, + 87 | patronymic?: string, + 88 | academicTitle: string, + 89 | degree: string, + 90 | position?: string, + 91 | organization: string, + 92 | email: string, + 93 | phone: string, + 94 | password: string, + 95 | confirmPassword: string + 96 | }) { + 97 | await this.nameInput.fill(data.name); + 98 | await this.surnameInput.fill(data.surname); + 99 | if (data.patronymic) await this.patronymicInput.fill(data.patronymic); + 100 | await this.academicTitleInput.click(); + 101 | await this.page.locator('li', { hasText: data.academicTitle }).click(); + 102 | await this.degreeInput.click(); + 103 | await this.page.locator('li', { hasText: data.degree }).click(); + 104 | if (data.position) await this.positionInput.fill(data.position); + 105 | await this.organizationInput.fill(data.organization); + 106 | await this.emailInput.fill(data.email); + 107 | await this.phoneInput.fill(data.phone); + 108 | await this.passwordInput.fill(data.password); + 109 | await this.confirmPasswordInput.fill(data.confirmPassword); + 110 | await this.submitButton.click(); + 111 | } + 112 | + 113 | async fillName(name: string) { + 114 | await this.nameInput.fill(name); + 115 | } + 116 | + 117 | async fillSurname(surname: string) { + 118 | await this.surnameInput.fill(surname); + 119 | } + 120 | + 121 | async fillEmail(email: string) { + 122 | await this.emailInput.fill(email); + 123 | } + 124 | + 125 | async fillPosition(position: string) { + 126 | await this.positionInput.fill(position); + 127 | } + 128 | + 129 | async submit() { + 130 | await this.submitButton.click(); + 131 | } + 132 | + 133 | } + 134 | +``` \ No newline at end of file diff --git a/allure-results/fda73d21-a53e-44a6-8ad5-244035756ed7-result.json b/allure-results/fda73d21-a53e-44a6-8ad5-244035756ed7-result.json new file mode 100644 index 0000000..b984b09 --- /dev/null +++ b/allure-results/fda73d21-a53e-44a6-8ad5-244035756ed7-result.json @@ -0,0 +1 @@ +{"uuid":"fda73d21-a53e-44a6-8ad5-244035756ed7","name":"Некорректный email (формат)","historyId":"d776d5fb9c918a79827aea417bdc449a:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252813762,"uuid":"9dbaf0d4-0e1f-430b-b572-20d01aa8eef7","stop":1750252813764}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252813762,"uuid":"33bcb9c7-378b-4269-97af-fd2e17564c6d","stop":1750252813764},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252813765,"uuid":"3fc7e455-3540-4bca-bc9e-48f49c5fb841","stop":1750252813805}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252813764,"uuid":"2e26f5b0-e0fd-49b6-96fc-28696d710f9c","stop":1750252813805}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252813761,"uuid":"0a3277a1-c594-458a-a708-cc1d81dc9c35","stop":1750252813805},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252813807,"name":"page.goto(/recoverpassword)","uuid":"cc31c006-41b8-470b-9ca2-e9e3c5cf5019","stop":1750252814514},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252814514,"name":"locator.fill(invalid-email)","uuid":"6e76a454-d3ce-4e10-9fd6-056b23b3b565","stop":1750252814546},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252814547,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"dd138186-38e9-444a-9cd6-3cd75d9c2492","stop":1750252814574},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252814575,"name":"expect.toBeVisible","uuid":"54044d87-5755-400c-882d-372a52c52574","stop":1750252814576},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252814577,"uuid":"d4454ba1-7a4c-4782-93be-d5957897fdeb","stop":1750252814577},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252814577,"uuid":"a9b27c6c-8992-4fa1-9ee5-eaa70da9ecff","stop":1750252814577}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252814577,"uuid":"9c643750-90fd-4d7f-b4e5-6992358cb973","stop":1750252814580}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-negative.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-negative.spec.ts > Негативные сценарии восстановления пароля"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-0"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии восстановления пароля"}],"links":[],"start":1750252813761,"testCaseId":"d776d5fb9c918a79827aea417bdc449a","fullName":"ui/recovery/recover-negative.spec.ts:7:7","stop":1750252814579} \ No newline at end of file diff --git a/allure-results/fdba4b09-18f7-41f1-b79c-3031b08c590b-result.json b/allure-results/fdba4b09-18f7-41f1-b79c-3031b08c590b-result.json new file mode 100644 index 0000000..8353153 --- /dev/null +++ b/allure-results/fdba4b09-18f7-41f1-b79c-3031b08c590b-result.json @@ -0,0 +1 @@ +{"uuid":"fdba4b09-18f7-41f1-b79c-3031b08c590b","name":"Слишком длинное название организации","historyId":"26486147b8778ca2341563049d2a3728:84e28e814b821ed013329cc8dbc467e0","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252862689,"uuid":"0188f608-e11a-468e-9565-6e3be983664b","stop":1750252862693}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252862689,"uuid":"2744bc3d-e113-40a1-84b8-6abdd8231774","stop":1750252862695},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252862696,"uuid":"4bd4772b-16de-410b-8ab0-c7f1a3e71fa8","stop":1750252862829}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252862695,"uuid":"fe6dcbdb-9ca9-4212-b021-1766b1f5c847","stop":1750252862829}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252862687,"uuid":"2b4fe64e-0628-4ddc-a93a-d324a623a25d","stop":1750252862830},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252862831,"name":"page.goto(/login/registration)","uuid":"c24737d0-21ba-4d8b-8edc-a7c4477c6691","stop":1750252863593},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252863594,"name":"locator.fill(Иван)","uuid":"e6d440d0-5b0a-4a95-8f4d-e618f639c1d4","stop":1750252863670},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252863671,"name":"locator.fill(Иванов)","uuid":"0f54eaa1-1700-49e9-ae8a-aa41bbcce5a0","stop":1750252863682},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252863684,"name":"locator.getByPlaceholder('Учёное звание*').click","uuid":"ab03b43e-7c6f-48c9-a7ba-374fb740ee07","stop":1750252863753},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252863753,"name":"locator.click(li >> internal:has-text=\"Доцент\"i)","uuid":"810b5c1e-22c8-4875-b2d3-8df02847cba3","stop":1750252864154},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252864155,"name":"locator.getByPlaceholder('Учёная степень*').click","uuid":"5014dfdf-aca1-4c9b-8810-f97e7434e1c7","stop":1750252864536},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252864537,"name":"locator.click(li >> internal:has-text=\"Кандидат наук\"i)","uuid":"3ae56906-25bb-415a-a440-ace4503336f4","stop":1750252864923},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252864924,"name":"locator.fill(Преподаватель)","uuid":"4b07fb27-55f8-44a7-ab08-372b6b709820","stop":1750252864937},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252864938,"name":"locator.fill(ООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООООО)","uuid":"cc76097f-fe01-4c7e-8a75-465007f7ab52","stop":1750252864951},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252864952,"name":"locator.fill(test1750252863593@example.com)","uuid":"383c19ca-b41c-4e85-9dbd-ab4b86655301","stop":1750252864962},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252864963,"name":"locator.fill(+79990819927)","uuid":"9c871c52-c228-4fa5-87ae-ffa25e088cdf","stop":1750252864972},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252864973,"name":"locator.fill(!Test123)","uuid":"d0f96916-c412-46d6-b490-9605b73c01f7","stop":1750252864979},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252864980,"name":"locator.fill(!Test123)","uuid":"e2f033db-717b-482c-9a0b-f5fc6ea71e56","stop":1750252864987},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252864987,"name":"locator.getByRole('button', { name: 'Зарегистрироваться' }).click","uuid":"dd6ab2dd-dba6-4776-8503-4c64b4c51b91","stop":1750252865023},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252865024,"name":"expect.toBeVisible","uuid":"70f4258b-a509-4b91-9adc-e6896e767246","stop":1750252865132},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252865132,"uuid":"3dccc64a-2846-4abc-86ac-1be3a255bd2a","stop":1750252865132},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252865132,"uuid":"a79cfce1-00b0-437b-b52f-9e767c1a0073","stop":1750252865132}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252865132,"uuid":"d367b1fa-3308-435f-96ac-208040b71486","stop":1750252865135}],"attachments":[],"parameters":[{"name":"Project","value":"webkit"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.registration.register.negative.spec.ts"},{"name":"titlePath","value":" > webkit > ui/registration/register.negative.spec.ts > Негативные сценарии регистрации"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-1"},{"name":"parentSuite","value":"webkit"},{"name":"suite","value":"ui/registration/register.negative.spec.ts"},{"name":"subSuite","value":"Негативные сценарии регистрации"}],"links":[],"start":1750252862686,"testCaseId":"26486147b8778ca2341563049d2a3728","fullName":"ui/registration/register.negative.spec.ts:48:7","stop":1750252865131} \ No newline at end of file diff --git a/allure-results/fe9b23a0-18eb-4bef-a8c8-4885c8208e2e-result.json b/allure-results/fe9b23a0-18eb-4bef-a8c8-4885c8208e2e-result.json new file mode 100644 index 0000000..c0e26ec --- /dev/null +++ b/allure-results/fe9b23a0-18eb-4bef-a8c8-4885c8208e2e-result.json @@ -0,0 +1 @@ +{"uuid":"fe9b23a0-18eb-4bef-a8c8-4885c8208e2e","name":"Пользователь успешно восстанавливает пароль","historyId":"1779c735aef9d62c071557455e74e57f:5bd835b0d6b1d4ada3b9f0db936e82c8","status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browser.newContext","start":1750252822515,"uuid":"a4ae6cc8-dcbb-4859-8fca-74bc17a3804b","stop":1750252822519}],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252822514,"uuid":"0c36b96b-0bac-4513-80a4-582f86b39e10","stop":1750252822522},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"browserContext.newPage","start":1750252822525,"uuid":"f516eb9f-811b-4397-bd0b-76561040eed3","stop":1750252822567}],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252822524,"uuid":"39dcc4bb-f674-4b25-9102-25a7252ea921","stop":1750252822567}],"attachments":[],"parameters":[],"name":"Before Hooks","start":1750252822512,"uuid":"1b2ff7ed-aec9-4736-8e22-a80513ac7da4","stop":1750252822567},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252822570,"name":"page.goto(/recoverpassword)","uuid":"979f0e74-157e-4cbe-974b-983196c6a304","stop":1750252823986},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252823987,"name":"locator.fill(autotest@example.com)","uuid":"8f3c8b33-dd92-4da6-baea-26bd164aeba1","stop":1750252824031},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252824032,"name":"locator.getByRole('button', { name: 'Далее' }).click","uuid":"7bfeeed2-405a-4867-9353-86c63d506372","stop":1750252824073},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252824074,"name":"expect.toHaveURL","uuid":"f15535ff-e61a-4c4e-a3df-c7937a376d99","stop":1750252824192},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252824192,"name":"locator.count(input[type=\"text\"])","uuid":"47673bdd-b473-4f4f-9a52-1a728e29f09e","stop":1750252824196},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252824197,"name":"locator.fill(0)","uuid":"a5ba5068-d602-41af-acc6-493280097c4c","stop":1750252824203},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252824204,"name":"locator.fill(0)","uuid":"96edf9a2-4cc0-4878-a727-6ffd4260b2ac","stop":1750252824208},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252824208,"name":"locator.fill(0)","uuid":"e22eea43-b1e1-48c3-ac78-8127e234e422","stop":1750252824212},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252824213,"name":"locator.fill(0)","uuid":"98541fbd-fd47-48c1-b10c-69d471b22eb1","stop":1750252824218},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252824219,"name":"locator.fill(0)","uuid":"b75ce229-7f8b-4e59-9d92-561201b58ef4","stop":1750252824223},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252824224,"name":"locator.fill(0)","uuid":"ae618b38-4f20-43a7-a37c-4ead5ef66c14","stop":1750252824227},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252824228,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"0786dfce-29a8-4fd9-9041-3add97c71b88","stop":1750252824259},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252824260,"name":"expect.toBeVisible","uuid":"96f3ef09-b601-41a7-ab39-0e4f2650c6d5","stop":1750252824364},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252824365,"name":"locator.fill(!Test123456)","uuid":"2c483f03-9b60-43d2-b2d0-b2b2badd4f17","stop":1750252824369},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252824370,"name":"locator.fill(!Test123456)","uuid":"3b356025-6bdd-4173-b12a-4d9eeebfa07a","stop":1750252824374},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252824375,"name":"locator.getByRole('button', { name: 'Продолжить' }).click","uuid":"7ea8ee9b-0d8c-472d-96f6-8727238ad5f1","stop":1750252824407},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252824408,"name":"expect.toHaveURL","uuid":"e3d84a9a-f1e5-48b9-be6f-0ba4dd056a9e","stop":1750252826270},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1750252826271,"name":"expect.toBeVisible","uuid":"bdddfaf0-b69e-4302-944d-95425cc74261","stop":1750252826276},{"status":"passed","statusDetails":{},"stage":"finished","steps":[{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: page","start":1750252826277,"uuid":"79213e25-ee7a-42f5-8969-8baaca5885aa","stop":1750252826277},{"status":"passed","statusDetails":{},"stage":"finished","steps":[],"attachments":[],"parameters":[],"name":"fixture: context","start":1750252826277,"uuid":"b883bf81-e1e4-4fe4-9dff-260cf70ec3d2","stop":1750252826277}],"attachments":[],"parameters":[],"name":"After Hooks","start":1750252826277,"uuid":"4d18ddb1-737b-45bb-bc17-e9cfbe290bf7","stop":1750252826283}],"attachments":[],"parameters":[{"name":"Project","value":"chromium"}],"labels":[{"name":"language","value":"javascript"},{"name":"framework","value":"playwright"},{"name":"package","value":"ui.recovery.recover-password.spec.ts"},{"name":"titlePath","value":" > chromium > ui/recovery/recover-password.spec.ts > Восстановление пароля — позитивные сценарии"},{"name":"host","value":"MacBook-Air-Vlad.local"},{"name":"thread","value":"pid-58272-worker-1"},{"name":"parentSuite","value":"chromium"},{"name":"suite","value":"ui/recovery/recover-password.spec.ts"},{"name":"subSuite","value":"Восстановление пароля — позитивные сценарии"}],"links":[],"start":1750252822512,"testCaseId":"1779c735aef9d62c071557455e74e57f","fullName":"ui/recovery/recover-password.spec.ts:7:7","stop":1750252826279} \ No newline at end of file diff --git a/page-objects/RegisterPage.ts b/page-objects/RegisterPage.ts index 05685d3..208979d 100644 --- a/page-objects/RegisterPage.ts +++ b/page-objects/RegisterPage.ts @@ -109,4 +109,25 @@ export class RegisterPage { await this.confirmPasswordInput.fill(data.confirmPassword); await this.submitButton.click(); } + + async fillName(name: string) { + await this.nameInput.fill(name); + } + + async fillSurname(surname: string) { + await this.surnameInput.fill(surname); + } + + async fillEmail(email: string) { + await this.emailInput.fill(email); + } + + async fillPosition(position: string) { + await this.positionInput.fill(position); + } + + async submit() { + await this.submitButton.click(); + } + } diff --git a/playwright.config.ts b/playwright.config.ts index b907a96..0117621 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -35,8 +35,12 @@ export default defineConfig({ /* Опция для игнорирования ошибок SSL сертификатов */ ignoreHTTPSErrors: true, + screenshot: 'only-on-failure', //скрин при падении + video: 'retain-on-failure', // видео при падении + trace: 'retain-on-failure', + /* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */ - trace: 'on-first-retry', + //trace: 'on-first-retry', }, /* Configure projects for major browsers */ diff --git a/tests/ui/registration/register.negative.spec.ts b/tests/ui/registration/register.negative.spec.ts new file mode 100644 index 0000000..dae1d51 --- /dev/null +++ b/tests/ui/registration/register.negative.spec.ts @@ -0,0 +1,70 @@ +import { test, expect } from '@playwright/test'; +import { RegisterPage } from '../../../page-objects/RegisterPage'; + +test.describe('Негативные сценарии регистрации', () => { + + test('Отправка пустой формы', async ({ page }) => { + const registerPage = new RegisterPage(page); + await registerPage.goto(); + await registerPage.submit(); + + const requiredErrors = await page.locator('div[name="error"]', { hasText: 'Поле обязательно для заполнения' }).allTextContents(); + expect(requiredErrors.length).toBeGreaterThan(0); + await expect(page.getByText('Не менее 8 символов')).toBeVisible(); // пароль + }); + + test('Некорректное имя и фамилия (слишком длинные)', async ({ page }) => { + const registerPage = new RegisterPage(page); + await registerPage.goto(); + + await registerPage.fillName('А'.repeat(51)); + await registerPage.fillSurname('Б'.repeat(51)); + await registerPage.submit(); + + await expect(page.getByText('Некорректное имя')).toBeVisible(); + await expect(page.getByText('Некорректная фамилия')).toBeVisible(); + }); + + test('Некорректный email формат', async ({ page }) => { + const registerPage = new RegisterPage(page); + await registerPage.goto(); + + await registerPage.fillEmail('invalid-email'); + await registerPage.submit(); + + await expect(page.getByText('Некорректный Email')).toBeVisible(); + }); + + test('Слишком длинная должность', async ({ page }) => { + const registerPage = new RegisterPage(page); + await registerPage.goto(); + + await registerPage.fillPosition('X'.repeat(201)); + await registerPage.submit(); + + await expect(page.getByText('Не более 200 символов!')).toBeVisible(); + }); + + test('Слишком длинное название организации', async ({ page }) => { + const registerPage = new RegisterPage(page); + await registerPage.goto(); + + // Заполнить все поля валидно, кроме организации + await registerPage.register({ + name: 'Иван', + surname: 'Иванов', + patronymic: '', + academicTitle: 'Доцент', + degree: 'Кандидат наук', + position: 'Преподаватель', + organization: 'О'.repeat(201), + email: `test${Date.now()}@example.com`, + phone: `+7999${Math.floor(Math.random() * 1000000).toString().padStart(7, '0')}`, + password: '!Test123', + confirmPassword: '!Test123' + }); + + await expect(page.getByText('Некорректное название организации!')).toBeVisible(); + }); + +});