change hosted location of example apps

This commit is contained in:
Jonathan Lipps
2013-02-06 16:34:07 -08:00
parent 5d58a2a2f2
commit 6b88ae1d34
11 changed files with 11 additions and 11 deletions
@@ -39,7 +39,7 @@ public class SauceTest {
capabilities.setCapability(CapabilityType.BROWSER_NAME, "iOS");
capabilities.setCapability(CapabilityType.VERSION, "6.0");
capabilities.setCapability(CapabilityType.PLATFORM, "Mac");
capabilities.setCapability("app", "https://raw.github.com/appium/appium/master/assets/TestApp.app.zip");
capabilities.setCapability("app", "http://appium.s3.amazonaws.com/TestApp.app.zip");
driver = new RemoteWebDriver(new URL(MessageFormat.format("http://{0}:{1}@ondemand.saucelabs.com:80/wd/hub", sauceUserName, sauceAccessKey)),
capabilities);
+1 -1
View File
@@ -2,7 +2,7 @@
var wd = require("wd")
, should = require("should")
, appURL = "https://raw.github.com/appium/appium/master/assets/WebViewApp.app.zip";
, appURL = "http://appium.s3.amazonaws.com/WebViewApp.app.zip";
// Instantiate a new browser sessoin
var browser = wd.remote("localhost", 4723);
+1 -1
View File
@@ -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 = "https://raw.github.com/appium/appium/master/assets/TestApp.app.zip";
, appURL = "http://appium.s3.amazonaws.com/TestApp.app.zip";
var browser = wd.promiseRemote(
"ondemand.saucelabs.com" // Omit for local test run
+1 -1
View File
@@ -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 = "https://raw.github.com/appium/appium/master/assets/TestApp.app.zip";
, appURL = "http://appium.s3.amazonaws.com/TestApp.app.zip";
// Instantiate a new browser sessoin
var browser = wd.remote(
+1 -1
View File
@@ -7,7 +7,7 @@
"use strict";
var should = require("should")
, appUrl = 'https://raw.github.com/appium/appium/master/assets/TestApp.app.zip'
, appUrl = 'http://appium.s3.amazonaws.com/TestApp.app.zip'
, dbPath = "../../../test/helpers/driverblock.js"
, describeSauce = require(dbPath).describeForSauce(appUrl);
+1 -1
View File
@@ -1,6 +1,6 @@
var wd = require("wd")
, assert = require("assert")
, appURL = "https://raw.github.com/appium/appium/master/assets/TestApp.app.zip";
, appURL = "http://appium.s3.amazonaws.com/TestApp.app.zip";
// Instantiate a new browser session
var browser = wd.remote("localhost", 4723);
+1 -1
View File
@@ -2,7 +2,7 @@ var wdSync = require("wd-sync")
, assert = require("assert")
, username = "<username>" //omit for local
, accessKey = "<accessKey>" // Omit for local
, appURL = "https://raw.github.com/appium/appium/master/assets/TestApp.app.zip";
, appURL = "http://appium.s3.amazonaws.com/TestApp.app.zip";
// Instantiate a remote wd instance
var client = wdSync.remote(
+1 -1
View File
@@ -4,7 +4,7 @@
// vendor/bin/phpunit SauceTest.php
require_once "vendor/autoload.php";
define("APP_URL", "https://raw.github.com/appium/appium/master/assets/TestApp.app.zip");
define("APP_URL", "http://appium.s3.amazonaws.com/TestApp.app.zip");
class SauceTest extends Sauce\Sausage\WebDriverTestCase
{
+1 -1
View File
@@ -16,7 +16,7 @@ class TestSequenceFunctions(unittest.TestCase):
def setUp(self):
# set up appium
app = "https://raw.github.com/appium/appium/master/assets/TestApp.app.zip"
app = "http://appium.s3.amazonaws.com/TestApp.app.zip"
self.driver = webdriver.Remote(
command_executor='http://%s:%s@ondemand.saucelabs.com:80/wd/hub' % (SAUCE_USERNAME, SAUCE_ACCESS_KEY),
desired_capabilities={
+1 -1
View File
@@ -10,7 +10,7 @@
require 'rspec'
require 'selenium-webdriver'
APP_PATH = 'https://raw.github.com/appium/appium/master/assets/TestApp.app.zip'
APP_PATH = 'http://appium.s3.amazonaws.com/TestApp.app.zip'
SAUCE_USERNAME = ENV['SAUCE_USERNAME']
SAUCE_ACCESS_KEY = ENV['SAUCE_ACCESS_KEY']