FluentAutomation
FluentAutomation copied to clipboard
jQuery overwriting breaks jQuery plugin
Here's the HTML:
<html>
<head>
<script src="jquery-1.11.1.js"></script>
<script src="jquery.easing.1.3.js"></script>
</head>
<body>
<p>hello!</p>
</body>
</html>
jquery.easing puts some extra stuff into jQuery object. jQuery.easing.def is among them (it's a string).
If I just open the page, the value is there (I check it through browser console):
I.Open(url).Wait(100000);
But if I do any operation, for example Click, it becomes undefined:
I.Open(url).Click("#the-button").Wait(100000);
I guess it's somewhat related to https://github.com/stirno/FluentAutomation/issues/132.