我想知道可以从硒ChromeDriver获取json数据还是xml数据?

{
    "name": "Rajeev",
    "age": 25,
    "address": {
        "city": "Bangalore",
        "state": "Karnataka",
        "country": "India"
    }
}

最佳答案

这简单
做这个

webDriver.getPageSource()


getPageSource()方法用于获取Web视图中的所有内容,您可以看到,只需使用正则表达式删除必要的标签即可

Introduction to driver.getPageSource()

10-08 18:56