SetBodyStr saves plain string crawled in Page.
(body string)
| 159 | |
| 160 | // SetBodyStr saves plain string crawled in Page. |
| 161 | func (this *Page) SetBodyStr(body string) *Page { |
| 162 | this.body = body |
| 163 | return this |
| 164 | } |
| 165 | |
| 166 | // GetBodyStr returns plain string crawled. |
| 167 | func (this *Page) GetBodyStr() string { |
no outgoing calls
no test coverage detected