selenium-framework 1.0.13 → 1.0.14
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.
- data/README.md +4 -4
- data/lib/selenium-framework.rb +0 -1
- metadata +1 -1
data/README.md
CHANGED
@@ -53,11 +53,11 @@ In configure/selenium_framework.yml you will need to define the application
|
|
53
53
|
end
|
54
54
|
|
55
55
|
== Save the screenshot
|
56
|
-
include the below line wherever requiered and change the file name as you wish
|
57
|
-
$driver.save_screenshot($screenshot_directory_path+'/'+test_id.to_s+'-pass.png')
|
56
|
+
* include the below line wherever requiered and change the file name as you wish
|
57
|
+
* $driver.save_screenshot($screenshot_directory_path+'/'+test_id.to_s+'-pass.png')
|
58
58
|
|
59
59
|
== Report the testcase status
|
60
|
-
UserExtension.write_result_to_csv($report_file, test_id, 'google search', 'PASS', '')
|
60
|
+
* UserExtension.write_result_to_csv($report_file, test_id, 'google search', 'PASS', '')
|
61
61
|
|
62
62
|
== Report the log
|
63
63
|
def self.google(test_id)
|
@@ -80,7 +80,7 @@ In configure/selenium_framework.yml you will need to define the application
|
|
80
80
|
|
81
81
|
|
82
82
|
== Selenium Setup
|
83
|
-
Download the latest version of selenium grid from http://seleniumhq.org/download/
|
83
|
+
* Download the latest version of selenium grid from http://seleniumhq.org/download/
|
84
84
|
|
85
85
|
===Using a Custom Selenium Server
|
86
86
|
'java --jar /path/to/your/customer/selenium-server.jar'
|
data/lib/selenium-framework.rb
CHANGED