I use WebDriver and ChromeDriver. How i can fetch text from this speech bubble:
[]
And code this speech bubble from website:
Thank you for your help!
Use xpath to get it
//img[@data-id='c085ede491334747f26718fc2e8009e3')]
You can use this code and try:
driver.findElement(By.xpath("//img[@data-id='c085ede491334747f26718fc2e8009e3')]")).getAttribute("data-content");