feat: 添加管理后台页面和功能,优化测试和性能配置

refactor: 重构页面导航和滚动逻辑,提升用户体验

test: 更新测试配置和用例,增加覆盖率和稳定性

perf: 优化性能指标和阈值,适应开发环境需求

ci: 添加Lighthouse CI工作流,集成性能测试

docs: 更新API文档和健康检查端点

fix: 修复登录页面和表单提交问题

style: 调整响应式布局和可访问性改进

chore: 更新依赖项和脚本配置
This commit is contained in:
张翔
2026-03-24 10:11:30 +08:00
parent 08978d38c8
commit f5dec95a83
85 changed files with 12331 additions and 1408 deletions
+44 -40
View File
@@ -24,42 +24,42 @@ class HomePage(BasePage):
self.selectors = {
# 导航相关
"header": "header",
"logo": "header img[alt*='logo'], header a[href='#home']",
"logo": "header img[alt*='logo'], header a[href='/']",
"navigation": "header nav, nav",
"nav_links": "nav a, header a[href^='#']",
"nav_links": "nav a, header nav a",
# Hero区域
"hero_section": "#home",
"hero_title": "#home h1, .hero-section h1",
"hero_subtitle": "#home p, .hero-section p",
"hero_cta": "#home a[href*='#contact'], .hero-section a.cta",
# Hero区域 - 使用实际的 section ID
"hero_section": "#home, section:first-of-type",
"hero_title": "h1",
"hero_subtitle": "#home p, section:first-of-type p",
"hero_cta": "a[href*='/contact'], a:has-text('立即咨询')",
# 关于我们区域
"about_section": "#about, .about-section",
"about_title": "#about h2, .about-section h2",
"about_content": "#about .content, .about-section .content",
# 关于我们区域 - 使用文本匹配
"about_section": "#about, section:has(h2:has-text('关于'))",
"about_title": "#about h2, h2:has-text('关于')",
"about_content": "#about .content",
# 核心业务区域
"services_section": "#services, .services-section",
"services_title": "#services h2, .services-section h2",
"services_cards": "#services .card, .services-section .card, #services .service-card",
"services_section": "#services, section:has(h2:has-text('业务')), section:has(h2:has-text('服务'))",
"services_title": "#services h2, h2:has-text('业务'), h2:has-text('服务')",
"services_cards": "#services .card, .service-card",
# 产品服务区域
"products_section": "#products, .products-section",
"products_title": "#products h2, .products-section h2",
"products_grid": "#products .grid, .products-section .grid, #products .product-grid",
"product_cards": "#products .card, .products-section .card",
"products_section": "#products, section:has(h2:has-text('产品'))",
"products_title": "#products h2, h2:has-text('产品')",
"products_grid": "#products .grid",
"product_cards": "#products .card, .product-card",
# 新闻动态区域
"news_section": "#news, .news-section",
"news_title": "#news h2, .news-section h2",
"news_list": "#news .list, .news-section .news-list",
"news_items": "#news .news-item, .news-section .news-item",
"news_section": "#news, section:has(h2:has-text('新闻')), section:has(h2:has-text('动态'))",
"news_title": "#news h2, h2:has-text('新闻'), h2:has-text('动态')",
"news_list": "#news .list, .news-list",
"news_items": "#news .news-item, .news-item",
# 联系我们区域
"contact_section": "#contact, .contact-section",
"contact_title": "#contact h2, .contact-section h2",
"contact_form": "#contact form, .contact-section form",
# 联系我们区域 - 使用 /contact 页面
"contact_section": "#contact, section:has(h2:has-text('联系')), section:has(h2:has-text('联系方式'))",
"contact_title": "#contact h2, h2:has-text('联系'), h2:has-text('联系方式')",
"contact_form": "form",
# 页脚
"footer": "footer",
@@ -98,10 +98,10 @@ class HomePage(BasePage):
if self._is_visible("logo"):
self.logger.info("Logo存在")
# 检查导航链接 - 实际有6个导航项
# 检查导航链接 - 桌面端和移动端各有导航项
nav_links = self._find_all("nav_links")
expected_count = 6 # 首页、关于我们、核心业务、产品服务、新闻动态、联系我们
self.assert_element_count("nav a, nav a[href^='#']", expected_count)
min_expected = 6 # 至少6个导航项
assert len(nav_links) >= min_expected, f"导航链接数量不足: 预期至少{min_expected}个,实际{len(nav_links)}"
self.logger.info(f"✅ 页头验证通过,发现 {len(nav_links)} 个导航链接")
return self
@@ -230,21 +230,25 @@ class HomePage(BasePage):
self.logger.log_action(f"滚动到{section}区域")
section_selectors = {
"home": "#home",
"about": "#about",
"services": "#services",
"products": "#products",
"news": "#news",
"contact": "#contact"
"home": "#home, section:first-of-type",
"about": "#about, section:has(h2:has-text('关于'))",
"services": "#services, section:has(h2:has-text('业务')), section:has(h2:has-text('服务'))",
"products": "#products, section:has(h2:has-text('产品'))",
"news": "#news, section:has(h2:has-text('新闻')), section:has(h2:has-text('动态'))",
"contact": "#contact, section:has(h2:has-text('联系')), section:has(h2:has-text('联系方式'))"
}
selector = section_selectors.get(section, f"#{section}")
if self._is_visible(selector):
self.scroll_to_element(selector)
self.logger.info(f"已滚动到{section}区域")
else:
self.logger.warning(f"未找{section}区域")
try:
element = self.page.locator(selector).first
if element.count() > 0:
element.scroll_into_view_if_needed()
self.logger.info(f"已滚动{section}区域")
else:
self.logger.warning(f"未找到{section}区域")
except Exception as e:
self.logger.warning(f"滚动到{section}区域失败: {e}")
return self