Update ui-tests-app

This commit is contained in:
Vasil Chimev
2016-02-03 13:25:01 +02:00
parent 4b9003df1d
commit 12af6d58ad
2 changed files with 7 additions and 0 deletions

View File

@ -21,7 +21,13 @@ export function createPage() {
buttonOneWay.id = "buttonOneWay";
buttonTwoWay.id = "buttonTwoWay";
targetOneWay.automationText = "textFieldOneWay";
targetTwoWay.automationText = "textFieldTwoWay";
buttonOneWay.automationText = "buttonOneWay";
buttonTwoWay.automationText = "buttonTwoWay";
buttonSetText.id = "buttonSetText";
buttonSetText.automationText = "buttonSetText";
buttonSetText.text = "SetText";
buttonSetText.on(buttonModule.Button.tapEvent, function () {
targetOneWay.text = "Test";

View File

@ -54,6 +54,7 @@ examples.set("dialogs", "dialogs/dialogs");
examples.set("fontbtn", "font/button");
examples.set("fontlbl", "font/label");
examples.set("material", "font/material-icons");
examples.set("tabfont", "font/tab-view");
examples.set("fontfield", "font/text-field");
examples.set("fontview", "font/text-view");