How to Change a html line code with python
问题 I'd like to change this line: <button _ngcontent-c19="" class="blue-button-disabled" disabled="">CONTINUE </button> to this: <button _ngcontent-c19="" class="blue-button">CONTINUE </button> all that I could do is change the class name from blue-button-disabled to blue-button, but I couldn't remove disabled="" I used this code to achieve that result: driver.execute_script("arguments[0].setAttribute('class','blue-button')", element) 回答1: To remove the attribute disabled="" you can use the