其实我有本地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>
如何更新页码。