bddfire 1.8.2 → 1.8.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- MmEwMDk1ZmI3YzM1OWE5NDY3N2Q2OTljZDc5Njc0MTRhZDkyNGQ3Mg==
4
+ YTUzMDU5YzYxMjgwOTU3YzBjOGNiNTFiZTU3NDZhNWZkZGNkMDRlOA==
5
5
  data.tar.gz: !binary |-
6
- OTQ5NzA1OTIzZDY1NGFlYzE1OTI2YTcyNjljNDFjODFhZjI2MzFkZQ==
6
+ NTE0YTBjNzI0NGY4ZjJkZTYwOWE2MmY0NTIyYWQzYmU0NmYxYmE5YQ==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- MDg5OGVlOGI0YmU3Y2NlYTQ2YmI2NDlhMzllYTlkZDQxZjZkNGEwY2RmMzQ3
10
- ODExMGM3MmU2NWZjYjdjYjNlYjM0MzM2MDk1MGI2MWZjZTdkYWUwYTAyYjNl
11
- ZmU2ZjIyMGI0YWE2ODUzZTI3NmY0MzgwMmZmNmFkNTE0NzQwZDk=
9
+ NzE3NGI1YTE4NzY1MmYzYzg4MGY3YTA2MjU2MzcyM2VmMjkzZmY1MTNjODE3
10
+ MTVjZDAzNWExYTQwMDA1ZDE3YTZlZGY3ZTJmZDNkMjQxZDM2ZTBmYTBjNzVj
11
+ YzJjOTRiYTA4ZmEzZGUyZmEzMGUyYjk5OGU0MDMxMzJlNGIyMjk=
12
12
  data.tar.gz: !binary |-
13
- NDdmMmE5MjRmZjU4ZTg1OTQ3YzRlMGM3OGI5NWRkYWQ3N2RlZmE4MTY4NDIx
14
- ZDE5YTI5MWJhNTRiMzExZTI1NTI2ZWRhOTM1MzZjMzQxZGY0MmU4N2JiYTBk
15
- MDllZDEzOThjMzFhMDVmM2E3YmJlYzdhOGJlNmYxMDFmOTI4NTk=
13
+ NTk4MmMzN2E5MzVlYmY1ODU2OGNjMWQ4M2ZjNmU2MjQxMjJmOGRhNmZjOWVi
14
+ ODc4M2E5MGExMWQyNGMzMWE5MWIwMWVmZjBkNGRkZGU1NDBlNzAwOTJmYWMy
15
+ ODZiMDUxYjgyYWRjZGI0NTU1MTEyY2IyZmE1NTYyNjFjYjUxMjQ=
data/README.markdown CHANGED
@@ -47,38 +47,53 @@ Now, we need to run bundle install [Fix nokogiri error if you get any by using s
47
47
 
48
48
  Once installed, you can run cucumber with multiple caybara driver
49
49
 
50
- Use Selenium
50
+ ## Don't waste time writing steps. Use predefined
51
+
52
+ You can use Browser based [pre-defined-steps](predefined-steps/capybara_steps.md)
53
+ You can use headless Poltergeist based [pre-defined-steps](predefined-steps/headless_steps.md)
54
+
55
+
56
+ ##### Use Selenium Firefox
51
57
 
52
58
  $ bundle exec cucumber -p selenium
53
59
 
54
- Use Headless Poletergeist
60
+ ##### Use Headless Poletergeist
55
61
 
56
62
  $ bundle exec cucumber -p poltergeist
57
63
 
58
- Use Saucelabs : Please enter your SAUCE_USERNAME and SAUCELABS key in the env.rb file
64
+ ##### Use Chrome Driver
65
+
66
+ $ bundle exec cucumber -p chrome
67
+
68
+
69
+ ##### Use Saucelabs :
70
+ Please enter your SAUCE_USERNAME and SAUCELABS key in the env.rb file
59
71
 
60
72
  $ bundle exec cucumber -p sauce
61
73
 
62
- Use Browserstack : Please enter your BS_USERNAME and BS_KEY key in the env.rb file
74
+ ##### Use Browserstack :
75
+ Please enter your BS_USERNAME and BS_KEY key in the env.rb file
63
76
 
64
77
  $ bundle exec cucumber -p browserstak
65
78
 
66
- Use TestingBot : Please enter your TB_KEY and TB_SECRET key in the env.rb file
79
+ ##### Use TestingBot :
80
+ Please enter your TB_KEY and TB_SECRET key in the env.rb file
67
81
 
68
82
  $ bundle exec cucumber -p testingbot
69
83
 
70
- Using Appium, run Appium server in the background. You need to have iOS setup.
84
+ ##### Using Appium:
85
+ run Appium server in the background. You need to have iOS setup.
71
86
 
72
87
  $ npm install
73
88
  $ ./node_modules/.bin/appium
74
89
 
75
90
  Now run cucumber with appium andriod
76
91
 
77
- $ bundle exec cucumber -p appium_android ADB_SERIAL=serial_number
92
+ $ bundle exec cucumber -p appium_android_web ADB_SERIAL=serial_number
78
93
 
79
94
  Now run cucumber with appium iOS
80
95
 
81
- $ bundle exec cucumber -p appium_ios
96
+ $ bundle exec cucumber -p appium_ios_web
82
97
 
83
98
  ## Use Rake
84
99
 
@@ -118,10 +133,6 @@ You can run rubocop report on your project
118
133
  $ bundle exec rake rubocop
119
134
 
120
135
 
121
- ## Don't waste time writing steps. Use predefined
122
-
123
- You can use [pre-defined-steps](predefined-steps/capybara_steps.md)
124
-
125
136
  # TODO
126
137
 
127
138
  * Add more and more steps so that user won't need to write more code
@@ -1,3 +1,3 @@
1
1
  module BDDfire
2
- VERSION = "1.8.2"
2
+ VERSION = "1.8.3"
3
3
  end
@@ -8,4 +8,4 @@ selenium : DRIVER=selenium
8
8
  appium_android_web : DRIVER=appium_android
9
9
  appium_ios_web : DRIVER=appium_ios
10
10
  sauce : DRIVER=sauce
11
- chrome: DRIVER-chrome
11
+ chrome: DRIVER=chrome
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bddfire
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.2
4
+ version: 1.8.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shashikant Jagtap