ActionChains方法

 1 click(on_element=None) ——單擊鼠標左鍵  2 click_and_hold(on_element=None) ——點擊鼠標左鍵,不鬆開  3 context_click(on_element=None) ——點擊鼠標右鍵  4 double_click(on_element=None) ——雙擊鼠標左鍵  5 drag_and_drop(source, target) ——拖拽到某個元素而後鬆開  6 drag_and_drop_by_offset(source, xoffset, yoffset) ——拖拽到某個座標而後鬆開  7 key_down(value, element=None) ——按下某個鍵盤上的鍵  8 key_up(value, element=None) ——鬆開某個鍵  9 move_by_offset(xoffset, yoffset) ——鼠標從當前位置移動到某個座標 10 move_to_element(to_element) ——鼠標移動到某個元素 11 move_to_element_with_offset(to_element, xoffset, yoffset) ——移動到距某個元素(左上角座標)多少距離的位置 12 perform() ——執行鏈中的全部動做 13 release(on_element=None) ——在某個元素位置鬆開鼠標左鍵 14 send_keys(*keys_to_send) ——發送某個鍵到當前焦點的元素 15 send_keys_to_element(element, *keys_to_send) ——發送某個鍵到指定元素
相關文章
相關標籤/搜索