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 +8 -8
- data/README.markdown +23 -12
- data/lib/bddfire/version.rb +1 -1
- data/scaffold/config_files/cucumber.yml +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
YTUzMDU5YzYxMjgwOTU3YzBjOGNiNTFiZTU3NDZhNWZkZGNkMDRlOA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NTE0YTBjNzI0NGY4ZjJkZTYwOWE2MmY0NTIyYWQzYmU0NmYxYmE5YQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
NzE3NGI1YTE4NzY1MmYzYzg4MGY3YTA2MjU2MzcyM2VmMjkzZmY1MTNjODE3
|
10
|
+
MTVjZDAzNWExYTQwMDA1ZDE3YTZlZGY3ZTJmZDNkMjQxZDM2ZTBmYTBjNzVj
|
11
|
+
YzJjOTRiYTA4ZmEzZGUyZmEzMGUyYjk5OGU0MDMxMzJlNGIyMjk=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
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
|
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
|
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 :
|
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 :
|
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
|
-
|
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
|
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
|
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
|
data/lib/bddfire/version.rb
CHANGED