viewtify.ui
UIWeb
UserInterface
UIWeb
,javafx.scene.web.WebView
ReferenceHolder
AnimateHelper
UIWeb
,javafx.scene.web.WebView
AssociativeHelper
DecorationHelper
UIWeb
DisableHelper
UIWeb
kiss.Disposable
PropertyAccessHelper
StyleHelper
UIWeb
,javafx.scene.web.WebView
TooltipHelper
UIWeb
,javafx.scene.web.WebView
UserActionHelper
UIWeb
UserInterfaceProvider
javafx.scene.web.WebView
VerifyHelper
UIWeb
VisibleHelper
UIWeb
UIWeb
(View
view
)
View
view
)View view |
load
(String
linkOrText
)
kiss.SignalUIWeb
String
linkOrText
)UIWeb
String linkOrText |
A page URI to load or HTML text. |
kiss.Signal |
Chainable API. |
Load the specified page.
awaitContentLoading
()
kiss.SignalUIWeb
UIWeb
kiss.Signal |
Wait for the page to load completely.
awaitAppearingElement
(String
cssSelector
)
kiss.SignalUIWeb
String
cssSelector
)UIWeb
String cssSelector |
A css selector to find. |
kiss.Signal |
Chainable API. |
Wait until the element specified by the CSS selector appears.
awaitDisappearingElement
(String
cssSelector
)
kiss.SignalUIWeb
String
cssSelector
)UIWeb
String cssSelector |
A css selector to find. |
kiss.Signal |
Chainable API. |
Wait until the element specified by the CSS selector disappears.
awaitAppearingText
(String
cssSelector
, String
expectedText
)
kiss.SignalUIWeb
String
cssSelector
, String
expectedText
)UIWeb
String cssSelector |
A css selector to find. |
String expectedText |
A text to be expected. |
kiss.Signal |
Chainable API. |
Wait until the element specified by the CSS selector appears.
awaitNextEvent
(String
cssSelector
, String
eventType
)
kiss.SignalUIWeb
String
cssSelector
, String
eventType
)UIWeb
String cssSelector |
A css selector to find. |
String eventType |
An event type. |
kiss.Signal |
Chainable API. |
Wait until the specified event occurs on the element specified by the CSS selector.
cookie
(String
name
)
kiss.VariableHttpCookie
String
name
)HttpCookie
String name |
A cookie name. |
kiss.Variable |
Retrieve the cookie with the specified name.
deleteCookies
()
UIWeb
UIWeb |
Delete all cookies.
click
(String
cssSelector
)
kiss.SignalUIWeb
String
cssSelector
)UIWeb
String cssSelector |
A css selector to click. |
kiss.Signal |
Chainable API. |
Click on the first element specified in the CSS selector.
input
(String
cssSelector
, String
inputText
)
kiss.SignalUIWeb
String
cssSelector
, String
inputText
)UIWeb
String cssSelector |
A css selector to select input form. |
String inputText |
A text to input. |
kiss.Signal |
Chainable API. |
Enter text on the first element specified by the CSS selector.
inputByHuman
(String
cssSelector
)
kiss.SignalUIWeb
String
cssSelector
)UIWeb
String cssSelector |
A css selector to select input form. |
kiss.Signal |
Chainable API. |
Enter text on the first element specified by the CSS selector. Prompts you to enter text on the page.
inputByHuman
(String
cssSelector
, String
description
)
kiss.SignalUIWeb
String
cssSelector
, String
description
)UIWeb
String cssSelector |
A css selector to select input form. |
String description |
Description of the input. |
kiss.Signal |
Chainable API. |
Enter text on the first element specified by the CSS selector. The input dialog will appear.
inputByHuman
(String
cssSelector
, kiss.VariableString
description
)
kiss.SignalUIWeb
String
cssSelector
, kiss.VariableString
description
)UIWeb
String cssSelector |
A css selector to select input form. |
kiss.Variable description |
Description of the input. |
kiss.Signal |
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
(String
cssSelector
, String
attributeName
)
kiss.SignalString
String
cssSelector
, String
attributeName
)String
String cssSelector |
CSS selector to find. |
String attributeName |
|
kiss.Signal |
Chainable API. |
Returns the attribute of the first element specified by the CSS selector and attribute name.
text
(String
cssSelector
)
kiss.SignalString
String
cssSelector
)String
String cssSelector |
CSS selector to find. |
kiss.Signal |
Chainable API. |
Returns the text of the first element specified by the CSS selector.
text
(String
cssSelector
, ConsumerString
text
)
kiss.SignalUIWeb
String
cssSelector
, ConsumerString
text
)UIWeb
String cssSelector |
CSS selector to find. |
Consumer text |
A found text consumer. |
kiss.Signal |
Chainable API. |
Returns the text of the first element specified by the CSS selector.
script
(String
script
)
kiss.SignalObject
String
script
)Object
String script |
A script to execute. |
kiss.Signal |
Chainable API. |
Returns the execution result of the specified script.
script
(String
script
, Consumer
result
)
kiss.SignalUIWeb
String
script
, Consumer
result
)UIWeb
String script |
A script to execute. |
Consumer result |
A execution result. |
kiss.Signal |
Chainable API. |
Returns the execution result of the specified script.