How to click on play icon in a media player object embeded in web
browser.
Hello,
2009/12/22 Suman Y. [email protected]:
How to click on play icon in a media player object embeded in web
browser.
Try to use firebug within firefox to see what characteristic of your
button you could use to click on it.
Cheers,
Fleck Jean-Julien wrote:
Hello,
2009/12/22 Suman Y. [email protected]:
How to click on play icon in a media player object embeded in web
browser.Try to use firebug within firefox to see what characteristic of your
button you could use to click on it.Cheers,
Hi Jean
I have take the screen shot of the media player object details using the
IE dev connect and sending it for your information…help me in this
regard
regards
suman
Hello Suman
I have take the screen shot of the media player object details using the
IE dev connect and sending it for your information…help me in this
regard
I would look at the fields to see if there is something
interesting in there (but sorry, I’ve no idea if there will be
anything…)
Cheers,
Fleck Jean-Julien wrote:
Hello Suman
I have take the screen shot of the media player object details using the
IE dev connect and sending it for your information…help me in this
regardI would look at the fields to see if there is something
interesting in there (but sorry, I’ve no idea if there will be
anything…)Cheers,
Hi Jean
I am sending you the one of the fields screen shot for your
information using IE Dev connect…help me in this regard.
Regards
Suman
Hello Suman,
I am sending you the one of the fields screen shot for your
information using IE Dev connect…help me in this regard.
If watir_object is the watir object you are using, something like
watir_object.button(:name,“ClickToPlay”).click
should do the trick. Note however that it could be something else than
‘button’ (in my script, I have only used ‘button’ or ‘link’ to click
on it) so look in the documentation to see what else respond to the
‘click’ method.
Cheers,