Testcomplete扩展-操作参数

时间:2018-10-10 14:08:30

标签: testcomplete

我有一个接受多个参数的扩展程序:

app.controller('confirmMatchCtrl', ["$scope", "$filter", "$routeParams", "$translate", "$location", "Data", "$http", "onlineStatus", "$localStorage",
   function ($scope, $filter, $routeParams, $translate, $location, Data, $http, onlineStatus, $localStorage) {
       $scope.$storage = $localStorage;
       if($scope.$storage){
         var id = $scope.$storage.match_id;
       }
}

“值”列已设置为参数类型:

<Parameters>
<Parameter Name="param1"/>
<Parameter Name="param2"/>
...
</Parameters>

我想要的是用户不要以文本形式输入参数,而是选择组合中的预定义值,请注意它具有多个选择参数,因此它应该是参数编辑器而不是组合。关键字自定义是否可行?

0 个答案:

没有答案