Class: Xberg::BrowserConfig
- Inherits:
-
Object
- Object
- Xberg::BrowserConfig
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#backend ⇒ BrowserBackend?
Returns the value of attribute backend.
-
#block_url_patterns ⇒ Array[String]?
Returns the value of attribute block_url_patterns.
-
#capture_network_events ⇒ Boolean?
Returns the value of attribute capture_network_events.
-
#endpoint ⇒ String?
Returns the value of attribute endpoint.
-
#eval_script ⇒ String?
Returns the value of attribute eval_script.
-
#extra_wait ⇒ Integer?
Returns the value of attribute extra_wait.
-
#mode ⇒ BrowserMode?
Returns the value of attribute mode.
-
#proxy ⇒ ProxyConfig?
Returns the value of attribute proxy.
-
#robots_user_agent ⇒ String?
Returns the value of attribute robots_user_agent.
-
#session_affinity ⇒ Boolean?
Returns the value of attribute session_affinity.
-
#timeout ⇒ Integer?
Returns the value of attribute timeout.
-
#wait ⇒ BrowserWait?
Returns the value of attribute wait.
-
#wait_selector ⇒ String?
Returns the value of attribute wait_selector.
Instance Method Summary collapse
-
#initialize ⇒ BrowserConfig
constructor
A new instance of BrowserConfig.
Constructor Details
#initialize ⇒ BrowserConfig
Returns a new instance of BrowserConfig.
2241 |
# File 'sig/types.rbs', line 2241
def initialize: (?mode: BrowserMode, ?backend: BrowserBackend, ?endpoint: String, ?timeout: Integer, ?wait: BrowserWait, ?wait_selector: String, ?extra_wait: Integer, ?proxy: ProxyConfig, ?block_url_patterns: Array[String], ?eval_script: String, ?robots_user_agent: String, ?capture_network_events: bool, ?session_affinity: bool) -> void
|
Instance Attribute Details
#backend ⇒ BrowserBackend?
Returns the value of attribute backend.
2228 2229 2230 |
# File 'sig/types.rbs', line 2228 def backend @backend end |
#block_url_patterns ⇒ Array[String]?
Returns the value of attribute block_url_patterns.
2235 2236 2237 |
# File 'sig/types.rbs', line 2235 def block_url_patterns @block_url_patterns end |
#capture_network_events ⇒ Boolean?
Returns the value of attribute capture_network_events.
2238 2239 2240 |
# File 'sig/types.rbs', line 2238 def capture_network_events @capture_network_events end |
#endpoint ⇒ String?
Returns the value of attribute endpoint.
2229 2230 2231 |
# File 'sig/types.rbs', line 2229 def endpoint @endpoint end |
#eval_script ⇒ String?
Returns the value of attribute eval_script.
2236 2237 2238 |
# File 'sig/types.rbs', line 2236 def eval_script @eval_script end |
#extra_wait ⇒ Integer?
Returns the value of attribute extra_wait.
2233 2234 2235 |
# File 'sig/types.rbs', line 2233 def extra_wait @extra_wait end |
#mode ⇒ BrowserMode?
Returns the value of attribute mode.
2227 2228 2229 |
# File 'sig/types.rbs', line 2227 def mode @mode end |
#proxy ⇒ ProxyConfig?
Returns the value of attribute proxy.
2234 2235 2236 |
# File 'sig/types.rbs', line 2234 def proxy @proxy end |
#robots_user_agent ⇒ String?
Returns the value of attribute robots_user_agent.
2237 2238 2239 |
# File 'sig/types.rbs', line 2237 def robots_user_agent @robots_user_agent end |
#session_affinity ⇒ Boolean?
Returns the value of attribute session_affinity.
2239 2240 2241 |
# File 'sig/types.rbs', line 2239 def session_affinity @session_affinity end |
#timeout ⇒ Integer?
Returns the value of attribute timeout.
2230 2231 2232 |
# File 'sig/types.rbs', line 2230 def timeout @timeout end |
#wait ⇒ BrowserWait?
Returns the value of attribute wait.
2231 2232 2233 |
# File 'sig/types.rbs', line 2231 def wait @wait end |
#wait_selector ⇒ String?
Returns the value of attribute wait_selector.
2232 2233 2234 |
# File 'sig/types.rbs', line 2232 def wait_selector @wait_selector end |