Files
webdriver/code/sample_page/index.html
2023-08-01 13:11:28 +02:00

15 lines
355 B
HTML

<!doctype>
<html>
<head>
<meta charste="utf-8">
<title>I will be replaced</title>
</head>
<body>
<h1>I will be replaced</h1>
<script>
var ua = window.navigator.userAgent;
document.getElementsByTagName('title')[0].innerHTML = ua;
document.getElementsByTagName('h1')[0].innerHTML = ua;
</script>
</body>
</html>