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:
parent
b8f45d0ec9
commit
ea7f49031d
@ -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);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user