Skip to content

Instantly share code, notes, and snippets.

@mohamedsalehamin
mohamedsalehamin / prompt.md
Created September 3, 2025 10:25 — forked from amElnagdy/prompt.md
Visual QA Assistance

I need you to perform a comprehensive visual and functional quality assurance check of this website using Playwright MCP tools. URL: INSERT_URL

🚨 CRITICAL RULE: ALL TESTING MUST BE DONE ON THE PROVIDED URL ONLY 🚨

Navigation Protocol:

  • If any click navigates you to a different page/URL, immediately navigate BACK to the provided URL
  • Continue all testing from the original URL
  • Do NOT test functionality on external pages - only test that links work from the main page
  • Your goal is to test the provided URL thoroughly, not to explore the entire website
@mohamedsalehamin
mohamedsalehamin / vc-rtl-fix.js
Created August 23, 2017 22:40 — forked from aliaghdam/visual-composer-rtl-fix.js
WordPress Visual Composer full width row ( stretche row ) fix for RTL
jQuery(document).ready(function() {
function bs_fix_vc_full_width_row(){
var $elements = jQuery('[data-vc-full-width="true"]');
jQuery.each($elements, function () {
var $el = jQuery(this);
$el.css('right', $el.css('left')).css('left', '');
});
}