我想在使用Selenium的頁面上找到一個元素。下面是一些例子內容:如何在Selenium中使用CSS選擇器找到TinyMCE編輯器的主體?
<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!!");
我沒有得到一個元素,雖然返回。
你爲什麼要把鑰匙發送到'
'元素?你不應該在文本字段中輸入嗎? –是的你是對的,我應該輸入到文本字段 –