From a662626dc42240415d106d4f0f42637e1e26b587 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=87=E6=A2=93=E9=94=9F?= <1640384813@qq.com> Date: Sun, 26 May 2024 20:07:38 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=8A=E4=BC=A0=E6=96=87=E4=BB=B6=E8=87=B3?= =?UTF-8?q?=20app/test?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 更新脚本 --- app/test/test_bug561_wanzikun.py | 72 ++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 app/test/test_bug561_wanzikun.py diff --git a/app/test/test_bug561_wanzikun.py b/app/test/test_bug561_wanzikun.py new file mode 100644 index 0000000..ee692a6 --- /dev/null +++ b/app/test/test_bug561_wanzikun.py @@ -0,0 +1,72 @@ +import time +import pytest +from selenium.webdriver.common.by import By +from selenium.webdriver.support.ui import WebDriverWait +from selenium.webdriver.support import expected_conditions as EC +from selenium.common.exceptions import NoSuchElementException, TimeoutException +from selenium.webdriver import ActionChains + +# 导入 app/test/conftest.py 中的 signup 函数 +from app.test.conftest import signup + +def select_text_in_article(driver): + elem = driver.find_element(By.CSS_SELECTOR, '#article') + + action = ActionChains(driver) + # 从左上角点击并按住 + action.move_to_element_with_offset(elem, 0, 0) + action.click_and_hold() + # 移动到右下角的某个位置(例如,右下角偏移100, 100) + action.move_by_offset(100, 100) + action.release() + action.perform() + +def verify_highlight(driver): + # 检查是否有高亮的元素 + highlighted_elements = driver.execute_script(""" + return Array.from(document.querySelectorAll('#article mark')).map(mark => mark.innerText); + """) + print("Highlighted elements:", highlighted_elements) + return len(highlighted_elements) > 0 + +def test_bug561(URL, driver): + try: + driver.maximize_window() + username, password = signup(URL, driver) + + time.sleep(3) # 等待页面加载完成 + + select_text_in_article(driver) + if verify_highlight(driver): + print("Text highlighted after selection") + else: + print("No text highlighted after selection") + + # 点击“下一页”按钮 + next_button = WebDriverWait(driver, 10).until(EC.element_to_be_clickable((By.ID, 'load_next_article'))) + next_button.click() + print("Clicked next article button.") + + # 等待“上一页”按钮加载完成 + WebDriverWait(driver, 10).until(EC.element_to_be_clickable((By.ID, 'load_pre_article'))) + print("Next article loaded.") + + # 点击“上一页”按钮 + prev_button = WebDriverWait(driver, 10).until(EC.element_to_be_clickable((By.ID, 'load_pre_article'))) + prev_button.click() + print("Clicked previous article button.") + + # 确认高亮是否保留 + if verify_highlight(driver): + print("Highlighted text preserved after switching articles") + else: + print("Highlighted text not preserved after switching articles") + + except Exception as e: + print(f"Error during test: {e}") + finally: + driver.quit() + print("Driver closed.") + +if __name__ == "__main__": + pytest.main([__file__])