I'm using Selenium with Chrome-driver and python3.6 to test a website. I have code snippet in the webpage as follow:
<div tabindex="-1" class="_3F6QL _2WovP">
<div class="_39LWd" style="visibility: visible;">Type a message</div>
<div class="_2S1VP copyable-text selectable-text" contenteditable="true" data-tab="1" dir="ltr" spellcheck="true">*******</div>
</div>
I want to replace the *******
with Hello World!
using Selenium in the webpage. How do I do that ?