Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以我使用 Selenium for java 并在连接到网站后尝试从网站获取一些文本。我知道硒有
driver.getPageSource();
但是如果有变量,它将返回变量而不是实际数据,例如,如果我想要的实际文本是
13-11-28
它实际上在源代码中是
/月
或类似的东西。如何使用 selenium 或其他库获取实际文本。
您可以找到该元素并在其上执行“getText”。
例子
driver.findElement(By.cssSelector(".month").getText())