We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bab7df7 commit 5ba85ecCopy full SHA for 5ba85ec
lib/appium_lib/driver.rb
@@ -55,7 +55,8 @@ class Spec < Test
55
module Appium
56
REQUIRED_VERSION_XCUITEST = '1.6.0'.freeze
57
58
- # Load arbitrary text (toml format)
+ # Load arbitrary text ([toml format](https://github.com/toml-lang/toml))
59
+ # The toml is parsed by https://github.com/fbernier/tomlrb .
60
#
61
# ```
62
# [caps]
@@ -76,7 +77,7 @@ def self.load_settings(opts = {})
76
77
raise 'opts must not be empty' if opts.empty?
78
79
toml = opts[:file]
- raise 'Must pass file' unless toml
80
+ raise 'Must pass a capability file which has [caps] and [appium_lib]' unless toml
81
verbose = opts.fetch :verbose, false
82
83
Appium::Logger.info "appium settings path: #{toml}" if verbose
0 commit comments