mirror of
https://github.com/appium/appium.git
synced 2026-01-26 20:28:55 -06:00
update example files to clarify what sdk is used
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
|
||||
var wd = require("wd")
|
||||
, should = require("should")
|
||||
, appURL = "http://appium.s3.amazonaws.com/WebViewApp.app.zip";
|
||||
, appURL = "http://appium.s3.amazonaws.com/WebViewApp6.0.app.zip";
|
||||
|
||||
// Instantiate a new browser sessoin
|
||||
var browser = wd.remote("localhost", 4723);
|
||||
|
||||
@@ -2,7 +2,7 @@ var wd = require("wd")
|
||||
, assert = require("assert")
|
||||
, username = "<username>" // Omit for local test run
|
||||
, accessKey = "<accessKey>" // Omit for local test run
|
||||
, appURL = "http://appium.s3.amazonaws.com/TestApp.app.zip";
|
||||
, appURL = "http://appium.s3.amazonaws.com/TestApp6.0.app.zip";
|
||||
|
||||
var browser = wd.promiseRemote(
|
||||
"ondemand.saucelabs.com" // Omit for local test run
|
||||
|
||||
@@ -2,7 +2,7 @@ var wd = require("wd")
|
||||
, assert = require("assert")
|
||||
, username = process.env.SAUCE_USERNAME // Omit for a local test run
|
||||
, accessKey = process.env.SAUCE_ACCESS_KEY // Omit for a local test run
|
||||
, appURL = "http://appium.s3.amazonaws.com/TestApp.app.zip";
|
||||
, appURL = "http://appium.s3.amazonaws.com/TestApp6.0.app.zip";
|
||||
|
||||
// Instantiate a new browser sessoin
|
||||
var browser = wd.remote(
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
"use strict";
|
||||
|
||||
var should = require("should")
|
||||
, appUrl = 'http://appium.s3.amazonaws.com/TestApp.app.zip'
|
||||
, appUrl = 'http://appium.s3.amazonaws.com/TestApp6.0.app.zip'
|
||||
, dbPath = "../../../test/helpers/driverblock.js"
|
||||
, describeSauce = require(dbPath).describeForSauce(appUrl);
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
var wd = require("wd")
|
||||
, assert = require("assert")
|
||||
, appURL = "http://appium.s3.amazonaws.com/TestApp.app.zip";
|
||||
, appURL = "http://appium.s3.amazonaws.com/TestApp6.0.app.zip";
|
||||
|
||||
// Instantiate a new browser session
|
||||
var browser = wd.remote("localhost", 4723);
|
||||
|
||||
@@ -2,7 +2,7 @@ var wdSync = require("wd-sync")
|
||||
, assert = require("assert")
|
||||
, username = "<username>" //omit for local
|
||||
, accessKey = "<accessKey>" // Omit for local
|
||||
, appURL = "http://appium.s3.amazonaws.com/TestApp.app.zip";
|
||||
, appURL = "http://appium.s3.amazonaws.com/TestApp6.0.app.zip";
|
||||
|
||||
// Instantiate a remote wd instance
|
||||
var client = wdSync.remote(
|
||||
|
||||
Reference in New Issue
Block a user