我怎样才能得到那个价值?
How i can get that value?
我想获取 value="" 中的值,即 448CA236139FF2A5D7C40CE327779F49 并将其放入变量中以在其他 class
中使用
<input type="hidden" name="Idsession" value="448CA236139FF2A5D7C40CE327779F49" xpath="1" style="">
我试过了
WebElement ids = driver.findElement(By.name("Idsession"));
String cookie=ids.getAttribute("innerText");
没用
尝试String cookie = driver.findElement(By.name("Idsession")).getAttribute("value");
。
您正在尝试检索属性 "value","innerText" 与这种情况无关。
我想获取 value="" 中的值,即 448CA236139FF2A5D7C40CE327779F49 并将其放入变量中以在其他 class
中使用<input type="hidden" name="Idsession" value="448CA236139FF2A5D7C40CE327779F49" xpath="1" style="">
我试过了
WebElement ids = driver.findElement(By.name("Idsession"));
String cookie=ids.getAttribute("innerText");
没用
尝试String cookie = driver.findElement(By.name("Idsession")).getAttribute("value");
。
您正在尝试检索属性 "value","innerText" 与这种情况无关。