Method: Selenium::WebDriver::DevTools::Request#==

Defined in:
lib/selenium/webdriver/devtools/request.rb

#==(other) ⇒ Object



50
51
52
53
54
55
56
57
# File 'lib/selenium/webdriver/devtools/request.rb', line 50

def ==(other)
  self.class == other.class &&
    id == other.id &&
    url == other.url &&
    method == other.method &&
    headers == other.headers &&
    post_data == other.post_data
end