首页 > 解决方案 > 卡在 find_element_by_xpath

问题描述

我在 Python 3 中使用 selenium 中的这个命令

driver = webdriver.Chrome
NamaPerekam = driver.find_element_by_xpath('//*[@id="namaPerekam"]')

我的数据包含

<input type="text" class="form-control ng-pristine ng-untouched ng-valid" id="namaPerekam" focus="selDokSumber" ng-disabled="true" ng-model="viewMonitoringController.penugasan.namaPerekam" focus-on="true" disabled="disabled">

将鼠标悬停在数据上时,我的鼠标光标没有任何迹象

selenium 上的 find_element_by_xpath 函数没有显示结果

有什么帮助吗?

标签: pythoncssangularjsselenium

解决方案


推荐阅读