I'm trying to comment in Instagram post by using selenium (java). Instagram Comment box in textArea
, How can I add comment?
I did this...
WebElement cmdbox = driver.findElement(By.tagName("textarea"));
cmdbox.clear();
Thread.sleep(2000);
cmdbox.sendKeys("sample text");
Thread.sleep(3000);
I got this error