uiveri5

The spec stops running and hangs

非 Y 不嫁゛ 提交于 2021-02-11 15:10:23
问题 I've got a problem when using UIVeri5 to testing an app built by Fiori Elements. The test script is hanging there (for most of the time) at the first step until timeout. What's worse, I found in very rare case, it will succeed by passing the step. But the passing case cannot be easily reproduced. Here is my partial_release.spec.js . describe("partial_release", function () { it('should load the app', function() { debugger; expect(browser.getTitle()).toBe('Manage Security Deposits'); }); });

How to debug a uiveri5 test?

守給你的承諾、 提交于 2021-01-28 14:30:45
问题 I am following the docs word by word, i.e. start my Basic.spec.js with uiveri5 --debug (using default local browser) and have a debugger; statement within some it() in the test code. Yet the tests runs thru, passing that test, and will not stop in any way in any debugger. conf.js : exports.config = { profile: "integration", specs: "./*spec.js", baseUrl: 'http://localhost:2027/...' }; Basic.spec.js : describe('Basic', function () { it('1 should load the app', function() { expect(browser