screenshot/test_1

This commit is contained in:
ramkumarp
2025-03-27 11:21:02 +00:00
commit 616d466383
470 changed files with 144705 additions and 0 deletions

13
tests/login.spec.js Normal file
View File

@@ -0,0 +1,13 @@
import { test, expect } from '@playwright/test';
test('Login page', async ({ page }) => {
// Navigate to the login page
await page.goto('http://185.100.212.76:8200');
await page.getByPlaceholder('Email').fill('nalvazhuthi@hexrfactory.com');
await page.getByPlaceholder('Password').fill('123456');
await page.waitForTimeout(3000);
await page.getByRole('button', { name: 'Continue', exact: true }).click();
await page.waitForTimeout(3000);
});