I\'m using selenium to click to the web page I want, and then parse the web page using Beautiful Soup.
selenium
Beautiful Soup
Somebody has shown how to get inner
Using page object:
@FindBy(xpath = "xapth") private WebElement element; public String getInnnerHtml() { System.out.println(waitUntilElementToBeClickable(element, 10).getAttribute("innerHTML")); return waitUntilElementToBeClickable(element, 10).getAttribute("innerHTML") }