2

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 Answer 1

2

To remove the attribute disabled="" you can use the following line of code:

driver.execute_script("arguments[0].removeAttribute('disabled')", element)

Reference

You can find a couple of relevant detailed discussions in:

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.