I've been working on a web UI automation task with Selenium
, Javascript
and SeLion
. I would like to take a screenshot of some equivalent scenario as Google homepage below:
In which the "Search by voice" should be present when mouse moves in that microphone icon (neither Click or Hover). I have search bunch of solutions, unfortunately non of them works as expected.
I'm basically dealing with something like this:
<div id="div_id">
<button type="button" class="button_class" disabled="" data-marko=" .
{"onclick":"handleClick s0-2-0-27-0
false","onkeydown":"handleKeydown s0-2-0-27-0 false"}"
title="This message shows by mouseenter event" aria-label="This
message shows by mouseenter event">
<span class="span_class"></span>
</button>
</div>
When mouse enters that button, "This message shows by mouseenter event
" will be present. The page is likely written by Marko-js. Couldn't really handle it with plain Javascript, I tried.
Any idea?
Thanks in advance!