私は要素にsendkeysを使用しようとしていますが、それは"selenium.common.exceptions.ElementNotInteractableException: Message: Element is not visible"
と言っています。Python + Selenium Sendkeys on AngularJS
HTMLコードは次のとおりです。
//*[@id="email"] | //input[@ng-model = 'ad.Email.value']
はまた、JavaScriptを使用してみました:
<input class="form-control inspectletIgnore ng-pristine ng-untouched ng-valid-email-not-match ng-empty ng-valid-email ng-invalid ng-invalid-required" id="email" ng-disabled="ad.isEditMode" required="" name="Email" ng-model="ad.Email.value" type="email">
私は別のXPathで要素を見つけるためにしようとした彼らの
document.getElementById('email').value='[email protected]'
なしワーキング。どのようにこれを処理するためのアドバイス?それは大きな頭痛です...
を使用する方がよいかもしれませんか? – Andersson
私はPythonを使用しています。 – Unchangeable
'print(len(driver.find_elements_by_id(" email ")))'を試してください。それは '1'ですか? – Andersson