Fix non-interactive Qt installation for Android

We need to wait before clicking Next on the WelcomePage.
We really only want the Android armv7 packages.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2018-03-19 15:22:46 -07:00
parent b8f45d0ec9
commit ea7f49031d

View file

@ -9,7 +9,7 @@ function Controller() {
} }
Controller.prototype.WelcomePageCallback = function() { Controller.prototype.WelcomePageCallback = function() {
gui.clickButton(buttons.NextButton); gui.clickButton(buttons.NextButton,3000);
} }
Controller.prototype.CredentialsPageCallback = function() { Controller.prototype.CredentialsPageCallback = function() {
@ -31,8 +31,8 @@ Controller.prototype.TargetDirectoryPageCallback = function()
Controller.prototype.ComponentSelectionPageCallback = function() { Controller.prototype.ComponentSelectionPageCallback = function() {
var widget = gui.currentPageWidget(); var widget = gui.currentPageWidget();
widget.selectAll(); widget.deselectAll();
widget.deselectComponent('qt.59.src'); widget.selectComponent('qt.qt5.5101.android_armv7');
gui.clickButton(buttons.NextButton); gui.clickButton(buttons.NextButton);
} }