标签:com blog style class div code log tar c t string
| 1 2 3 4 5 6 7 8 9 10 11 12 13 | defhighlight_element(self, locator):    """docstring for highlight_element"""    self._info("start")    element =self._element_find(locator, True, True)    parent =element._parent    parent.execute_script("""        element = arguments[0];        original_style = element.getAttribute(‘style‘);        element.setAttribute(‘style‘, original_style + "; background: yellow; border: 2px solid red;");        setTimeout(function(){            element.setAttribute(‘style‘, original_style);    }, 1000);    """, element)<br>    time.sleep(1.1) | 
现成代码,直接使用。 也可用于robot。
Slenium 2 Webdriver Highlight Element,码迷,mamicode.com
Slenium 2 Webdriver Highlight Element
标签:com blog style class div code log tar c t string
原文地址:http://www.cnblogs.com/WandyYing/p/3695824.html