本文整理汇总了TypeScript中selenium-webdriver/lib/command.Command.setParameter方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Command.setParameter方法的具体用法?TypeScript Command.setParameter怎么用?TypeScript Command.setParameter使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类selenium-webdriver/lib/command.Command
的用法示例。
在下文中一共展示了Command.setParameter方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: buildPath
this.schedule = (command: Command, description: string) => {
command.setParameter('sessionId', sessionId);
var params = command.getParameters();
return webdriver.promise.fulfilled(execCallback(
buildPath(this.paths_[command.getName()], params),
description, params));
};
示例2: RangeError
/**
* Executes a command which was defined by defineCommand()
*
* @param {string} name The command name.
* @param {*[]} params The parameters to the command
* @return {webdriver.promise.Promise<*>} A promise that will be resolved with
* the command result
*/
execCommand<T>(name: string, method: string, params: any[]): wdpromise.Promise<T> {
var paramNames = this.params_[method + ':' + name];
if (paramNames === undefined) {
throw new RangeError('The command "' + name + '" has not yet been defined');
}
if (paramNames.length !== params.length) {
throw new RangeError(
'The command "' + name + '" expected ' + paramNames.length + ' parameters, got ' +
params.length);
}
var command = new Command(name);
for (var i = 0; i < params.length; i++) {
if (params[i] !== undefined) {
command.setParameter(paramNames[i], params[i]);
}
}
return this.driver_.schedule(
command,
'Custom Command: ' + name + '(' +
params
.map((x: any) => {
if ((typeof x == 'number') || (typeof x == 'boolean') ||
(typeof x == 'function')) {
return x.toString();
} else if (x == null) {
return '' + x;
} else {
return JSON.stringify(x);
}
})
.join(', ') +
')');
}