In the target webpage, there is an angularjs input element:
<input type="text" class="form-control ng-pristine ng-valid ng-valid-maxlength ng-touched" placeholder="Role name" ng-model="selectedRole.roleName" maxlength="50">
enter image description here
And i can locate the element using selenium(python) by using (By.CSS_SELECTOR,'input[ng-model="selectedRole.roleName"]')
, but cannot set its value, can anybody help on this, thanks in advance!
WebDriverWait
..?? – Saurabh Gaur Jul 30 at 6:53