selenium-webdriver-runner
Version:
Selenium webdriverjs Runner with example
36 lines (31 loc) • 905 B
HTML
<html>
<head>
<meta charset="utf-8">
<title>Todo App</title>
</head>
<body>
<div class="todoapp-container">
<section class="new-task-section">
<h3 class="section-header">ADD ITEM</h3>
<div class="section-body">
<input class="task-input longest" type="text" />
<button class="task-button to-add correct">Add</button>
</div>
</section>
<section class="todo-task-section">
<h3 class="section-header">TODO</h3>
<div class="section-body">
<ul class="todo-list"></ul>
</div>
</section>
<section class="done-task-section">
<h3 class="section-header">DONE</h3>
<div class="section-body">
<ul class="done-list"></ul>
</div>
</section>
</div>
<script type="text/javascript" src="dist/todo.js"></script>
</body>
</html>