本文整理匯總了TypeScript中selenium-webdriver/firefox.Options.setLoggingPreferences方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript Options.setLoggingPreferences方法的具體用法?TypeScript Options.setLoggingPreferences怎麽用?TypeScript Options.setLoggingPreferences使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類selenium-webdriver/firefox.Options
的用法示例。
在下文中一共展示了Options.setLoggingPreferences方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: TestFirefoxOptions
function TestFirefoxOptions() {
var options: firefox.Options = new firefox.Options();
options = options.setBinary('binary');
options = options.setBinary(new firefox.Binary());
options = options.setLoggingPreferences(new webdriver.logging.Preferences());
options = options.setProfile('profile');
options = options.setProfile(new firefox.Profile());
options = options.setProxy({ proxyType: 'proxy' });
var capabilities: webdriver.Capabilities = options.toCapabilities();
}
示例2: TestFirefoxOptions
function TestFirefoxOptions() {
let options: firefox.Options = new firefox.Options();
options = options.addArguments('foo', 'bar');
options = options.windowSize({ width: 320, height: 480 });
options = options.addExtensions('foo', 'bar');
options = options.setPreference('a', 1);
options = options.setPreference('a', true);
options = options.setPreference('a', '1');
options = options.setBinary('binary');
options = options.setBinary(new firefox.Binary());
options = options.setLoggingPreferences(new webdriver.logging.Preferences());
options = options.setProfile('profile');
options = options.setProfile(new firefox.Profile());
options = options.setProxy({ proxyType: 'proxy' });
let capabilities: webdriver.Capabilities = options.toCapabilities();
}