Compare commits

..

No commits in common. "1bec0bd10784266a8eb675c1bfa3fdd6b4e27290" and "5dbdf60a2cf64dd9b9e4934c5ca7eb0e35c60c2d" have entirely different histories.

1 changed files with 5 additions and 0 deletions

View File

@ -37,8 +37,11 @@ def select(driver):
actions.move_to_element(text_element) actions.move_to_element(text_element)
# 模拟鼠标按下并拖动以选择文本 # 模拟鼠标按下并拖动以选择文本
# 假设我们想要选择从第10个字符开始的5个字符
actions.double_click() actions.double_click()
actions.perform() actions.perform()
#actions.move_by_offset(100, 0)
#actions.move_by_offset(10, 0)
actions.release() # 释放鼠标按钮 actions.release() # 释放鼠标按钮
def test_selected_second_word(driver, URL): def test_selected_second_word(driver, URL):
@ -54,8 +57,10 @@ def test_selected_second_word(driver, URL):
actions.move_to_element(text_element) actions.move_to_element(text_element)
# 模拟鼠标按下并拖动以选择文本 # 模拟鼠标按下并拖动以选择文本
# 假设我们想要选择从第10个字符开始的5个字符
actions.double_click() actions.double_click()
actions.perform() actions.perform()
#actions.move_by_offset(10, 0)
# 获取选中的文本 # 获取选中的文本
selected_words = driver.find_element(By.ID, 'selected-words').get_attribute('value') selected_words = driver.find_element(By.ID, 'selected-words').get_attribute('value')