Issue:
"I have an element on the page which can not be detected (slider) in DOM it is <input type='range' ....>"
Root Cause:
The computer vision model used for element detection does not recognize range slider inputs. This is not a Playwright MCP limitation but a limitation of the CV model.
Impact:
  • Cannot test pages with range slider inputs
  • Blocker for applications that use sliders for user input
  • Reproducible across different pages
Technical Details:
  • Element Type:
    <input type="range">
  • Detection Method: Computer Vision
  • Status: Acknowledged as CV model limitation
Potential Solutions:
  1. Train/update CV model to recognize slider elements
  2. Add fallback to DOM-based detection for known element types
  3. Provide manual element selector option for unsupported elements
Business Impact:
Blocks testing for e-commerce sites with price range filters, audio/video controls, and other slider-based interfaces.