2024-05-12 13:39:14 +08:00
|
|
|
import time
|
|
|
|
import pytest
|
|
|
|
from selenium import webdriver
|
|
|
|
from selenium.webdriver import ActionChains
|
|
|
|
from selenium.webdriver.common.by import By
|
|
|
|
from selenium.webdriver.common.alert import Alert
|
|
|
|
from selenium.webdriver.support import expected_conditions as EC
|
|
|
|
from selenium.webdriver.support.wait import WebDriverWait
|
2024-05-18 09:23:36 +08:00
|
|
|
from helper import signup
|
2024-05-12 13:39:14 +08:00
|
|
|
|
2024-05-19 21:21:25 +08:00
|
|
|
def test_bug551(driver, URL):
|
2024-05-12 13:39:14 +08:00
|
|
|
driver.maximize_window()
|
2024-05-19 21:21:25 +08:00
|
|
|
driver.get(URL)
|
2024-05-12 13:39:14 +08:00
|
|
|
|
2024-05-19 21:21:25 +08:00
|
|
|
username, password = signup(URL, driver)
|
2024-05-12 13:39:14 +08:00
|
|
|
|
|
|
|
article = driver.find_element(By.ID, 'article')
|
|
|
|
actions = ActionChains(driver)
|
|
|
|
|
|
|
|
actions.move_to_element(article)
|
|
|
|
actions.click_and_hold()
|
|
|
|
actions.move_by_offset(450, 200)
|
|
|
|
actions.release()
|
|
|
|
actions.perform()
|
2024-05-19 22:51:32 +08:00
|
|
|
|
|
|
|
# 获取选中部分的单词所应用的 CSS 样式
|
|
|
|
highlighted_word_font_weight = article.value_of_css_property("font-weight")
|
|
|
|
|
|
|
|
# 验证高亮显示的 CSS 样式是否符合预期
|
|
|
|
expected_highlighted_word_font_weight = "300"
|
|
|
|
assert highlighted_word_font_weight == expected_highlighted_word_font_weight, f"选中部分的单词的字体样式错误"
|
|
|
|
|
2024-05-18 09:18:22 +08:00
|
|
|
time.sleep(5)
|