testnow 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ae0cf9383a41fbc919cc941e81f1038a2aa433db
4
- data.tar.gz: 55aec4f25dc6d5ae5e16a6249876feaa9023ada1
3
+ metadata.gz: b68ad6887680969d5c0c5368a4f3fce814b3c546
4
+ data.tar.gz: b43f18122dcc3179a8d46e87edd6929bf7724a92
5
5
  SHA512:
6
- metadata.gz: e80b5ccb07185d74e869680261943257392276799c61b7621f1421841ebd731c779e7e542cd06b4a339e44e6b3ea52bfc47269193e4e3bcf865388ddd6558f0a
7
- data.tar.gz: c4cf070963d7e018c3906f871cffcf50e4d2110791c8c840a11f4501c4e48bac4cc4914658c9531fc118dc23337ffe84766eb7e8ead9103cccfd82bf15647c4b
6
+ metadata.gz: 0ba0dc401ac6c946b64670cc94ba7bf489bdbd82c2d7ecb8f69add69bafa07b9b87e0ebb6464c2a1a5bc70c91300a2645bebac9f71208797697f2d3eece2c474
7
+ data.tar.gz: e3049cb81ae6e560f6351dd585cd0d57ce36066e051b614553e6c663f83f847482d0053db1c263b1abf7d2e734d38576ef4d644011aacddb163a7a26eb9c157c
data/LICENCE CHANGED
@@ -1,20 +1,20 @@
1
- Copyright (c) 2015-2016 Kaushal Rupani
2
-
3
- Permission is hereby granted, free of charge, to any person obtaining
4
- a copy of this software and associated documentation files (the
5
- "Software"), to deal in the Software without restriction, including
6
- without limitation the rights to use, copy, modify, merge, publish,
7
- distribute, sublicense, and/or sell copies of the Software, and to
8
- permit persons to whom the Software is furnished to do so, subject to
9
- the following conditions:
10
-
11
- The above copyright notice and this permission notice shall be
12
- included in all copies or substantial portions of the Software.
13
-
14
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1
+ Copyright (c) 2015-2016 Kaushal Rupani
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md CHANGED
@@ -1,197 +1,213 @@
1
- # testnow
2
-
3
- An instant WebDriver-Ruby-Cucumber or WebDriver-Ruby-RSpec framework which has ability to do cross browser testing on any of the popular browsers, Firefox, Chrome, Opera, Internet Explorer, Safari, Android Browser. It uses the selenium-webdriver to driver the browsers already installed on your box.
4
-
5
- [NOTE] -- This gem does not provide any webdrivers or install any browsers, it is related to browser configuration and framework generation. For the tests to run, browsers should be installed and webdrivers should be present in the path variable.
6
-
7
-
8
- ## Table of Contents
9
- - [Installation](#installation)
10
- - [Install using gem command](#gem)
11
- - [Install using bundler](#bundler)
12
- - [Setup](#setup)
13
- - [Cross browser configuration using testnow for your existing project](#cross)
14
- - [Command Line Tool -- testnow command](#cli)
15
- - [Usage](#usage)
16
- - [Instantly create a fresh Cucumber-WebDriver framework](#cuke)
17
- - [Instantly create a fresh RSpec-WebDriver framework](#rspec)
18
- - [Instantly create a fresh Watir-Cucumber-WebDriver framework](#watir-cuke)
19
- - [Instantly create a fresh Watir-RSpec-WebDriver framework](#watir-rspec)
20
- - [Variables](#variables)
21
- - [BROWSER](#browser)
22
- - [TEST_URL](#test-url)
23
- - [Browsers](#browsers)
24
- - [Contributing](#contributing)
25
- - [Issues](#issues)
26
-
27
-
28
-
29
- ## Installation
30
- There are multiple ways in which you can install and use testnow gem.
31
- You must have Ruby installed before you can install this gem.
32
-
33
- ### <a name="gem" /> 1. Install using gem command
34
- Just use following command from you Terminal.
35
- ```
36
- gem install testnow
37
- ```
38
-
39
- ### <a name="bundler" /> 2. Install using bundler
40
- You can include it in your Gemfile and run bundle install
41
-
42
- ```
43
- gem 'testnow'
44
- ```
45
- then run following
46
- ```
47
- bundle install
48
- ```
49
-
50
-
51
- ## Setup
52
-
53
- ### <a name="cross"></a> 1. Cross browser configuration using testnow for your existing project
54
- When creating a Selenium-WebDriver automation suite, if one requires cross browser testing, the biggest headache is configuring all browsers mainly because configurations for every browser is done differently. This is where TestNow gem jumps in as an Asprin to cure your headache by taking care of browser configurations for you.
55
-
56
- Unlike some very famous Ruby-WebDriver tools which wraps up the WebDriver object and provides its own set of commands, TestNow gem returns you the ```driver``` object as is but initialized with any browser of your choice.
57
-
58
- In your existing automation suite, require and include the testnow gem in your config file
59
- (i.e usually env.rb for cucumber or spec_helper for rspec depending on your framework)
60
-
61
- ```
62
- require 'testnow'
63
-
64
- include TestNow # for basic webdriver framework
65
-
66
- include TestNow::Watir # for watir webdriver framework
67
- ```
68
-
69
- now as everything is required, included and ready, just put the following command in the setup method. (Setup method is where WebDriver is initialized with a certain browser and a driver object is created. i.e hooks.rb file for cucumber)
70
-
71
- ```
72
- @driver = TestNow.init
73
- ```
74
-
75
- TestNow gem uses the environment variable __BROWSER__ to detect which browser to initialize. If no value is set for this variable then firefox will be initialized by default.
76
-
77
- ### <a name="cli"></a> 2. Command Line Tool -- testnow command
78
- When you install testnow gem, it installs a command line tool which helps you to create automation frameworks with cross browser configuration in a jiffy.
79
- This command line tool has multiple command and can be seen using help
80
- Following are the list of commands:
81
-
82
- ![help, version, cucumber_now, rspec_now, watir_cucumber_now, watir_rspec_now] (/images/commands.png)
83
-
84
-
85
-
86
- ## Usage
87
-
88
- ### <a name="cuke"></a> 1. Instantly create a fresh Cucumber-WebDriver framework
89
-
90
- ```
91
- testnow cucumber_now
92
- ```
93
- This will run a series of commands and create a WebDriver-Ruby-Cucumber framework for you in a directory called __cucumber_now__. It will towards the end also ask you for gem dependency installation and it is highly recommended to say Yes. It will also create a sample scenario with a feature file and also a hooks and env file with all configurations. This scenario can be executed by simple command to see a demo of the execution.
94
-
95
- ```
96
- cd cucumber_now # Navigate into the created directory
97
-
98
- Command 1 : cucumber features # Executes using cucumber gem executable
99
- or
100
- Command 2 : rake testnow # Executes using cucumber rake task
101
- ```
102
-
103
- Use any of the command to execute the sample scenario. A beautiful, screenshot embedded report will be created by this execution to in the reports directory. It will be in html format, please double click or open in a browser to view it.
104
-
105
-
106
- ### <a name="rspec"></a> 2. Instantly create a fresh RSpec-WebDriver framework
107
-
108
- ```
109
- testnow rspec_now
110
- ```
111
-
112
- This will run a series of commands and create a WebDriver-Ruby-RSpec framework for you in a directory called __rspec_now__. It will towards the end also ask you for gem dependency installation and it is highly recommended to say Yes. It will also create a sample scenario with a spec and spec_helper file with all configuration. This scenario can be executed by simple command to see a live demo of the execution.
113
-
114
- ```
115
- cd rspec_now # Navigate into the created directory
116
-
117
- rake testnow # Executes using cucumber rake task
118
- ```
119
-
120
- Use any of the command to execute the sample spec. A beautiful report will be created by this execution to in the reports directory. It will be in html format, please double click or open in a browser to view it.
121
-
122
-
123
- ### <a name="watir-cuke"></a> 3. Instantly create a fresh Watir-Cucumber-WebDriver framework
124
-
125
- ```
126
- testnow watir_cucumber_now
127
- ```
128
- This will run a series of commands and create a WebDriver-Ruby-Cucumber framework for you in a directory called __watir_cucumber_now__. It will towards the end also ask you for gem dependency installation and it is highly recommended to say Yes. It will also create a sample scenario with a feature file and also a hooks and env file with all configurations. This scenario can be executed by simple command to see a demo of the execution.
129
-
130
- ```
131
- cd watir_cucumber_now # Navigate into the created directory
132
-
133
- Command 1 : cucumber features # Executes using cucumber gem executable
134
- or
135
- Command 2 : rake testnow # Executes using cucumber rake task
136
- ```
137
-
138
- Use any of the command to execute the sample scenario. A beautiful, screenshot embedded report will be created by this execution to in the reports directory. It will be in html format, please double click or open in a browser to view it.
139
-
140
-
141
- ### <a name="watir-rspec"></a> 4. Instantly create a fresh Watir-RSpec-WebDriver framework
142
-
143
- ```
144
- testnow rspec_now
145
- ```
146
-
147
- This will run a series of commands and create a WebDriver-Ruby-RSpec framework for you in a directory called __watir_rspec_now__. It will towards the end also ask you for gem dependency installation and it is highly recommended to say Yes. It will also create a sample scenario with a spec and spec_helper file with all configuration. This scenario can be executed by simple command to see a live demo of the execution.
148
-
149
- ```
150
- cd watir_rspec_now # Navigate into the created directory
151
-
152
- rake testnow # Executes using cucumber rake task
153
- ```
154
-
155
- Use any of the command to execute the sample spec. A beautiful report will be created by this execution to in the reports directory. It will be in html format, please double click or open in a browser to view it.
156
-
157
-
158
- ## Variables
159
- ### <a name="browser"></a> 1. BROWSER
160
- Using testnow for existing project or creating a fresh framework from the testnow command line tool, there an environment variable which is consumed by the execution which is called __BROWSER__. One can pass the browser of its choice to this variable to execute tests in different browsers. The default value is set to firefox.
161
-
162
- For example, in above sample scenario.
163
- ```
164
- rake testnow BROWSER=chrome
165
- or
166
- rake testnow BROWSER=opera
167
- ```
168
-
169
- [NOTE: This will work provided you have webdrivers placed in PATH varibale. i.e chromedriver or operadriver]
170
-
171
- ### <a name="test-url"></a> 2. TEST_URL
172
- This variable currently only works if you create a framework from testnow command line tool. This variable is called __TEST_URL__ and it gives you the power to pass the test url as a parameter. As we know that there can be multiple test environment and not necessarily we would need to run our tests on 1 environment. So to avaoid changing the code, testnow provides exposure of test url.
173
-
174
- For Example:
175
- ```
176
- rake testnow BROWSER=chrome TEST_URL=https://github.com
177
- ```
178
-
179
- ## Browsers
180
- As mentioned in the above section that there is a variable exposed called _BROWSER_ but what are the values to be passed and which OS-Browsers combinations are supported, well here is a index grid below:
181
-
182
- | OS | Chrome | Firefox (v47-) | Firefox Gecko (v48+) | IE 11/10 | Edge | Opera | PhantomJS | Chrome Mobile[2] |
183
- |---|---|---|---|---|---|---|---|---|
184
- | Linux | Supported | Supported | Supported | N/A | N/A | Supported[1] | Coming Soon! | Coming Soon! |
185
- | Mac | Supported | Supported | Supported | N/A | N/A | Supported[1] | Coming Soon! | Coming Soon! |
186
- | Windows | Supported | Supported | Supported | Supported | Supported[3]| Coming Soon! | Coming Soon! | Coming Soon! |
187
-
188
- Note:
189
- [1] Currently it is expected that the Opera webdriver binary is present inside "/usr/local/bin/operadriver, soon this path will be made customizable and exposaed as a varibale.
190
- [2] This is not another browser, it is the mobile emulation which Google Chrome proovides through its developer tools.
191
- [3] Please download the required Microsoft WebDriver as per your windows 10 build number. Windows 10 build can be checked with the `winver` command.
192
-
193
- ## Contributing
194
- Ideas and suggestions are always always most welcome. Please fork this gem code and feel free to add any updates, suggestions etc and create a pull request.
195
-
196
- ## Issues
197
- If you face any problem related to syntax, usability, documentation then please raise an [issues](https://github.com/krupani/testnow/issues), testnow is committed to respond within 24hours...
1
+ # testnow
2
+
3
+ An instant WebDriver-Ruby-Cucumber or WebDriver-Ruby-RSpec framework which has ability to do cross browser testing on any of the popular browsers, Firefox, Chrome, Opera, Internet Explorer, Safari, Android Browser. It uses the selenium-webdriver to driver the browsers already installed on your box.
4
+
5
+ [NOTE] -- This gem does not provide any webdrivers or install any browsers, it is related to browser configuration and framework generation. For the tests to run, browsers should be installed and webdrivers should be present in the path variable.
6
+
7
+
8
+ ## Table of Contents
9
+ - [Installation](#installation)
10
+ - [Install using gem command](#gem)
11
+ - [Install using bundler](#bundler)
12
+ - [Setup](#setup)
13
+ - [Cross browser configuration using testnow for your existing project](#cross)
14
+ - [Command Line Tool -- testnow command](#cli)
15
+ - [Usage](#usage)
16
+ - [Instantly create a fresh Cucumber-WebDriver framework](#cuke)
17
+ - [Instantly create a fresh RSpec-WebDriver framework](#rspec)
18
+ - [Instantly create a fresh Watir-Cucumber-WebDriver framework](#watir-cuke)
19
+ - [Instantly create a fresh Watir-RSpec-WebDriver framework](#watir-rspec)
20
+ - [Variables](#variables)
21
+ - [BROWSER](#browser)
22
+ - [TEST_URL](#test-url)
23
+ - [DEVICE](#device)
24
+ - [Browsers](#browsers)
25
+ - [Contributing](#contributing)
26
+ - [Issues](#issues)
27
+
28
+
29
+
30
+ ## Installation
31
+ There are multiple ways in which you can install and use testnow gem.
32
+ You must have Ruby installed before you can install this gem.
33
+
34
+ ### <a name="gem" /> 1. Install using gem command
35
+ Just use following command from you Terminal.
36
+ ```
37
+ gem install testnow
38
+ ```
39
+
40
+ ### <a name="bundler" /> 2. Install using bundler
41
+ You can include it in your Gemfile and run bundle install
42
+
43
+ ```
44
+ gem 'testnow'
45
+ ```
46
+ then run following
47
+ ```
48
+ bundle install
49
+ ```
50
+
51
+
52
+ ## Setup
53
+
54
+ ### <a name="cross"></a> 1. Cross browser configuration using testnow for your existing project
55
+ When creating a Selenium-WebDriver automation suite, if one requires cross browser testing, the biggest headache is configuring all browsers mainly because configurations for every browser is done differently. This is where TestNow gem jumps in as an Asprin to cure your headache by taking care of browser configurations for you.
56
+
57
+ Unlike some very famous Ruby-WebDriver tools which wraps up the WebDriver object and provides its own set of commands, TestNow gem returns you the ```driver``` object as is but initialized with any browser of your choice.
58
+
59
+ In your existing automation suite, require and include the testnow gem in your config file
60
+ (i.e usually env.rb for cucumber or spec_helper for rspec depending on your framework)
61
+
62
+ ```
63
+ require 'testnow'
64
+
65
+ include TestNow # for basic webdriver framework
66
+
67
+ include TestNow::Watir # for watir webdriver framework
68
+ ```
69
+
70
+ now as everything is required, included and ready, just put the following command in the setup method. (Setup method is where WebDriver is initialized with a certain browser and a driver object is created. i.e hooks.rb file for cucumber)
71
+
72
+ ```
73
+ @driver = TestNow.init
74
+ ```
75
+
76
+ TestNow gem uses the environment variable __BROWSER__ to detect which browser to initialize. If no value is set for this variable then firefox will be initialized by default.
77
+
78
+ ### <a name="cli"></a> 2. Command Line Tool -- testnow command
79
+ When you install testnow gem, it installs a command line tool which helps you to create automation frameworks with cross browser configuration in a jiffy.
80
+ This command line tool has multiple command and can be seen using help
81
+ Following are the list of commands:
82
+
83
+ ![help, version, cucumber_now, rspec_now, watir_cucumber_now, watir_rspec_now](https://github.com/krupani/testnow/blob/master/images/commands.png)
84
+
85
+
86
+
87
+ ## Usage
88
+
89
+ ### <a name="cuke"></a> 1. Instantly create a fresh Cucumber-WebDriver framework
90
+
91
+ ```
92
+ testnow cucumber_now
93
+ ```
94
+ This will run a series of commands and create a WebDriver-Ruby-Cucumber framework for you in a directory called __cucumber_now__. It will towards the end also ask you for gem dependency installation and it is highly recommended to say Yes. It will also create a sample scenario with a feature file and also a hooks and env file with all configurations. This scenario can be executed by simple command to see a demo of the execution.
95
+
96
+ ```
97
+ cd cucumber_now # Navigate into the created directory
98
+
99
+ Command 1 : cucumber features # Executes using cucumber gem executable
100
+ or
101
+ Command 2 : rake testnow # Executes using cucumber rake task
102
+ ```
103
+
104
+ Use any of the command to execute the sample scenario. A beautiful, screenshot embedded report will be created by this execution to in the reports directory. It will be in html format, please double click or open in a browser to view it.
105
+
106
+
107
+ ### <a name="rspec"></a> 2. Instantly create a fresh RSpec-WebDriver framework
108
+
109
+ ```
110
+ testnow rspec_now
111
+ ```
112
+
113
+ This will run a series of commands and create a WebDriver-Ruby-RSpec framework for you in a directory called __rspec_now__. It will towards the end also ask you for gem dependency installation and it is highly recommended to say Yes. It will also create a sample scenario with a spec and spec_helper file with all configuration. This scenario can be executed by simple command to see a live demo of the execution.
114
+
115
+ ```
116
+ cd rspec_now # Navigate into the created directory
117
+
118
+ rake testnow # Executes using cucumber rake task
119
+ ```
120
+
121
+ Use any of the command to execute the sample spec. A beautiful report will be created by this execution to in the reports directory. It will be in html format, please double click or open in a browser to view it.
122
+
123
+
124
+ ### <a name="watir-cuke"></a> 3. Instantly create a fresh Watir-Cucumber-WebDriver framework
125
+
126
+ ```
127
+ testnow watir_cucumber_now
128
+ ```
129
+ This will run a series of commands and create a WebDriver-Ruby-Cucumber framework for you in a directory called __watir_cucumber_now__. It will towards the end also ask you for gem dependency installation and it is highly recommended to say Yes. It will also create a sample scenario with a feature file and also a hooks and env file with all configurations. This scenario can be executed by simple command to see a demo of the execution.
130
+
131
+ ```
132
+ cd watir_cucumber_now # Navigate into the created directory
133
+
134
+ Command 1 : cucumber features # Executes using cucumber gem executable
135
+ or
136
+ Command 2 : rake testnow # Executes using cucumber rake task
137
+ ```
138
+
139
+ Use any of the command to execute the sample scenario. A beautiful, screenshot embedded report will be created by this execution to in the reports directory. It will be in html format, please double click or open in a browser to view it.
140
+
141
+
142
+ ### <a name="watir-rspec"></a> 4. Instantly create a fresh Watir-RSpec-WebDriver framework
143
+
144
+ ```
145
+ testnow rspec_now
146
+ ```
147
+
148
+ This will run a series of commands and create a WebDriver-Ruby-RSpec framework for you in a directory called __watir_rspec_now__. It will towards the end also ask you for gem dependency installation and it is highly recommended to say Yes. It will also create a sample scenario with a spec and spec_helper file with all configuration. This scenario can be executed by simple command to see a live demo of the execution.
149
+
150
+ ```
151
+ cd watir_rspec_now # Navigate into the created directory
152
+
153
+ rake testnow # Executes using cucumber rake task
154
+ ```
155
+
156
+ Use any of the command to execute the sample spec. A beautiful report will be created by this execution to in the reports directory. It will be in html format, please double click or open in a browser to view it.
157
+
158
+
159
+ ## Variables
160
+ ### <a name="browser"></a> 1. BROWSER
161
+ Using testnow for existing project or creating a fresh framework from the testnow command line tool, there an environment variable which is consumed by the execution which is called __BROWSER__. One can pass the browser of its choice to this variable to execute tests in different browsers. The default value is set to firefox.
162
+
163
+ For example, in above sample scenario.
164
+ ```
165
+ rake testnow BROWSER=chrome
166
+ or
167
+ rake testnow BROWSER=opera
168
+ ```
169
+
170
+ [NOTE: This will work provided you have webdrivers placed in PATH varibale. i.e chromedriver or operadriver]
171
+
172
+ ### <a name="test-url"></a> 2. TEST_URL
173
+ This variable currently only works if you create a framework from testnow command line tool. This variable is called __TEST_URL__ and it gives you the power to pass the test url as a parameter. As we know that there can be multiple test environment and not necessarily we would need to run our tests on 1 environment. So to avaoid changing the code, testnow provides exposure of test url.
174
+
175
+ For Example:
176
+ ```
177
+ rake testnow BROWSER=chrome TEST_URL=https://github.com
178
+ ```
179
+
180
+ ### <a name="device"></a> 3. DEVICE
181
+ This variable is only required when using Chrome Mobile emulation browser. This is a feature by Google Chrome provided for testing mobile websites how it will look on chrome browser on various devices. For eg: Google Chrome on Apple iPhone 6 Plus or Google Chrome on Samsung Galaxy Note 3. The list of devices can be found on [here](https://developers.google.com/web/tools/chrome-devtools/device-mode/). Now coming back to how to use this variable. We need to pass the DEVICE name when choosing BROWSER=mobilechrome.
182
+
183
+ For example
184
+ ```
185
+ rake testnow BROWSER=mobile_chrome DEVICE="Apple iPhone 6"
186
+ or
187
+ rake testnow BROWSER=chrome_mobile DEVICE="Samsung Galaxy Note 3"
188
+ or
189
+ rake testnow BROWSER="Mobile Chrome" DEVICE=Google_Nexus_6
190
+ ```
191
+ __Note: If certain devices are not found on your chrome then firstly update your chrome to latest version and then turn on the devices and device mode from developer tools options__
192
+
193
+
194
+
195
+ ## Browsers
196
+ As mentioned in the above section that there is a variable exposed called _BROWSER_ but what are the values to be passed and which OS-Browsers combinations are supported, well here is a index grid below:
197
+
198
+ | OS | Chrome | Firefox (v47-) | Firefox Gecko (v48+) | IE 11/10 | Edge | Opera | PhantomJS | Chrome Mobile[2] |
199
+ |---|---|---|---|---|---|---|---|---|
200
+ | Linux | Supported | Supported | Supported | N/A | N/A | Supported[1] | Coming Soon! | Supported |
201
+ | Mac | Supported | Supported | Supported | N/A | N/A | Supported[1] | Coming Soon! | Supported |
202
+ | Windows | Supported | Supported | Supported | Supported | Supported[3]| Coming Soon! | Coming Soon! | Supported |
203
+
204
+ Note:
205
+ [1] Currently it is expected that the Opera webdriver binary is present inside "/usr/local/bin/operadriver, soon this path will be made customizable and exposaed as a varibale.
206
+ [2] This is not another browser, it is the mobile emulation which Google Chrome proovides through its developer tools.
207
+ [3] Please download the required Microsoft WebDriver as per your windows 10 build number. Windows 10 build can be checked with the `winver` command.
208
+
209
+ ## Contributing
210
+ Ideas and suggestions are always always most welcome. Please fork this gem code and feel free to add any updates, suggestions etc and create a pull request.
211
+
212
+ ## Issues
213
+ If you face any problem related to syntax, usability, documentation then please raise an [issues](https://github.com/krupani/testnow/issues), testnow is committed to respond within 24hours...