We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
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).
jquery.easing
jQuery
jQuery.easing.def
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:
Click
undefined
I.Open(url).Click("#the-button").Wait(100000);
I guess it's somewhat related to #132.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Here's the HTML:
jquery.easing
puts some extra stuff intojQuery
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):
But if I do any operation, for example
Click
, it becomesundefined
:I guess it's somewhat related to #132.
The text was updated successfully, but these errors were encountered: