@ubox-tools/deploy-xperience 1.1.15 → 1.1.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/deploy.js +7 -2
- package/package.json +1 -1
package/deploy.js
CHANGED
|
@@ -686,8 +686,10 @@ async function injectSource(page, proxy) {
|
|
|
686
686
|
await sleep(500);
|
|
687
687
|
}
|
|
688
688
|
|
|
689
|
+
const navPromise = page.waitForNavigation({ waitUntil: 'networkidle2', timeout: 15000 }).catch(() => null);
|
|
689
690
|
await clickByText(page, 'Save and back to app');
|
|
690
|
-
await
|
|
691
|
+
await navPromise;
|
|
692
|
+
await sleep(1000);
|
|
691
693
|
}
|
|
692
694
|
|
|
693
695
|
async function deployApp(page, appName, projectName, { noAssets = false, noSource = false } = {}) {
|
|
@@ -1131,7 +1133,10 @@ async function main() {
|
|
|
1131
1133
|
|
|
1132
1134
|
try {
|
|
1133
1135
|
// Always accept any confirm() dialogs the studio may show during deployment
|
|
1134
|
-
page.on('dialog', async d => {
|
|
1136
|
+
page.on('dialog', async d => {
|
|
1137
|
+
console.log(` [dialog] type=${d.type()} msg="${d.message()}" → accepted`);
|
|
1138
|
+
await d.accept();
|
|
1139
|
+
});
|
|
1135
1140
|
|
|
1136
1141
|
// Phase 1 — Login
|
|
1137
1142
|
await login(page, email, password);
|
package/package.json
CHANGED