feat: add data-testid attributes for form elements to improve testability

This commit is contained in:
张翔
2026-03-06 17:45:41 +08:00
parent f15830b0a6
commit 0222f20a19
3 changed files with 12 additions and 2 deletions
+7 -1
View File
@@ -155,6 +155,7 @@ export function ContactSection() {
message={toastMessage}
type={toastType}
onClose={() => setShowToast(false)}
data-testid="toast-notification"
/>
)}
<div className="absolute inset-0 pointer-events-none">
@@ -271,7 +272,7 @@ export function ContactSection() {
<h3 className="text-lg font-semibold text-[#1A1A2E] mb-6"></h3>
{isSubmitted ? (
<div className="text-center py-12 flex-1 flex items-center justify-center">
<div className="text-center py-12 flex-1 flex items-center justify-center" data-testid="success-message">
<div className="w-16 h-16 bg-[#C41E3A] rounded-full flex items-center justify-center mx-auto mb-4 animate-stamp-in">
<CheckCircle2 className="w-8 h-8 text-white" />
</div>
@@ -286,6 +287,7 @@ export function ContactSection() {
id="name"
placeholder="请输入您的姓名"
required
data-testid="name-input"
value={formData.name}
onChange={(e) => handleChange('name', e.target.value)}
onBlur={(e) => handleBlur('name', e.target.value)}
@@ -297,6 +299,7 @@ export function ContactSection() {
type="tel"
placeholder="请输入您的电话"
required
data-testid="phone-input"
value={formData.phone}
onChange={(e) => handleChange('phone', e.target.value)}
onBlur={(e) => handleBlur('phone', e.target.value)}
@@ -309,6 +312,7 @@ export function ContactSection() {
type="email"
placeholder="请输入您的邮箱"
required
data-testid="email-input"
value={formData.email}
onChange={(e) => handleChange('email', e.target.value)}
onBlur={(e) => handleBlur('email', e.target.value)}
@@ -320,6 +324,7 @@ export function ContactSection() {
placeholder="请输入您想咨询的内容"
rows={5}
required
data-testid="message-input"
value={formData.message}
onChange={(e) => handleChange('message', e.target.value)}
onBlur={(e) => handleBlur('message', e.target.value)}
@@ -330,6 +335,7 @@ export function ContactSection() {
size="lg"
className="w-full group mt-auto min-h-[52px] md:min-h-0"
disabled={isSubmitting}
data-testid="submit-button"
>
{isSubmitting ? (
<>