Search found 58 matches

I've created a demo use-case here. It seems to me that none of the touch events are working, tap, longpress ... do I need to configure it somehow?

https://gist.github.com/klodoma/500b3aa7f544f0fd0adba64af8867ac7

Ext 6.7 modern is used
I have the following running code. I use methods of some custom classes that execute the cases. All good. I would like to know if there is a short-hand for the chain method. The following code: t.it('Test Delete trigger:event', function (t) { t.chain( function (next) { me.resetViewData(t, next); }, ...
Hi, I am trying to get longpress and swipe working but without success. https://bryntum.com/docs/siesta/#!/api/Siesta.Test.UserAgent.Touch Is there an example somewhere how to make this work? I am working with and ExtJs App. I've tried both the projects but still the same: var project = new Siesta.P...
Is this the way?
StartTest(function (t) {
    t.setWindowSize(300, 700);
We don't support mocking the userAgent but you can set viewportWidth / height. Docs: https://www.bryntum.com/docs/siesta/#!/api/Siesta.Project.Browser-cfg-viewportHeight It works if I set the viewportWidth during configuration. I found a way to set the userAgent to mobile, is it possible to change ...
Not sure if it's even possible, but maybe you can point out to the right direction. In Chrome/FF, we can emulate a mobile device with different screensizes and which also sets the browser userAgent to the specific "tablet" or "phone" mode. Ref to a generic user agent detection ht...
mats wrote: Mon Jun 10, 2019 5:44 pm We just append query string ourselves to make id unique (?foo=1) etc.
Yes, this does the trick! Thanks!
Hi, continuing my evaluation, I hit a potential issue. I have the following use-case: I want to execute the same test-file on different builds (for example: extjs classic and modern). The test-code is the same for both cases. I am doing this to avoid code duplication. As you see in the config the ho...
Nevermind, found it:
{ click: '>> button[_text=Two]' },
How does the component selection work with sencha modern? I got some examples working in classic, but in modern I cannot select a simple button. Although Ext.ComponentQuery.query('button[_text=Two]') delivers a hit, { click: 'button[_text=Two]' } doesn't work. The "el" is not visible. If I...