-
asked by besupernicoks • 1 year ago
Discount 2016 Latest Cheap Air Jordan 7GS Barcelona Days For Sale Womens Nike Basketball Sneakers.Womens Air Jordan VII Retro Dark Grey/Turquoise Blue-Wolf Grey-Total Orange 304775-016 April 25, 2015.If you were born after 1992, you may be asking why the Cheap Air Jordan 7 Retro For SaleThe answer is as simple as you’d imagine: it was the sneaker Michael Jordan wore (along with the Air Jordan 6) on the Dream Team during its march to gold in Barcelona that year. Barcelona is actually the inspiration behind this particular pair too.The colors are meant to invoke the scene of the Barcelona cityscape during the day, the counter pair to the “Barcelona Nights” pair recently released.The newest Air Jordan 7 Retro takes inspiration from the culturally rich city of Barcelona, blending an array of bright colors on a Wolf Grey and Dark Grey base.
-
asked by tdfairbrother • last reply by CoolEsh • 5 years ago
I faced with the same issue today. No answers for the year? Noone else faced this issue? -
asked by lagrenouille • last reply by lagrenouille • 5 years ago
Ok, actually it was me beeing stupid, to fix this:- S.open('myPage');
- S("h2").visible(1000,function(el) {
- equal(el.size(),2,"2 headers");
- });
-
reported by gianlucauk • 5 years ago
Hello, I am experiencing a problem and I would like to understand more, as I can't find information about it and I am starting to think I am missing something obvious.I am using FuncUnit 3.2.2 on Ubuntu 12.04 with Selenium and Chrome. If I write a test that passes, everything is fine. If I have a failure, I get an exception:Exception in thread "Thread-6" org.mozilla.javascript.WrappedException: Wrapped com.thoughtworks.selenium.SeleniumException: Connection refused (funcunit/selenium/selenium.js#138)I thought it could be my test, so I took the "autosuggest" sample included in the FuncUnit tarball and added this line to it:ok(false, "The test failed")I got the same exception again. The bottom line is: if I put an ok(false, "something") somewhere, I get this exception. At the moment, it is not causing real problems apart from the exception appearing on the output, but I would like to understand if this is something known and unavoidable and if there are risks connected to it.Thank you -
started by rudy_forrest_whitaker • last reply by daff • 5 years ago
I can confirm that Selenium doesn't work with Firefox 14 and up. This seems to be a Selenium problem and hasn't been fixed in the latest version yet.Chrome should work though, you might want to try running the tests from a webserver though because of Chromes crazy restrictive local file acces policy. -
started by jakeba • 5 years ago
I would like to know who out there tests Magento E-commerce sites and if you are using FuncUnit. Currently, we are using PHPUnit and Selenium to write some scripts. Does anyone have suggestions for using FuncUnit in combination with these tools? Are there any existing projects out there that addresses testing javascript on Magento? -
asked by jakeba • 5 years ago
I work on Magento(php application) e-commerce sites and am currently writing all my tests with PHPUnit and Selenium. We often use AJAX on our pages. What I would like to do is add a some statements to my scripts that go through the site and check to see if any js errors are thrown. I was curious if anyone has accomplished that with or without FuncUnit. -
started by bendzie • 5 years ago
HiEvery time I run tests via command linejs funcunit/run selenium http://mylocalhost/funcunit/funcunit.htmlI am getting same error:getEval(Selenium.getResult())this.browserbot = browserbot;this.optionLocatorFactory = new OptionLocatorFactory();// DGF for backwards compatibilitythis.page = function() {return browserbot;};this.defaultTimeout = Selenium.DEFAULT_TIMEOUT;this.mouseSpeed = Selenium.DEFAULT_MOUSE_SPEED;// TODO(simon): This guard should not be necessary. Remove it,if (bot && bot.locators && bot.locators.add) {bot.locators.add('xpath', {single: function(target, opt_root) {return browserbot.locateElementByXPath(target, opt_root);},many: function(target, opt_root) {return browserbot.locateElementsByXPath(target, opt_root);}});bot.locators.add('css', {single: function(target, opt_root) {return browserbot.locateElementByCss(target, opt_root);},many: function(target, opt_root) {return eval_css(target, opt_root);}});}} has no method 'getResult'What is causing this to happen and how to solve this issue?Thank you in advance!!! -
or ... with xvfb-runxvfb-run -a ./js funcunit/run selenium test/funcunit.html
-
Maybe it will be usefull for someone.The unit test page (lib/test/funcunit.html) was called from a sub directory of the my lib directory. So when the browser executed the application it made right access errors with the resources which are located in parent directories.
-
Thank you for your reply daniel_franz,I have tried with .win and I get the same issue.
- timer error
- function () {
- var result = null;
- try {
- result = checker();
- }
- catch (e) {
- }
- if (result) {
- success();
- } else {
- if (!stopped) {
- interval = setTimeout(arguments.callee, 10);
- }
- }
- }
- TypeError: Cannot read property "$" from undefined
-
asked by deven98602 • last reply by Justin Meyer • 5 years ago
I believe it is possible now.S.open(window)Does it I believe. Brian would have to confirm.FuncUnit is good for simulating a client. However, it's going to be too slow to test service performance. You can't fire off 1000s of browsers as easy as you can 1000s of simple http requests. -
started by k50fontaine • 6 years ago
Hi,I have a problem when Chrome is launching by Selenium.I see this page : file:///C:/selenium-server/core/RemoteRunner.html?manyparamsIn Selenium, i have this message :Couldn't proxy to http://manyletters/ because host not found.It works on IE/Firefox.Thx -
proposed by Brian_Moschel • 6 years ago
Hey FuncUnit users,I want to propose a change with how browsers are launched in FuncUnit from the commandline and see if anyone has any issues with it.Currently, you can specify a browsers array in your settings.js file, like so:- browsers: ["*firefox", "*googlechrome"],
I'm proposing that we drop this property in settings.js and instead, you can launch one browser from the commandline (in selenium mode) like this:- ./js funcunit/run selenium path/to/funcunit.html -browser "*firefox"
The reason for this change is the recent discovery that Jenkin's XUnit plugin lets you run multiple build steps, produce a different testresults.xml for each, and process each based on a wildcard.For example, say you have a project where you wanted to test firefox and chrome. You could create 2 separate Jenkins build steps for the project:- ./js funcunit/run selenium path/to/funcunit.html -browser "*firefox" -out testresults-ff.xml
- ./js funcunit/run selenium path/to/funcunit.html -browser "*googlechrome" -out testresults-chrome.xml
Then in the xunit config for the project, specify this as the file pattern: testresults-*.xml. After both steps run, Jenkins will analyze both results files, looking for errors.The result is an easy way to run your tests against multiple browsers using Jenkins. Because of this, its not necessary to also allow the browsers option in settings.js. This allows us to remove some potentially unneeded logic from FuncUnit, and just better document this Jenkins integration in the FuncUnit docs.Does anyone out there use FuncUnit with a CI system other than Jenkins? If so, would this change introduce problems for you or is this something that your system can handle? Let me know what you think.Thanks,Brian -
started by mikepietsch • last reply by Brian_Moschel • 6 years ago
We actually do have experimental support for targetting remote sites using a proxy server and NodeJS:That works with the latest funcunit. -
asked by Chris_Osborn • last reply by Brian_Moschel • 6 years ago
FYI this was fixed about a month ago: -
started by josh803316 • last reply by josh803316 • 6 years ago
a)I got this working by installing xvfb (allows me to run a headless browser) and doing the following to run the testsxvfb-run ./funcunit/envjs tracker/funcunit.html 2>&1b)I found the log in my public/ folder, the same folder that I ran the command line instance from.....it was called selenium.log -
started by clark_wang • last reply by Brian_Moschel • 6 years ago
In latest funcunit, we're using Selenium 2.0rc3. -
awesome, thanks :)
-
I wish we could update to master, but since it uses the new steal syntax we'd have to upgrade steal too :P. I can't seem to find a download for the old Firefox 4 Mac version; Mozilla pulled it.Which commit on FuncUnit fixes it to work with FF5? Perhaps we can patch the 3.1 version of FuncUnit.
-
reported by josh803316 • last reply by josh803316 • 6 years ago
Thanks for implementing the fix, after a limited amount of testing it seems to work like a charm!!! -
started by eboiling • last reply by Brian_Moschel • 6 years ago
1) Do the demo pages work in selenium with your modified profile? If not, do they work without?2) can you try your tests without the modified profile and see if they work -
Brian, thank you very much, it's all running nicely now.
Ed -
reported by josh803316 • last reply by Brian_Moschel • 7 years ago
It looks like that update fails beacuse github prevents files that big from being sent:It says "blob too big".So to get that file you might have to get it manually for now, get a download, or use git.I would try to fix it, but hopefully we won't be changing those files very often so this wont be a common issue.Also, like I said in the other thread, js -selenium should work now. -
asked by martinowen • last reply by Brian_Moschel • 7 years ago
This is awesome! Maybe you want to post something on this at the brand new community site?
- « Newer
- Older »
Sub forum actions