change class overview proper position
parent
7f8d508c00
commit
6865409068
|
@ -1,8 +1,8 @@
|
|||
require "./page"
|
||||
|
||||
# This class represents the history of http response you sent.
|
||||
# If you send a request, mechanize saves the history.
|
||||
class Mechanize
|
||||
# This class represents the history of http response you sent.
|
||||
# If you send a request, mechanize saves the history.
|
||||
class History
|
||||
# max page size history can save. default is 100.
|
||||
# as same as `agent.max_history`.
|
||||
|
|
|
@ -5,6 +5,7 @@ require "../history"
|
|||
|
||||
class Mechanize
|
||||
module HTTP
|
||||
# This class handles web interation mechanize made.
|
||||
class Agent
|
||||
property request_headers : ::HTTP::Headers
|
||||
property context : Mechanize?
|
||||
|
|
|
@ -2,10 +2,10 @@ require "./file"
|
|||
require "./utils/element_matcher"
|
||||
require "./page/link"
|
||||
|
||||
# This class represents the result of http response.
|
||||
# If you send a request, it returns the instance of `Mechanize::Page`.
|
||||
# You can get status code, title, and page body, and search html node using css selector from page instance.
|
||||
class Mechanize
|
||||
# This class represents the result of http response.
|
||||
# If you send a request, it returns the instance of `Mechanize::Page`.
|
||||
# You can get status code, title, and page body, and search html node using css selector from page instance.
|
||||
class Page < Mechanize::File
|
||||
include Mechanize::ElementMatcher
|
||||
|
||||
|
|
Loading…
Reference in New Issue