Slenium 2 Webdriver Highlight Element

2020-11-15 02:22

阅读:638

标签:com   blog   style   class   div   code   log   tar   c   t   string   

+ View Code?
1
2
3
4
5
6
7
8
9
10
11
12
13
def highlight_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)
    time.sleep(
1.1)

  现成代码,直接使用。  也可用于robot。

Slenium 2 Webdriver Highlight Element,搜素材,soscw.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


评论


亲,登录后才可以留言!