Skip to content

Commit f1193db

Browse files
committed
update: test
1 parent f37ed93 commit f1193db

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

playwright.web.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export default defineConfig({
2727
name: 'chromium',
2828
use: {
2929
...devices['Desktop Chrome'],
30-
headless: false,
30+
headless: true,
3131
viewport: { width: 1440, height: 900 } // Desktop Chrome viewport
3232
},
3333
},

test/interview-practice/July/alert.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { test, expect } from '@playwright/test';
22

3-
test('Handle JS alert on blogspot', async ({ page }) => {
3+
test.skip('Handle JS alert on blogspot', async ({ page }) => {
44
await page.goto("https://testautomationpractice.blogspot.com/");
55
await expect(page).toHaveTitle('Automation Testing Practice');
66

test/interview-practice/July/keyboard.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ test('Keyboard', async({page})=>{
99
await page.keyboard.up('Shift');
1010
});
1111

12-
test('Visual', async({page})=>{
12+
test.skip('Visual', async({page})=>{
1313
await page.goto('https://testautomationpractice.blogspot.com/')
1414
///const input = page.locator('#name');
1515
//await expect(input).toHaveScreenshot('input.png');

test/interview-practice/July/newTab.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { expect, test } from "@playwright/test";
22

3-
test.only("New Tab", async ({ browser }) => {
3+
test("New Tab", async ({ browser }) => {
44
const context = await browser.newContext();
55
const page = await context.newPage();
66

test/interview-practice/July/tablescroll.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { test, expect } from "@playwright/test";
22
import * as fs from "fs";
33

4-
test("table scroll", async ({ page }) => {
4+
test.skip("table scroll", async ({ page }) => {
55
await page.goto("https://infinite-scroll.com/demo/full-page/");
66

77
let maxscrolls: number = 100;

0 commit comments

Comments
 (0)