testcentricity_web 0.6.4 → 0.6.4.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: 7d1c25417263a8e482daf9053e4f28d1fc3283e7
4
- data.tar.gz: 583b938a2eaca21ead5afa17aa62a07f4303137b
3
+ metadata.gz: 58bd9d1679b6f663c4899846aec59b4872961837
4
+ data.tar.gz: 9cd449d7a5aa687253b498b9def2a3331d97e8ee
5
5
  SHA512:
6
- metadata.gz: e68237af398f2488d7392c191f0ba51a49292873313afa4c0cda5cb237181fbec10aa33441b619726b30d873c645f4aee1ceb3ef4e1f505e9e974d0d7c5c61b1
7
- data.tar.gz: bde9567c48c39a96de491e990cf1a917e22ede563efbe45210b598726c987bbc69ea7c8aa95f2c9df8da5ca96d91f5b184041a6801aa93b8091a4c29c9b3e276
6
+ metadata.gz: 7ce854490297c36cff5afc7d2feb9de2b034d2916ebabbc9bf5cb23b552f0623aa37ed25b74dd50dfb3e912931a95f0285d3954ac6cfec20811afddccfd972a8
7
+ data.tar.gz: 356e35f4a42b49cefcc26d364d16ebb1f4b682caee16a6b218a8f94b47106b3d8defa6b9bd8717a3d88f62a48ff2051ef4c7ea1d79256db4e6720cb533c87781
data/README.md CHANGED
@@ -1,13 +1,9 @@
1
1
  # TestCentricityWeb
2
2
 
3
3
  The TestCentricity™ core generic framework for desktop and mobile web site testing implements a Page Object and Data Object Model DSL for
4
- use with Cucumber, Capybara, and Selenium-Webdriver.
5
-
6
- The TestCentricity™ web gem supports running testing against the following web test targets:
7
- - locally hosted desktop browsers (Firefox, Chrome, Safari, IE, or Edge)
8
- - locally hosted emulated iOS and Android mobile browsers (using Firefox)
9
- - a "headless" browser (using Poltergeist and PhantomJS)
10
- - cloud hosted desktop or mobile web browsers using the BrowserStack, Sauce Labs, CrossBrowserTesting, or TestingBot services.
4
+ use with Cucumber, Capybara, and Selenium-Webdriver. It supports testing against locally hosted desktop browsers (Firefox, Chrome, Safari,
5
+ IE, or Edge), locally hosted emulated iOS and Android mobile browsers (using Firefox), a "headless" browser (using Poltergeist and PhantomJS),
6
+ or on cloud hosted desktop or mobile web browsers using the BrowserStack, Sauce Labs, CrossBrowserTesting, or TestingBot services.
11
7
 
12
8
 
13
9
  ## Installation
@@ -70,7 +66,7 @@ to update the affected feature file, scenarios, or step definitions.
70
66
 
71
67
  ### Defining a Page Object
72
68
 
73
- Your **Page Object** class definitions should be contained within individual *.rb* files in the ***features/support/pages*** folder of your
69
+ Your **Page Object** class definitions should be contained within individual **`.rb`** files in the **`features/support/pages`** folder of your
74
70
  test automation project. You define new **Page Objects** as shown below:
75
71
 
76
72
  class LoginPage < TestCentricity::PageObject
@@ -86,17 +82,17 @@ test automation project. You define new **Page Objects** as shown below:
86
82
  Web pages typically have names and URLs associated with them. Web pages also typically have a unique object or attribute that, when present,
87
83
  indicates that the page's contents have fully loaded.
88
84
 
89
- The ***page_name*** trait is registered with the **PageManager** object, which includes a **find_page** method that takes a page name as a
85
+ The **`page_name`** trait is registered with the **PageManager** object, which includes a **`find_page`** method that takes a page name as a
90
86
  parameter and returns an instance of the associated **Page Object**.
91
87
 
92
- A ***page_url*** trait should be defined if a page can be directly loaded using a URL. If you set Capybara's *app_host*, or specify a base URL
93
- when calling the ***WebDriverConnect.initialize_web_driver*** method, then your ***page_url*** trait can be the relative URL slug that will
94
- be appended to the base URL specified in *app_host*. Specifying a ***page_url*** trait is optional, as not all web pages can be directly loaded
88
+ A **`page_url`** trait should be defined if a page can be directly loaded using a URL. If you set Capybara's **`app_host`**, or specify a base URL
89
+ when calling the **`WebDriverConnect.initialize_web_driver`** method, then your **`page_url`** trait can be the relative URL slug that will
90
+ be appended to the base URL specified in **`app_host`**. Specifying a **`page_url`** trait is optional, as not all web pages can be directly loaded
95
91
  via a URL.
96
92
 
97
- A ***page_locator*** trait is defined if a page has a unique object or attribute that exists once the page's contents have fully loaded. The
98
- ***page_locator*** trait is a CSS or Xpath expression that uniquely identifies the object or attribute. The **verify_page_exists** method waits
99
- for the ***page_locator*** trait to exist.
93
+ A **`page_locator`** trait is defined if a page has a unique object or attribute that exists once the page's contents have fully loaded. The
94
+ **`page_locator`** trait is a CSS or Xpath expression that uniquely identifies the object or attribute. The **`verify_page_exists`** method waits
95
+ for the **`page_locator`** trait to exist.
100
96
 
101
97
  You define your page's **Traits** as shown below:
102
98
 
@@ -187,7 +183,7 @@ A **PageSection Object** may contain other **PageSection Objects**.
187
183
 
188
184
  ### Defining a PageSection Object
189
185
 
190
- Your **PageSection** class definitions should be contained within individual *.rb* files in the ***features/support/sections*** folder of
186
+ Your **PageSection** class definitions should be contained within individual **`.rb`** files in the **`features/support/sections`** folder of
191
187
  your test automation project. You define new **PageSection Objects** as shown below:
192
188
 
193
189
  class SearchForm < TestCentricity::PageSection
@@ -196,7 +192,7 @@ your test automation project. You define new **PageSection Objects** as shown be
196
192
 
197
193
  ### Adding Traits to a PageSection Object
198
194
 
199
- A **PageSection Object** typically has a root node object that encapsulates a collection of **UI Elements**. The ***section_locator*** trait
195
+ A **PageSection Object** typically has a root node object that encapsulates a collection of **UI Elements**. The **`section_locator`** trait
200
196
  specifies the CSS or Xpath expression that uniquely identifies that root node object.
201
197
 
202
198
  You define your page section's **Traits** as shown below:
@@ -280,8 +276,8 @@ One common implementation is shown below:
280
276
 
281
277
  World(WorldPages)
282
278
 
283
- The **WorldPages** module above can be defined in your *env.rb* file, or you can define it in a separate *world_pages.rb* file in the
284
- ***features/support*** folder.
279
+ The **`WorldPages`** module above can be defined in your **`env.rb`** file, or you can define it in a separate **`world_pages.rb`** file in the
280
+ **`features/support`** folder.
285
281
 
286
282
  While this approach is effective for small web applications with only a few pages (and hence few **Page Objects**), it quickly becomes
287
283
  cumbersome to manage if your web application has dozens of **Page Objects** that need to be instantiated and managed.
@@ -289,7 +285,7 @@ cumbersome to manage if your web application has dozens of **Page Objects** that
289
285
  ### Using the PageManager
290
286
 
291
287
  The **PageManager** class provides methods for supporting the instantiation and management of **Page Objects**. In the code example below,
292
- the **page_objects** method contains a hash table of your **Page Object** instances and their associated **Page Object** class names
288
+ the **`page_objects`** method contains a hash table of your **Page Object** instances and their associated **Page Object** class names
293
289
  to be instantiated by **PageManager**:
294
290
 
295
291
  module WorldPages
@@ -311,9 +307,9 @@ to be instantiated by **PageManager**:
311
307
 
312
308
  World(WorldPages)
313
309
 
314
- The **WorldPages** module above should be defined in the *world_pages.rb* file in the ***features/support*** folder.
310
+ The **`WorldPages`** module above should be defined in the **`world_pages.rb`** file in the **`features/support`** folder.
315
311
 
316
- Include the code below in your *env.rb* file to ensure that your **Page Objects** are instantiated before your Cucumber scenarios are
312
+ Include the code below in your **`env.rb`** file to ensure that your **Page Objects** are instantiated before your Cucumber scenarios are
317
313
  executed:
318
314
 
319
315
  include WorldPages
@@ -323,54 +319,54 @@ executed:
323
319
 
324
320
  ## Connecting to a Web Browser
325
321
 
326
- The ***WebDriverConnect.initialize_web_driver*** method configures the appropriate selenium-webdriver capabilities required to establish a
327
- connection with a target web browser, and sets the base host URL of the web site you are running your tests against
322
+ The **`WebDriverConnect.initialize_web_driver`** method configures the appropriate selenium-webdriver capabilities required to establish a
323
+ connection with a target web browser, and sets the base host URL of the web site you are running your tests against.
328
324
 
329
- The ***WebDriverConnect.initialize_web_driver*** method accepts a single optional parameter - the base host URL. Cucumber **Environment
330
- Variables**are used to specify the target local or remote web browser, and the various webdriver capability parameters required to configure
325
+ The **`WebDriverConnect.initialize_web_driver`** method accepts a single optional parameter - the base host URL. Cucumber **Environment
326
+ Variables** are used to specify the target local or remote web browser, and the various webdriver capability parameters required to configure
331
327
  the connection.
332
328
 
333
329
 
334
330
  ### Locally hosted desktop web browser
335
331
 
336
- For locally hosted desktop web browsers, the **WEB_BROWSER** Environment Variable must be set to one of the values from the table below:
332
+ For locally hosted desktop web browsers, the **`WEB_BROWSER`** Environment Variable must be set to one of the values from the table below:
337
333
 
338
- **WEB_BROWSER** | Desktop Platform
334
+ **`WEB_BROWSER`** | Desktop Platform
339
335
  --------------- | ----------------
340
- firefox | OS X or Windows
341
- chrome | OS X or Windows
342
- safari | OS X only
343
- ie | Windows only
344
- edge | Windows 10 only
345
- poltergeist | OS X or Windows
336
+ `firefox` | OS X or Windows
337
+ `chrome` | OS X or Windows
338
+ `safari` | OS X only
339
+ `ie` | Windows only
340
+ `edge` | Windows 10 only
341
+ `poltergeist` | OS X or Windows
346
342
 
347
343
 
348
344
  ### Locally hosted emulated mobile web browser
349
345
 
350
346
  You can also run your tests against emulated mobile device browsers within a locally hosted instance of the Firefox desktop browser. You may
351
- even specify the emulated device's screen orientation. For locally hosted emulated mobile web browsers, the **WEB_BROWSER** Environment Variable
347
+ even specify the emulated device's screen orientation. For locally hosted emulated mobile web browsers, the **`WEB_BROWSER`** Environment Variable
352
348
  must be set to one of the values from the table below:
353
349
 
354
- **WEB_BROWSER** |
350
+ **`WEB_BROWSER`** |
355
351
  --------------- |
356
- ipad |
357
- ipad_pro |
358
- iphone |
359
- iphone4 |
360
- iphone5 |
361
- iphone6 |
362
- iphone6_plus |
363
- android_phone |
364
- android_tablet |
352
+ `ipad` |
353
+ `ipad_pro` |
354
+ `iphone` |
355
+ `iphone4` |
356
+ `iphone5` |
357
+ `iphone6` |
358
+ `iphone6_plus` |
359
+ `android_phone` |
360
+ `android_tablet` |
365
361
 
366
- To specify the emulated device's screen orientation, you set the **ORIENTATION** Environment Variable to either ***portrait*** or ***landscape***.
362
+ To specify the emulated device's screen orientation, you set the **`ORIENTATION`** Environment Variable to either **`portrait`** or **`landscape`**.
367
363
 
368
364
 
369
365
  ### Remotely hosted desktop and mobile web browsers
370
366
 
371
367
  You can run your automated tests against remotely hosted desktop and mobile web browsers using the BrowserStack, CrossBrowserTesting,
372
368
  Sauce Labs, or TestingBot services. If your tests are running against a web site hosted on your local computer (localhost), or on a
373
- staging server inside your LAN, you must set the **TUNNELING** Environment Variable to true.
369
+ staging server inside your LAN, you must set the **`TUNNELING`** Environment Variable to **`true`**.
374
370
 
375
371
 
376
372
  #### Remote desktop browsers on the BrowserStack service
@@ -380,15 +376,15 @@ the table below. Refer to the [Browserstack-specific capabilities chart page](ht
380
376
 
381
377
  **Environment Variable** | Description
382
378
  --------------- | ----------------
383
- WEB_BROWSER | Must be set to ***browserstack***
384
- BS_USERNAME | Must be set to your BrowserStack account user name
385
- BS_AUTHKEY | Must be set to your BrowserStack account access key
386
- BS_OS | Must be set to ***OS X*** or ***Windows***
387
- BS_OS_VERSION | Refer to ***os_version*** capability in chart
388
- BS_BROWSER | Refer to ***browser*** capability in chart
389
- BS_VERSION | Refer to ***browser_version*** capability in chart
390
- TUNNELING | Must be ***true*** if you are testing against internal/local servers
391
- RESOLUTION | Refer to supported screen ***resolution*** capability in chart
379
+ `WEB_BROWSER` | Must be set to **`browserstack`**
380
+ `BS_USERNAME` | Must be set to your BrowserStack account user name
381
+ `BS_AUTHKEY` | Must be set to your BrowserStack account access key
382
+ `BS_OS` | Must be set to **`OS X`** or **`Windows`**
383
+ `BS_OS_VERSION` | Refer to **`os_version`** capability in chart
384
+ `BS_BROWSER` | Refer to **`browser`** capability in chart
385
+ `BS_VERSION` | Refer to **`browser_version`** capability in chart
386
+ `TUNNELING` | Must be **`true`** if you are testing against internal/local servers
387
+ `RESOLUTION` | Refer to supported screen **`resolution`** capability in chart
392
388
 
393
389
 
394
390
  #### Remote mobile browsers on the BrowserStack service
@@ -398,14 +394,14 @@ the table below. Refer to the [Browserstack-specific capabilities chart page](ht
398
394
 
399
395
  **Environment Variable** | Description
400
396
  --------------- | ----------------
401
- WEB_BROWSER | Must be set to ***browserstack***
402
- BS_USERNAME | Must be set to your BrowserStack account user name
403
- BS_AUTHKEY | Must be set to your BrowserStack account access key
404
- BS_BROWSER | Must be set to ***iPhone***, ***iPad***, or ***android***
405
- BS_PLATFORM | Must be set to ***MAC*** (for iOS) or ***ANDROID***
406
- BS_DEVICE | Refer to ***device*** capability in chart
407
- TUNNELING | Must be ***true*** if you are testing against internal/local servers
408
- ORIENTATION | set to ***portrait*** or ***landscape***
397
+ `WEB_BROWSER` | Must be set to **`browserstack`**
398
+ `BS_USERNAME` | Must be set to your BrowserStack account user name
399
+ `BS_AUTHKEY` | Must be set to your BrowserStack account access key
400
+ `BS_BROWSER` | Must be set to **`iPhone`**, **`iPad`**, or **`android`**
401
+ `BS_PLATFORM` | Must be set to **`MAC`** (for iOS) or **`ANDROID`**
402
+ `BS_DEVICE` | Refer to **`device`** capability in chart
403
+ `TUNNELING` | Must be **`true`** if you are testing against internal/local servers
404
+ `ORIENTATION` | set to **`portrait`** or **`landscape`**
409
405
 
410
406
 
411
407
 
@@ -416,12 +412,12 @@ the table below. Use the Configuration Wizard on the [Start a Selenium Test page
416
412
 
417
413
  **Environment Variable** | Description
418
414
  --------------- | ----------------
419
- WEB_BROWSER | Must be set to ***crossbrowser***
420
- CB_USERNAME | Must be set to your CrossBrowserTesting account user name or email address
421
- CB_AUTHKEY | Must be set to your CrossBrowserTesting account access key
422
- CB_OS | Refer to ***os_api_name*** capability in the sample script of the Wizard
423
- CB_BROWSER | Refer to ***browser_api_name*** capability in the sample script of the Wizard
424
- RESOLUTION | Refer to supported ***screen_resolution*** capability in the sample script of the Wizard
415
+ `WEB_BROWSER` | Must be set to **`crossbrowser`**
416
+ `CB_USERNAME` | Must be set to your CrossBrowserTesting account user name or email address
417
+ `CB_AUTHKEY` | Must be set to your CrossBrowserTesting account access key
418
+ `CB_OS` | Refer to **`os_api_name`** capability in the sample script of the Wizard
419
+ `CB_BROWSER` | Refer to **`browser_api_name`** capability in the sample script of the Wizard
420
+ `RESOLUTION` | Refer to supported **`screen_resolution`** capability in the sample script of the Wizard
425
421
 
426
422
 
427
423
  #### Remote mobile browsers on the CrossBrowserTesting service
@@ -431,12 +427,12 @@ the table below. Use the Configuration Wizard on the [Start a Selenium Test page
431
427
 
432
428
  **Environment Variable** | Description
433
429
  --------------- | ----------------
434
- WEB_BROWSER | Must be set to ***crossbrowser***
435
- CB_USERNAME | Must be set to your CrossBrowserTesting account user name or email address
436
- CB_AUTHKEY | Must be set to your CrossBrowserTesting account access key
437
- CB_PLATFORM | Refer to ***os_api_name*** capability in the sample script of the Wizard
438
- CB_BROWSER | Refer to ***browser_api_name*** capability in the sample script of the Wizard
439
- RESOLUTION | Refer to supported ***screen_resolution*** capability in the sample script of the Wizard
430
+ `WEB_BROWSER` | Must be set to **`crossbrowser`**
431
+ `CB_USERNAME` | Must be set to your CrossBrowserTesting account user name or email address
432
+ `CB_AUTHKEY` | Must be set to your CrossBrowserTesting account access key
433
+ `CB_PLATFORM` | Refer to **`os_api_name`** capability in the sample script of the Wizard
434
+ `CB_BROWSER` | Refer to **`browser_api_name`** capability in the sample script of the Wizard
435
+ `RESOLUTION` | Refer to supported **`screen_resolution`** capability in the sample script of the Wizard
440
436
 
441
437
 
442
438
 
@@ -447,13 +443,13 @@ the table below. Use the Selenium API on the [Platform Configurator page](https:
447
443
 
448
444
  **Environment Variable** | Description
449
445
  --------------- | ----------------
450
- WEB_BROWSER | Must be set to ***saucelabs***
451
- SL_USERNAME | Must be set to your Sauce Labs account user name or email address
452
- SL_AUTHKEY | Must be set to your Sauce Labs account access key
453
- SL_OS | Refer to ***platform*** capability in the Copy Code section of the Platform Configurator page
454
- SL_BROWSER | Must be set to ***chrome***, ***firefox***, ***safari***, ***internet explorer***, or ***edge***
455
- SL_VERSION | Refer to ***version*** capability in the Copy Code section of the Platform Configurator page
456
- RESOLUTION | Refer to supported ***screenResolution*** capability in the Copy Code section of the Platform Configurator page
446
+ `WEB_BROWSER` | Must be set to **`saucelabs`**
447
+ `SL_USERNAME` | Must be set to your Sauce Labs account user name or email address
448
+ `SL_AUTHKEY` | Must be set to your Sauce Labs account access key
449
+ `SL_OS` | Refer to **`platform`** capability in the Copy Code section of the Platform Configurator page
450
+ `SL_BROWSER` | Must be set to **`chrome`**, **`firefox`**, **`safari`**, **`internet explorer`**, or **`edge`**
451
+ `SL_VERSION` | Refer to **`version`** capability in the Copy Code section of the Platform Configurator page
452
+ `RESOLUTION` | Refer to supported **`screenResolution`** capability in the Copy Code section of the Platform Configurator page
457
453
 
458
454
 
459
455
  #### Remote mobile browsers on the Sauce Labs service
@@ -463,15 +459,15 @@ the table below. Use the Selenium API on the [Platform Configurator page](https:
463
459
 
464
460
  **Environment Variable** | Description
465
461
  --------------- | ----------------
466
- WEB_BROWSER | Must be set to ***saucelabs***
467
- SL_USERNAME | Must be set to your Sauce Labs account user name or email address
468
- SL_AUTHKEY | Must be set to your Sauce Labs account access key
469
- SL_PLATFORM | Refer to ***platform*** capability in the Copy Code section of the Platform Configurator page
470
- SL_BROWSER | Must be set to ***iPhone*** or ***android***
471
- SL_VERSION | Refer to ***version*** capability in the Copy Code section of the Platform Configurator page
472
- SL_DEVICE | Refer to ***deviceName*** capability in the Copy Code section of the Platform Configurator page
473
- SL_DEVICE_TYPE | If displayed, refer to ***deviceType*** capability in the Copy Code section of the Platform Configurator page
474
- ORIENTATION | Refer to ***deviceOrientation*** capability in the Copy Code section of the Platform Configurator page
462
+ `WEB_BROWSER` | Must be set to **`saucelabs`**
463
+ `SL_USERNAME` | Must be set to your Sauce Labs account user name or email address
464
+ `SL_AUTHKEY` | Must be set to your Sauce Labs account access key
465
+ `SL_PLATFORM` | Refer to **`platform`** capability in the Copy Code section of the Platform Configurator page
466
+ `SL_BROWSER` | Must be set to **`iPhone`** or **`android`**
467
+ `SL_VERSION` | Refer to **`version`** capability in the Copy Code section of the Platform Configurator page
468
+ `SL_DEVICE` | Refer to **`deviceName`** capability in the Copy Code section of the Platform Configurator page
469
+ `SL_DEVICE_TYPE` | If displayed, refer to **`deviceType`** capability in the Copy Code section of the Platform Configurator page
470
+ `ORIENTATION` | Refer to **`deviceOrientation`** capability in the Copy Code section of the Platform Configurator page
475
471
 
476
472
 
477
473
  #### Remote desktop browsers on the TestingBot service
@@ -481,24 +477,24 @@ the table below. Refer to the [TestingBot List of Available Browsers page](https
481
477
 
482
478
  **Environment Variable** | Description
483
479
  --------------- | ----------------
484
- WEB_BROWSER | Must be set to ***testingbot***
485
- TB_USERNAME | Must be set to your TestingBot account user name
486
- TB_AUTHKEY | Must be set to your TestingBot account access key
487
- TB_OS | Refer to ***platform*** capability in chart
488
- TB_BROWSER | Refer to ***browserName*** capability in chart
489
- TB_VERSION | Refer to ***version*** capability in chart
490
- TUNNELING | Must be ***true*** if you are testing against internal/local servers
491
- RESOLUTION | Possible values: 800x600, 1024x768, 1280x960, 1280x1024, 1600x1200, 1920x1200, 2560x1440
480
+ `WEB_BROWSER` | Must be set to **`testingbot`**
481
+ `TB_USERNAME` | Must be set to your TestingBot account user name
482
+ `TB_AUTHKEY` | Must be set to your TestingBot account access key
483
+ `TB_OS` | Refer to **`platform`** capability in chart
484
+ `TB_BROWSER` | Refer to **`browserName`** capability in chart
485
+ `TB_VERSION` | Refer to **`version`** capability in chart
486
+ `TUNNELING` | Must be **`true`** if you are testing against internal/local servers
487
+ `RESOLUTION` | Possible values: **`800x600`**, **`1024x768`**, **`1280x960`**, **`1280x1024`**, **`1600x1200`**, **`1920x1200`**, **`2560x1440`**
492
488
 
493
489
 
494
490
  ### Using Browser specific Profiles in cucumber.yml
495
491
 
496
492
  While you can set **Environment Variables** in the command line when invoking Cucumber, a preferred method of specifying and managing
497
493
  target web browsers is to create browser specific **Profiles** that set the appropriate **Environment Variables** for each target browser
498
- in your ***cucumber.yml*** file.
494
+ in your **`cucumber.yml`** file.
499
495
 
500
496
  Below is a list of Cucumber **Profiles** for supported locally and remotely hosted desktop and mobile web browsers (put these in in your
501
- ***cucumber.yml*** file). Before you can use the BrowserStack, CrossBrowserTesting, Sauce Labs, or TestingBot services, you will need to
497
+ **`cucumber.yml`** file). Before you can use the BrowserStack, CrossBrowserTesting, Sauce Labs, or TestingBot services, you will need to
502
498
  replace the placeholder text with your user account and authorization code for the cloud service(s) that you intend to connect with.
503
499
 
504
500
  <% desktop = "--tags ~@wip --tags ~@failing --tags @desktop --require features" %>
@@ -768,7 +764,7 @@ replace the placeholder text with your user account and authorization code for t
768
764
  tb_edge_win10: --profile tb_win10 TB_BROWSER="microsoftedge" TB_VERSION="13"
769
765
 
770
766
 
771
- To specify a locally hosted target browser using a profile at runtime, you use the flag --profile or -p followed by the profile name when
767
+ To specify a locally hosted target browser using a profile at runtime, you use the flag **`--profile`** or **`-p`** followed by the profile name when
772
768
  invoking Cucumber in the command line. For instance, the following command invokes Cucumber and specifies that a local instance of Chrome
773
769
  will be used as the target web browser:
774
770
 
@@ -1,3 +1,3 @@
1
1
  module TestCentricityWeb
2
- VERSION = '0.6.4'
2
+ VERSION = '0.6.4.1'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: testcentricity_web
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.4
4
+ version: 0.6.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - A.J. Mrozinski
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-03-29 00:00:00.000000000 Z
11
+ date: 2016-03-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler