FluentAutomation icon indicating copy to clipboard operation
FluentAutomation copied to clipboard

jQuery overwriting breaks jQuery plugin

Open vorou opened this issue 11 years ago • 0 comments

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.

vorou avatar Nov 16 '14 16:11 vorou