mirror of
https://github.com/appium/appium.git
synced 2026-04-27 05:52:35 -05:00
add chrome on sauce example
This commit is contained in:
@@ -0,0 +1,55 @@
|
||||
"use strict";
|
||||
|
||||
var wd = require("wd")
|
||||
, should = require("should");
|
||||
|
||||
// Instantiate a new browser sessoin
|
||||
var browser = wd.remote("ondemand.saucelabs.com", 80,
|
||||
process.env.SAUCE_USERNAME, process.env.SAUCE_ACCESS_KEY);
|
||||
|
||||
// See whats going on
|
||||
browser.on('status', function(info) {
|
||||
console.log('\x1b[36m%s\x1b[0m', info);
|
||||
});
|
||||
|
||||
browser.on('command', function(meth, path, data) {
|
||||
console.log(' > \x1b[33m%s\x1b[0m: %s', meth, path, data || '');
|
||||
});
|
||||
|
||||
// Run the test
|
||||
browser
|
||||
.chain()
|
||||
.init({
|
||||
device: 'Android Emulator'
|
||||
, version: '4.0'
|
||||
, app: "chrome"
|
||||
})
|
||||
.get("http://saucelabs.com/test/guinea-pig", function(err) {
|
||||
should.not.exist(err);
|
||||
browser.elementById('i_am_an_id', function(err, el) {
|
||||
should.not.exist(err);
|
||||
el.text(function(err, text) {
|
||||
text.should.eql("I am a div");
|
||||
browser.elementById('comments', function(err, comments) {
|
||||
should.not.exist(err);
|
||||
comments.sendKeys("This is an awesome comment", function() {
|
||||
browser.elementById('submit', function(err, submit) {
|
||||
submit.click(function() {
|
||||
var next = function() {
|
||||
browser.elementById('your_comments', function(err, res) {
|
||||
res.text(function(err, text) {
|
||||
text.should.include("This is an awesome comment");
|
||||
browser.quit();
|
||||
});
|
||||
});
|
||||
};
|
||||
setTimeout(next, 1000);
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user