-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathbrowserstack_sample_local.rb
71 lines (58 loc) · 1.93 KB
/
browserstack_sample_local.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
require 'rubygems'
require 'appium_lib'
require 'selenium-webdriver'
require 'browserstack/local'
# Set your access credentials
user_name = "BROWSERSTACK_USERNAME"
access_key = "BROWSERSTACK_ACCESS_KEY"
capabilities = {
# Specify device and os_version for testing
"platformName" => "iOS",
"platformVersion" => "12",
"deviceName" => "iPhone XS",
# 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 local_test",
"debug" => "true",
"local" => "true",
"networkLogs" => "true",
"userName": user_name,
"accessKey": access_key
},
}
# Start browserstack local
bs_local = BrowserStack::Local.new
bs_local_args = { "key" => access_key }
bs_local.start(bs_local_args)
# Initialize the remote Webdriver using BrowserStack remote URL
# and desired capabilities defined above
appium_driver = Appium::Driver.new({
'caps' => capabilities,
'appium_lib' => {
:server_url => "http://hub.browserstack.com/wd/hub"
}}, true)
driver = appium_driver.start_driver
# Initialize the remote Webdriver using BrowserStack remote URL
# and desired capabilities defined above
wait = Selenium::WebDriver::Wait.new(:timeout => 30)
wait.until { driver.find_element(:accessibility_id, "TestBrowserStackLocal").displayed? }
test_button = driver.find_element(:accessibility_id, "TestBrowserStackLocal")
test_button.click
wait.until do
value = driver.find_element(:accessibility_id, "ResultBrowserStackLocal").attribute("value")
!value.nil? && value.size > 0
end
result_element = driver.find_element(:accessibility_id, "ResultBrowserStackLocal")
if result_element.text.match('Up and running')
puts "Test Passed"
else
puts "Test Failed"
end
# Invoke driver.quit() after the test is done to indicate that the test is completed.
driver.quit
# Stop browserstack local
bs_local.stop