如何通过selenium在shadow DOM中编辑pdf文件的页码

时间:2018-02-10 12:52:49

标签: java google-chrome selenium pdf shadow-dom

其实我有本地pdf文件,我想在Chrome浏览器中打开它,并以查看的pdf编辑页码。我已经在浏览器中打开它但我找不到该元素。

这是我的chromeDriverCode。

System.setProperty("webdriver.chrome.driver", "path of chromedriver");
WebDriver driver = (WebDriver) new ChromeDriver();
driver.get("file://"+excelFileRow.getPathFile());
driver.manage().timeouts().implicitlyWait(7, TimeUnit.SECONDS);
System.out.println(driver.getPageSource());

这一切都是输出

<html xmlns="http://www.w3.org/1999/xhtml"><body style="background-color: rgb(38,38,38); height: 100%; width: 100%; overflow: hidden; margin: 0"><embed width="100%" height="100%" name="plugin" id="plugin" src="file:///home/shibo/Downloads/project2.pdf" type="application/pdf" internalinstanceid="4" /></body></html>
这张照片显示了我在检查中看到的内容。

enter image description here

如何更新页码。

0 个答案:

没有答案