I'm encountering an issue where I am unable to write in the textarea using the sendkeys function in Selenium. The specific textarea I am trying to target has an ID of 'txtSkillsTaught-Value' and is located after a script tag that seems to be hiding its visibility.
I have attempted to use the following code:
driver.findElement(By.Id("txtSkillsTaught-Value")).sendkeys("text");
I also tried switching to the iframe above, but unfortunately, that did not work. I have included an image of the HTML code for reference.
Thank you, Ameyhttps://i.stack.imgur.com/y6ee4.png