undetected-browser
Version:
Puppeteer implementation with more anti-detection methods for interacting with websites
31 lines (29 loc) • 694 B
HTML
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Iframe 2</title>
<style>
div {
margin: 10px;
padding: 10px;
border: 1px solid #ccc;
}
button {
padding: 5px 10px;
}
</style>
</head>
<body>
<div id="iframe2Container">
This is Iframe Level 2
<button id="button4" type="button">Click Me: Iframe Level 2</button>
</div>
<script>
document.querySelector("#button4").addEventListener("click", () => {
alert("Button clicked: Iframe Level 2");
});
</script>
</body>
</html>