Failing video test in Product landing page

Hi Campers,

I’m afraid I’m at a loss here on my Product language page project.
Test 6 states
6. I can watch an embedded product video with id=“video”.

Below is my code for the video. The video plays as it should, but the test still fails.

Any thoughts much appreciated. Thx.

  <div class="experience-container">
    <h1 class="experience-title-text">Experience</h1>        
        <iframe id="video" class="video" src="https://www.youtube.com/embed/f9A03eiMfvU">
    </iframe>
    </div>
1 Like

it’s weird this work. remove space or newline between iframe elements
<iframe id="video" src="https://www.youtube.com/embed/f9A03eiMfvU"></iframe>

4 Likes

Thank you very much. Now passes fine.