Search found 6 matches

Ok, thank you.
I am newbie on Javascript and Siesta so I need more information. I will use if statement for if window appeared or not. I asked wrong question actually. I need that statement which states window appeared or not? Btw, I am using this system for if/else: t.it('Test Case', function (t) { t.chain( funct...
I need an if/else statement for my test case. Here is the scenario; if this window https://www.evernote.com/l/ATk4C_WW4ktOdbZLqzRWhazKfVHJ_zFzXV0B/image.png appears click yes, if not do something else. This window appears sometimes. It is the value of target in event recorder : messagebox[title=Appl...
Sorry for late replies. You can download zip file from attachment.

projectOne.zip
I had to remove test/siesta/resources folder because of it's size.
(17.94 KiB) Downloaded 188 times
Here is index.js file: let project = new Siesta.Project.Browser.ExtJS(); project.configure({ title: 'Test Runner', viewDOM: true, enableCodeCoverage: true, autoScrollElementsIntoView: true, viewportHeight : 1100, viewportWidth : 900, coverageUnit: 'file', runCore: 'sequential', separateContext: true...
Hi, I have a 'myStrings' object in Ext Js app folder. In project files I can easily get variables in that object like 'myStrings.stringOne'. myStrings = { stringOne: 'One', stringTwo: 'Two', ....... } Usage: Ext.define('myApp.view.classA', { title: myStrings.stringOne, } Here is my test case and the...