Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add w3c support #11

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
source 'http://rubygems.org'

gem 'appium_lib', ">=10.5.0"
gem 'appium_lib', ">=12.0.1"
gem 'browserstack-local', ">=1.3.0"
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

This repository demonstrates how to run Appium Ruby tests on BrowserStack App Automate.

## Based on

These code samples are currently based on:

- **appium_lib:** `12.0.1`
- **Protocol:** `W3C`
## Setup

### Requirements
Expand Down Expand Up @@ -94,7 +100,7 @@ Open `browserstack_sample_local.rb` file in `android` or `ios` directory :

- Set the device and OS version

- Ensure that `browserstack.local` capability is set to `true`. Within the test script, there is code snippet that automatically establishes Local Testing connection to BrowserStack servers using Ruby binding for BrowserStack Local.
- Ensure that `local` capability is set to `true`. Within the test script, there is code snippet that automatically establishes Local Testing connection to BrowserStack servers using Ruby binding for BrowserStack Local.

- If you have uploaded your own app update the test case

Expand Down
45 changes: 24 additions & 21 deletions android/browserstack_sample.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,32 +2,35 @@
require 'appium_lib'
require 'selenium-webdriver'

caps = {}
# Set your access credentials
caps['browserstack.user'] = 'YOUR_USERNAME'
caps['browserstack.key'] = 'YOUR_ACCESS_KEY'

# Set URL of the application under test
caps['app'] = 'bs://<app-id>'

# Specify device and os_version for testing
caps['device'] = 'Google Pixel 3'
caps['os_version'] = '9.0'

# Set other BrowserStack capabilities
caps['project'] = 'First Ruby project'
caps['build'] = 'browserstack-build-1'
caps['name'] = 'single_test'

#Set the platform name
caps['platformName'] = 'android'
capabilities = {
# Specify device and os_version for testing
"platformName" => "android",
"platformVersion" => "9.0",
"deviceName" => "Google Pixel 3",

# Set URL of the application under test
"app" => "bs://<appID>",

# Set other BrowserStack capabilities
'bstack:options' => {
"projectName" => "First Ruby project",
"buildName" => "browserstack-build-1",
"sessionName" => "BStack single_test",
"debug" => "true",
"networkLogs" => "true",

# Set your access credentials
"userName": "BROWSERSTACK_USERNAME",
"accessKey": "BROWSERSTACK_ACCESS_KEY"
},
}

# Initialize the remote Webdriver using BrowserStack remote URL
# and desired capabilities defined above
appium_driver = Appium::Driver.new({
'caps' => caps,
'caps' => capabilities,
'appium_lib' => {
:server_url => "http://hub-cloud.browserstack.com/wd/hub"
:server_url => "http://hub.browserstack.com/wd/hub"
}}, true)
driver = appium_driver.start_driver

Expand Down
44 changes: 23 additions & 21 deletions android/browserstack_sample_local.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,30 +3,32 @@
require 'selenium-webdriver'
require 'browserstack/local'

username = 'YOUR_USERNAME'
access_key = 'YOUR_ACCESS_KEY'

caps = {}
# Set your access credentials
caps['browserstack.user'] = username
caps['browserstack.key'] = access_key
user_name = "BROWSERSTACK_USERNAME"
access_key = "BROWSERSTACK_ACCESS_KEY"

# Set URL of the application under test
caps['app'] = 'bs://<app-id>'
capabilities = {
# Specify device and os_version for testing
"platformName" => "android",
"platformVersion" => "9.0",
"deviceName" => "Google Pixel 3",

# Specify device and os_version for testing
caps['device'] = 'Google Pixel 3'
caps['os_version'] = '9.0'
# Set URL of the application under test
"app" => "bs://<appID>",

# Set browserstack.local capability as true
caps['browserstack.local'] = true
# Set other BrowserStack capabilities
'bstack:options' => {
"projectName" => "First Ruby project",
"buildName" => "browserstack-build-1",
"sessionName" => "BStack local_test",
"debug" => "true",
"local" => "true",
"networkLogs" => "true",

# Set other BrowserStack capabilities
caps['project'] = 'First Ruby project'
caps['build'] = 'browserstack-build-1'
caps['name'] = 'local_test'
caps['platformName'] = 'android'
caps['browserstack.debug'] = true
"userName": user_name,
"accessKey": access_key
},
}

# Start browserstack local
bs_local = BrowserStack::Local.new
Expand All @@ -36,9 +38,9 @@
# Initialize the remote Webdriver using BrowserStack remote URL
# and desired capabilities defined above
appium_driver = Appium::Driver.new({
'caps' => caps,
'caps' => capabilities,
'appium_lib' => {
:server_url => "http://hub-cloud.browserstack.com/wd/hub"
:server_url => "http://hub.browserstack.com/wd/hub"
}}, true)
driver = appium_driver.start_driver

Expand Down
45 changes: 24 additions & 21 deletions ios/browserstack_sample.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,32 +2,35 @@
require 'appium_lib'
require 'selenium-webdriver'

caps = {}
# Set your access credentials
caps['browserstack.user'] = 'YOUR_USERNAME'
caps['browserstack.key'] = 'YOUR_ACCESS_KEY'

# Set URL of the application under test
caps['app'] = 'bs://<app-id>'

# Specify device and os_version for testing
caps['device'] = "iPhone 11 Pro"
caps['os_version'] = "13"

# Set other BrowserStack capabilities
caps['project'] = 'First Ruby project'
caps['build'] = 'browserstack-build-1'
caps['name'] = 'single_test'

#Set the platform name
caps['platformName'] = 'iOS'
capabilities = {
# Specify device and os_version for testing
"platformName" => "iOS",
"platformVersion" => "13",
"deviceName" => "iPhone 11 Pro",

# Set URL of the application under test
"app" => "bs://<appID>",

# Set other BrowserStack capabilities
'bstack:options' => {
"projectName" => "First Ruby project",
"buildName" => "browserstack-build-1",
"sessionName" => "BStack single_test",
"debug" => "true",
"networkLogs" => "true",

# Set your access credentials
"userName": "BROWSERSTACK_USERNAME",
"accessKey": "BROWSERSTACK_ACCESS_KEY"
},
}

# Initialize the remote Webdriver using BrowserStack remote URL
# and desired capabilities defined above
appium_driver = Appium::Driver.new({
'caps' => caps,
'caps' => capabilities,
'appium_lib' => {
:server_url => "http://hub-cloud.browserstack.com/wd/hub"
:server_url => "http://hub.browserstack.com/wd/hub"
}}, true)
driver = appium_driver.start_driver

Expand Down
45 changes: 23 additions & 22 deletions ios/browserstack_sample_local.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,31 +3,32 @@
require 'selenium-webdriver'
require 'browserstack/local'


username = 'YOUR_USERNAME'
access_key = 'YOUR_ACCESS_KEY'

caps = {}
# Set your access credentials
caps['browserstack.user'] = username
caps['browserstack.key'] = access_key
user_name = "BROWSERSTACK_USERNAME"
access_key = "BROWSERSTACK_ACCESS_KEY"

# Set URL of the application under test
caps['app'] = 'bs://<app-id>'
capabilities = {
# Specify device and os_version for testing
"platformName" => "iOS",
"platformVersion" => "12",
"deviceName" => "iPhone XS",

# Specify device and os_version for testing
caps['device'] = "iPhone 11 Pro"
caps['os_version'] = "13"
# Set URL of the application under test
"app" => "bs://<appID>",

# Set browserstack.local capability as true
caps['browserstack.local'] = true
# Set other BrowserStack capabilities
'bstack:options' => {
"projectName" => "First Ruby project",
"buildName" => "browserstack-build-1",
"sessionName" => "BStack local_test",
"debug" => "true",
"local" => "true",
"networkLogs" => "true",

# Set other BrowserStack capabilities
caps['project'] = 'First Ruby project'
caps['build'] = 'browserstack-build-1'
caps['name'] = 'local_test'
caps['platformName'] = 'iOS'
caps['browserstack.debug'] = true
"userName": user_name,
"accessKey": access_key
},
}

# Start browserstack local
bs_local = BrowserStack::Local.new
Expand All @@ -37,9 +38,9 @@
# Initialize the remote Webdriver using BrowserStack remote URL
# and desired capabilities defined above
appium_driver = Appium::Driver.new({
'caps' => caps,
'caps' => capabilities,
'appium_lib' => {
:server_url => "http://hub-cloud.browserstack.com/wd/hub"
:server_url => "http://hub.browserstack.com/wd/hub"
}}, true)
driver = appium_driver.start_driver

Expand Down