Selenium を使用してページ上の要素を見つけようとしています。コンテンツの例を次に示します。
<body id="tinymce" class="mceContentBody " contenteditable="true" dir="ltr" style="overflow: auto;">
これが私がそれを選択しようとしている方法です:
driver.findElement(By.cssSelector("body#tinymce")).sendKeys("Hello, everyone!! Don't worry it is a test letter to check connection!!");
ただし、要素が返されません。