我正在尝试使用 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!!");
我没有得到返回的元素。