我正在为 Label 尝试以下 xpath,但我无法找到该元素。
driver.findElement(By.xpath("//div[label[contains(text(),'Patient's Name']]")).isEnabled();
XPath:.//*[@id='update_patient_profile']/div/div[1]/label
---取自 FirePath。
以下是该字段的 HTML 源代码。
<form id="update_patient_profile" action="/subscriber/" method="post" name="update_patient_profile">
<div class="subscriberAddPatient">
<div class="formData nameInputs">
<label for="first_name">Patient's Name</label>
<input id="first_name" class="left nameRule" type="text" onblur="resetTxtAdd($(this))" onfocus="emptyFieldAdd($(this))" onclick="emptyFieldAdd($(this))" name="first_name" value="First Name" maxlength="24"/>
谁能建议我正确的 XPath 标签。