viewtify

viewtify.ui

UIWeb

UIWeb(Viewview)

Viewview

load(StringlinkOrText)kiss.SignalUIWeb

StringlinkOrText

A page URI to load or HTML text.

kiss.SignalUIWeb

Chainable API.

Load the specified page.

awaitContentLoading()kiss.SignalUIWeb

kiss.SignalUIWeb

Wait for the page to load completely.

awaitAppearingElement(StringcssSelector)kiss.SignalUIWeb

StringcssSelector

A css selector to find.

kiss.SignalUIWeb

Chainable API.

Wait until the element specified by the CSS selector appears.

awaitDisappearingElement(StringcssSelector)kiss.SignalUIWeb

StringcssSelector

A css selector to find.

kiss.SignalUIWeb

Chainable API.

Wait until the element specified by the CSS selector disappears.

awaitAppearingText(StringcssSelector, StringexpectedText)kiss.SignalUIWeb

StringcssSelector

A css selector to find.

StringexpectedText

A text to be expected.

kiss.SignalUIWeb

Chainable API.

Wait until the element specified by the CSS selector appears.

awaitNextEvent(StringcssSelector, StringeventType)kiss.SignalUIWeb

StringcssSelector

A css selector to find.

StringeventType

An event type.

kiss.SignalUIWeb

Chainable API.

Wait until the specified event occurs on the element specified by the CSS selector.

cookie(Stringname)kiss.VariableHttpCookie

Stringname

A cookie name.

kiss.VariableHttpCookie

Retrieve the cookie with the specified name.

deleteCookies()UIWeb

UIWeb

Delete all cookies.

click(StringcssSelector)kiss.SignalUIWeb

StringcssSelector

A css selector to click.

kiss.SignalUIWeb

Chainable API.

Click on the first element specified in the CSS selector.

input(StringcssSelector, StringinputText)kiss.SignalUIWeb

StringcssSelector

A css selector to select input form.

StringinputText

A text to input.

kiss.SignalUIWeb

Chainable API.

Enter text on the first element specified by the CSS selector.

inputByHuman(StringcssSelector)kiss.SignalUIWeb

StringcssSelector

A css selector to select input form.

kiss.SignalUIWeb

Chainable API.

Enter text on the first element specified by the CSS selector. Prompts you to enter text on the page.

inputByHuman(StringcssSelector, Stringdescription)kiss.SignalUIWeb

StringcssSelector

A css selector to select input form.

Stringdescription

Description of the input.

kiss.SignalUIWeb

Chainable API.

Enter text on the first element specified by the CSS selector. The input dialog will appear.

inputByHuman(StringcssSelector, kiss.VariableStringdescription)kiss.SignalUIWeb

StringcssSelector

A css selector to select input form.

kiss.VariableStringdescription

Description of the input.

kiss.SignalUIWeb

Chainable API.

Enter text on the first element specified by the CSS selector. The input dialog will appear.

location()String

String

Retireve the current locaiton.

attribute(StringcssSelector, StringattributeName)kiss.SignalString

StringcssSelector

CSS selector to find.

StringattributeName
kiss.SignalString

Chainable API.

Returns the attribute of the first element specified by the CSS selector and attribute name.

text(StringcssSelector)kiss.SignalString

StringcssSelector

CSS selector to find.

kiss.SignalString

Chainable API.

Returns the text of the first element specified by the CSS selector.

text(StringcssSelector, ConsumerStringtext)kiss.SignalUIWeb

StringcssSelector

CSS selector to find.

ConsumerStringtext

A found text consumer.

kiss.SignalUIWeb

Chainable API.

Returns the text of the first element specified by the CSS selector.

script(Stringscript)kiss.SignalObject

Stringscript

A script to execute.

kiss.SignalObject

Chainable API.

Returns the execution result of the specified script.

script(Stringscript, Consumerresult)kiss.SignalUIWeb

Stringscript

A script to execute.

Consumerresult

A execution result.

kiss.SignalUIWeb

Chainable API.

Returns the execution result of the specified script.

vandalize()void