Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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)
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
97 views
Welcome To Ask or Share your Answers For Others

1 Answer

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:


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...