My working environment is Python, Chrome, Selenium
I want to edit shadow-root (user-agent)'s value
<div class="divclass">
<input type="tel" id="mytel" name="telamount" data-wheel-step="100" class="oneclass" value="1">
#shadow-root (user-agent)
<div>1</div>
</input>
</div>
If I'm using js's .getAttribute()
, with input's id "mytel" that can attach the value 1, but it isn't attach shadow-root.
I want change <div>
's 1
I've been looking hard, but I don't even know if this is possible.