Search found 58 matches

Well, it kind of worked with: webdriver https://localhost/vendor/js/siesta/4.1.4/tests --browser ie What works better seems: phantomjs https://localhost/vendor/js/siesta/4.1.4/tests But I am a bit confused why it doesn't work. As I see 4.1.4 comes with all the software required to run the tests... I...
Hi, I am trying to run the tests in an automated way, but without success. I am trying to execute first the examples provided. I am following this documentation: https://www.bryntum.com/docs/siesta/#!/guide/siesta_automation Tried it with both 4.1.4 and also with the latest trial version without suc...
nickolay wrote:So basically you want array flattening for the "preload/alsoPreload"?
If it's called like that, then yes!
Hi, Not sure if this is the right place to post this. I would like to request a feature for the preload and alsoPreload functionality. These parameters expect an array of files(all fine with that). But, sometimes we need to load quite some css, js files based on dependencies. I would like to be able...
This is a remark for the developers. The optional parameters in functions should be marked accordingly. Example bellow: desc IS optional, should be put [] in the comments. As in attached screenshot * This method works correctly with the *placeholders* generated with method {@link #any}. * * @param {...
Hi, I have a question about "restricting" the code coverage reports by some tests. To exemplify, I would like that some tests to deliver code-coverage reports ONLY for the tested classes. Globally if I use these settings then it works. enableCodeCoverage: true, includeCoverageUnits: /.*yah...
Hi, If I have an event, which passes some arguments, I want to test those arguments. How can I do that? For example, the event is fired: view.fireEvent('someEvent', [arguments]); t.waitForEvent( view, 'someEvent', function ( arguments ) { //check if arguments has a good value... //it's always TRUE!?...