You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I just forked funcunit. but find a problem. All funcunit tests can pass in latest chrome. But when I try to automate them using phantomjs. It failed at test "Drag To" (syn_test.js). I spent hours on this issue but cannot figure out what is the cause.
I'm using grunt and have tried testee andgrunt-contrib-qunit, both return same errors. It seems the dropover event listener never fired. Please help me find the causes of this problem. Thank you!
The text was updated successfully, but these errors were encountered:
Hi, I just forked funcunit. but find a problem. All funcunit tests can pass in latest chrome. But when I try to automate them using phantomjs. It failed at test "Drag To" (syn_test.js). I spent hours on this issue but cannot figure out what is the cause.
I'm using grunt and have tried testee andgrunt-contrib-qunit, both return same errors. It seems the dropover event listener never fired. Please help me find the causes of this problem. Thank you!
—
Reply to this email directly or view it on GitHub.
test("Drag To",function(){F.open("//test/drag/drag.html",function(){console.log('here is the drag to');});F('#drag').visible(function(){console.log('Origin Position',F('#drag')[0].offsetTop);// ==> 118 in chrome, 127 in phantomjs},'We see the dragger!');F("#drag").drag("#drop",function(){console.log('#drag moved',this[0].offsetTop);// ==> 150 in chrome, 127 in phantomjsconsole.log(F('#clicker').size());});});
So the drag div does not moved in phantomjs, is this info helpful?
Hi, I just forked funcunit. but find a problem. All funcunit tests can pass in latest chrome. But when I try to automate them using phantomjs. It failed at test
"Drag To" (syn_test.js)
. I spent hours on this issue but cannot figure out what is the cause.I'm using grunt and have tried
testee
andgrunt-contrib-qunit
, both return same errors. It seems thedropover
event listener never fired. Please help me find the causes of this problem. Thank you!The text was updated successfully, but these errors were encountered: