mirror of
https://github.com/zulip/zulip.git
synced 2025-11-12 09:58:06 +00:00
Update casperjs to 1.0.2.
(imported from commit 9e34b51c4588dce6419ea86024b2e8c06346a685)
This commit is contained in:
30
zephyr/tests/frontend/casperjs/samples/translate.js
Normal file
30
zephyr/tests/frontend/casperjs/samples/translate.js
Normal file
@@ -0,0 +1,30 @@
|
||||
/*jshint strict:false*/
|
||||
/*global CasperError console phantom require*/
|
||||
|
||||
/**
|
||||
* Translation using the Google Translate Service.
|
||||
*
|
||||
* Usage:
|
||||
*
|
||||
* $ casperjs translate.js --target=fr "hello world"
|
||||
* bonjour tout le monde
|
||||
*/
|
||||
var system = require('system'),
|
||||
casper = require('casper').create(),
|
||||
format = require('utils').format,
|
||||
source = casper.cli.get('source') || 'auto',
|
||||
target = casper.cli.get('target'),
|
||||
text = casper.cli.get(0),
|
||||
result;
|
||||
|
||||
if (!target) {
|
||||
casper.warn('The --target option is mandatory.').exit(1);
|
||||
}
|
||||
|
||||
casper.start(format('http://translate.google.com/#%s/%s/%s', source, target, text), function() {
|
||||
this.fill('form#gt-form', {text: text});
|
||||
}).waitForSelector('span.hps', function() {
|
||||
this.echo(this.fetchText("#result_box"));
|
||||
});
|
||||
|
||||
casper.run();
|
||||
Reference in New Issue
Block a user