On a particular website, there is:
<p id="tempid" value="Manual Effect">testing the test</p>
String value = (String)((JavascriptExecutor) this).executeScript("return window.document.getElementById('tempid').value");
System.out.println("value is : " + value);
Currently, I am receiving a null value or nothing.
I am looking to obtain the text "testing the test" as my desired output.