mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-16 11:37:36 +02:00
82f7317ebe
* Added WAIT_ATTR functions
15 lines
341 B
Go
15 lines
341 B
Go
package templates
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/MontFerret/ferret/pkg/drivers/cdp/eval"
|
|
"github.com/MontFerret/ferret/pkg/runtime/values"
|
|
)
|
|
|
|
func AttributeRead(name values.String) string {
|
|
n := name.String()
|
|
return fmt.Sprintf(`
|
|
el.attributes[%s] != null ? el.attributes[%s].value : null
|
|
`, eval.ParamString(n), eval.ParamString(n))
|
|
}
|