Search found 12 matches

Thank you, now it works fine. I still ask my self why the overrideSetTimeout command is necessary. Sometimes magic happens :D . I did not test this because it was no expected behaviour and I never has to use this configuration.

Best reguards
Erik
Hi, I do the following StartTest(function(t) { t.chain( { waitFor : 'CQ', args : 'loginPanel' }, function (next) { var userNameField = t.cq('#usernameTextField'); //t.type(userNameField, 'ADMIN', next); console.log('The test is over now'); } ); }) Then the test passes. When I recomment the t.type ro...
Hello, I get a weird error message on my test suite. The test runs through completely because when I placed a log in the last function this is reached by siesta. The message you can see in the image below. Here is my testcode. I am using Siesta Lite. StartTest(function(t) { t.chain( { waitFor : 'CQ'...
Hi all together, I would like to share my first steps with jenkins continous integration using siesta. In our project we have the goal to set up a well tested automated suite for our building process. Here siesta offers a good mechanism to do that, PhantomJS. We are using ExtJS for our GUI. There we...
Hello Nickolay,

your advice was like gold. Now everything works with the console.

Thank you
Hello, I would like to use the selenium webdriver for my tests. I use the logger log4javascript in my application. In firefox all works fine. PhantomJS passes all tests and chrome do so, too. Only Internet Explorer fails a test, telling that console is undefined. console is a variable which I use to...
I do it that way. I execute a batch on jenkins which generate my test_result.xml. Jenkins provides an option where I am able to specify that a xml file with these specification is located on top level at Jenkins workspace. The option is named as a post build step, publish Junit Test results. Then Je...
Yes I was able to workaround it. I created a new directory where my tests are stored. Then I wrote some scripts which fetch all the data I need to perform the tests and copy them (app, extjs, resources directory etc.) into my new created folder. In my SVN only the files for testing are comitted like...
Hey sorry,

I know my issue. I am working with jetty. Jetty is not able to adress files above the directory webapps. Webapps is the place where the deployments are located so it can not work.
Hey, I have a problem referencing the ext-all-debug.js, ext-all.css, siesta-all.js, siesta-all.css three directories above the location of the test-harness.html and test-harness.js. Three directories upon them the extjs-4.1.3 and the siesta sources are saved. I have to use this structure because I d...