<iframe>在切换到之前,您无法浏览。您的xPath
//iframe[@name='editor_body']//body[@contenteditable='true']
将不会起作用,因为
<body>代码位于当前上下文之外的iframe中。您需要先切换到它:
driver.switch_to.frame('editor_body')...
<iframe>在切换到之前,您无法浏览。您的xPath
//iframe[@name='editor_body']//body[@contenteditable='true']
将不会起作用,因为
<body>代码位于当前上下文之外的iframe中。您需要先切换到它:
driver.switch_to.frame('editor_body')...