testcentricity_web 0.9.9.4 → 0.9.9.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ac645f88ced33e1f75ff7707eb9131f3c4128649
4
- data.tar.gz: 1135d24ddf6499993343634e5cda39ff32cddca3
3
+ metadata.gz: d9927fa32621782fdd4799932c7fb4439cc79a9f
4
+ data.tar.gz: ac91d1ca671d5ba82e3fcd992c463cfbb5faaa26
5
5
  SHA512:
6
- metadata.gz: 150a16315f46f712217e0d20788d0c136e6e18e876193cf96db1b7103392a6aca89f337ab68959ea783138d84ade1babc9b0ff002700a85cf360d2c78943bcc1
7
- data.tar.gz: 998ce0d83fdba227cb20d1dd99d1b610573952c61b181a81a3846610f623a1caaf5e3e69c4e3721665aa4295a4d49efd63a362671cecd2f9f790591c0ae82d8c
6
+ metadata.gz: 1dc67a9c569ebcb35a02203a5133e10f691e6e51f50d0acb82f5e1a64be4a1d4e6dbf832800767c1b89b493221e517416a1930690c95f07d9c21314e00972c1f
7
+ data.tar.gz: 109beb8f32a52acbfd205abba607b84cd1bd9bbfc7cbfa91ebff2792e4c4dad225c7864cabba68ddd6ea316eda43cfca213cb5ca016c39d742271cbaad2e8976
@@ -1,3 +1,3 @@
1
1
  module TestCentricityWeb
2
- VERSION = '0.9.9.4'
2
+ VERSION = '0.9.9.5'
3
3
  end
@@ -18,28 +18,36 @@ module TestCentricity
18
18
  case browser.downcase.to_sym
19
19
  when :appium
20
20
  initialize_appium
21
+ context = 'mobile device emulator'
21
22
  when :browserstack
22
23
  initialize_browserstack
24
+ context = 'Browserstack cloud service'
23
25
  when :crossbrowser
24
26
  initialize_crossbrowser
27
+ context = 'CrossBrowserTesting cloud service'
25
28
  when :poltergeist
26
29
  initialize_poltergeist
30
+ context = 'PhantomJS'
27
31
  when :saucelabs
28
32
  initialize_saucelabs
33
+ context = 'Sauce Labs cloud service'
29
34
  when :testingbot
30
35
  initialize_testingbot
36
+ context = 'TestingBot cloud service'
31
37
  else
32
38
  if ENV["SELENIUM"] == 'remote'
33
39
  initialize_remote
40
+ context = 'Selenium Grid2'
34
41
  else
35
42
  initialize_local_browser
43
+ context = 'local instance'
36
44
  end
37
45
  end
38
46
 
39
47
  # set browser window size only if testing with a desktop web browser
40
48
  initialize_browser_size unless Capybara.current_driver == :poltergeist || Capybara.current_driver == :appium
41
49
 
42
- puts "Using #{Environ.browser.to_s} browser"
50
+ puts "Using #{Environ.browser.to_s} browser via #{context}"
43
51
  end
44
52
 
45
53
  def self.set_domain(url)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: testcentricity_web
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.9.4
4
+ version: 0.9.9.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - A.J. Mrozinski