reading text from textarea in webdriver

前端 未结 3 1891
别那么骄傲
别那么骄傲 2021-02-13 18:12

I am trying to read text from textarea when writing a webdriver test in Java. For some reason I am getting null back when I use .getAttribute():

            


        
3条回答
  •  时光取名叫无心
    2021-02-13 18:55

    I got this working. Here is the solution-

        WebElement text = wd.findElement(By.id("edit-pi-analytics-tms-id"));
        String textagain = text.getAttribute("value");
    

    I was using the actual value in the textarea in the previous code example i posted which was kinda silly. Thanks guys for your help

提交回复
热议问题