Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have some videos and i want to test their with automation Can you tell How does selenium work with video? How does he recognize it. Thanks!

share|improve this question
Hi there, it might be better to ask these kind of questions on specific part of the StackExchange - sqa.stackexchange.com – user532231 Jun 2 '11 at 12:55
1  
Test their … what … with automation? And what video? Flash? <video>? – Quentin Jun 2 '11 at 12:57
I need to test if are videos on the page. – ktarik Jun 2 '11 at 13:47

2 Answers

Selenium can test if the correct elements are in the DOM for video. You won't really be able to interact with the video with Selenium. You many need to record the network traffic to check the relevant items are being downloaded or if they 404.

share|improve this answer
Thanks guys for answers. Now i have some updates. I use FlashSelenium but this <object> doesn't have id. Can you advise my smth? – ktarik Jun 23 '11 at 11:19

I use WebdriverJS to click on youtube video.

I have tested the methods below and found them to work.

.click("#videoid")
.click("iframe:hover")
.click(".classname")

This of course is a little surprising as Selenium is not supposed to work with flash...

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.