Skip to main content

Get Value

Gets the value of the selected element from a web page.

Common Properties

  • Name - The custom name of the node.
  • Color - The custom color of the node.
  • Delay Before (sec) - Waits in seconds before executing the node.
  • Delay After (sec) - Waits in seconds after executing node.
  • Continue On Error - Automation will continue regardless of any error. The default value is false.
info

if ContinueOnError property is true, no error is caught when the project is executed even if Catch node is used.

Input

  • Page Id - Id of the opened browser page as provided by Open Browser node. This ID is generated by the Open Browser node.
  • Selector Type - Type of selector used to locate the element (XPath or CSS).
  • Selector - The selector used to locate the element.
  • Attribute - The attribute of the element that holds the desired value.

Output

  • Value - The value of the selected element.

Options

  • Wait Timeout (sec) - Maximum time in seconds for the node to wait for the element to appear on the page.

Notes

  • The Page Id must be provided by a previously executed Open Browser node
  • The Attribute field is optional. If not provided, the inner text of the selected element will be returned.
info

If you want to get an Image URL from an img element, you need to write src into the Attribute input or if you want to get the link of an a element you need to write href into the Attribute input.