I am using Selenium to click a button but I am getting a ElementNotInteractableException
.
Here is the Selenium Python snipit:
b.driver.find_element(By.CLASS_NAME,"button-prm-light").click()
Here is the html:
<button class="button-prm-light button-height-40 button-padding-fill button-rounded"
ng-hide="vm.isBlockedOrBlockedByMe() || vm.isPrivateAndHidden() || vm.isOwnProfile"
talk-to="8d056f47-c680-e711-80c2-0003ff4668ed" talk-to-type="user"> <i class="icon-
speech-bubbles"></i> <span>Chat</span> </button>
Any ideas on how to do this?