blob: bcd803287153262ec240122f8c333749b96d2212 [file] [log] [blame]
<!DOCTYPE html>
<!--
Copyright 2011 WebDriver committers
Copyright 2011 Google Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<html>
<head>
<meta charset="utf-8">
<title>is_element_clickable_test.html</title>
<link rel="stylesheet" href="/filez/_main/third_party/js/qunit/qunit.css">
<script src="/filez/_main/third_party/js/qunit/qunit.js"></script>
<script src="/filez/_main/third_party/js/qunit/qunit_test_runner.js"></script>
<script type="text/javascript" src="test_bootstrap.js">
</script>
<script type="text/javascript">
goog.require('goog.math.Coordinate');
goog.require('webdriver.chrome');
</script>
<style>
/* Position test elements in a specific area to avoid QUnit UI interference */
#test-container {
position: fixed;
top: 0;
left: 0;
width: 200px;
height: 200px;
z-index: 9999;
}
/* Push QUnit UI down */
#qunit {
margin-top: 220px;
}
</style>
<script type="text/javascript">
function isClickable(elem, coord) {
var result = webdriver.chrome.isElementClickable(elem, coord);
console.log(result.message);
return result.clickable;
}
function getMidClientRect(elem) {
var rect = elem.getClientRects()[0];
var x = rect.left + (rect.right - rect.left) / 2;
var y = rect.top + (rect.bottom - rect.top) / 2;
return new goog.math.Coordinate(x, y);
}
QUnit.test('element is clickable', function(assert) {
var elem = document.getElementById('1');
assert.ok(isClickable(elem, getMidClientRect(elem)));
});
QUnit.test('not clickable at point', function(assert) {
var elem = document.getElementById('2');
var otherElem = document.getElementById('2b');
assert.notOk(isClickable(elem, getMidClientRect(otherElem)));
});
QUnit.test('element is clickable by descendant', function(assert) {
var elem = document.getElementById('3');
var child = document.getElementById('4');
assert.ok(isClickable(elem, getMidClientRect(child)));
});
QUnit.test('invalid coordinate is not clickable', function(assert) {
var elem = document.getElementById('1');
assert.notOk(isClickable(elem, new goog.math.Coordinate(-1, -1)));
});
</script>
</head>
<body>
<div id="test-container">
<div id='1' style='background-color:black'>1</div>
<div id='2' style='background-color:orange'>2</div>
<div id='2b' style='background-color:purple'>2b</div>
<div id='3' style='background-color:green'>
<div>3</div>
<div id='4' style='background-color:blue; position:relative; top:50px'>
div
</div>
</div>
</div>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
</body>
</html>