1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-11-23 21:54:45 +02:00

Feature/inner html element child (#82)

* SOme wokrd

* Renamed example

* Updated example
This commit is contained in:
Tim Voronov
2018-10-08 20:20:40 -04:00
committed by GitHub
parent 0004667df6
commit 05a7582bba
13 changed files with 322 additions and 209 deletions

View File

@@ -8,9 +8,9 @@ import (
/*
* Returns inner text of a matched element
* @param doc (Document) - Parent document.
* @param doc (HTMLDocument|HTMLElement) - Parent document or element.
* @param selector (String) - String of CSS selector.
* @returns (String) - Inner text if an element found, otherwise NONE.
* @returns (String) - Inner text if an element found, otherwise empty string.
*/
func InnerText(_ context.Context, args ...core.Value) (core.Value, error) {
err := core.ValidateArgs(args, 2, 2)
@@ -19,7 +19,7 @@ func InnerText(_ context.Context, args ...core.Value) (core.Value, error) {
return values.EmptyString, err
}
err = core.ValidateType(args[0], core.HTMLDocumentType)
err = core.ValidateType(args[0], core.HTMLDocumentType, core.HTMLElementType)
if err != nil {
return values.None, err
@@ -31,7 +31,7 @@ func InnerText(_ context.Context, args ...core.Value) (core.Value, error) {
return values.None, err
}
doc := args[0].(values.HTMLDocument)
doc := args[0].(values.HTMLNode)
selector := args[1].(values.String)
return doc.InnerTextBySelector(selector), nil