I would like to get the text inside this specific element here
<div class="comment-text-inner display-inline" data-clipboard-text="free apex coins">free apex coins</div>
How do I get the text from "data-clipboard-text" using python and selenium?
I've tried
comment = driver.find_element_by_xpath("""/html/body/div[3]/div/div[2]/div[2]/div/div/div/div[4]/div[2]/div/div[1]""").text
With no luck