selenium-webdriver
Version:
The official WebDriver JavaScript bindings from the Selenium project
20 lines (19 loc) • 351 B
HTML
<html>
<head>
<title>Page with overflow: auto</title>
<style type="text/css">
html, body {
width: 100%;
height: 100%;
overflow: auto;
}
</style>
</head>
<body>
<div style="height: 5000px;">Placeholder</div>
<div>
<a id="link" href="target_page.html">Click me!</a>
</div>
</body>
</html>