Search found 10 matches

Thank you, that fixed it
Using the query "userReset [name=username]" already resolves only one object. As said, the test code with Log.trace logs exactly the needed object to the console.
Hi forum, on our page we have different views using a "card" layout, meaning that already rendered views are not shown when not needed, thus, navigating hiding the old view and showing the new view (rendering or bringing to front). With this we can navigate through the site without loosing...
Hi, thanks for the tipps. It may be a good idea to mention the possible problems with timeouts in the documentation. For the time beeing, we did three things: - We disabled our integration tests, since there pretty complex and need to be rewritten, according your guide. - We fixed every other test t...
Hello, I just tried modifying the puppeteer version / chrome version downloaded. I noticed the amount of errors going down using the 75 version (down to like 20%), 77 beta tried as well. My computer just updated to Chrome 76 (as in puppeteer) two days ago. With webdriver still no errors. On the CI s...
After more testing i found out that: - webdriver fails as well using Chrome 76 - puppeteer with version 77 (beta?) fails as well - puppeteer with chrome version 75 runs through (as the local webdriver tests using the same version) This can be accomplished by browsing to puppeteer in node_modules (in...
Hello Forum, currently we're in our trial and trying to setup a working pipeline for siesta test. We started using web driver to setup our test pipeline (CI). It didn't work, so we tried out puppeteer. The effort to setup was insane, but in the end it seemed to work. Then our pipelines started faili...
Hi, right now we're configuring our tests to do some coverage stuff. We want to use the text-summary output format from nyc to allow gitlab to display us our coverage. Interestingly, siesta (or nyc in the back, i dont know) states that the text-summary reporter is not available but uses it as would ...
This is exactly what im trying right now: Ext.define('App.util.TestHook', { alternateClassName: ['TestHook'], singleton: true, hooks: [], register(fn) { this.hooks.push(fn); }, run() { // <debug> if (Ext.isTesting) { Log.trace(['TESTING', 'run'], 'run test hooks', this.hooks); this.hooks.forEach((fn...
Hello there, right now we're trying out siesta, which seems good so far. But we're encountering one specific problem: How to wait for preloads to complete? The scenario is the following: Working with ext-gen (sencha cmd via npm) as guided here https://bryntum.com/docs/siesta/#!/guide/sencha_testing_...