-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathindex.js
More file actions
24 lines (24 loc) · 1.74 KB
/
index.js
File metadata and controls
24 lines (24 loc) · 1.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
module.exports = {
click: require("./src/clickersAndTappers").click,
hoverAndClick: require("./src/clickersAndTappers").hoverAndClick,
tap: require("./src/clickersAndTappers").tap,
fillFieldWithText: require("./src/inputFieldInteractions").fillFieldWithText,
uploadFileIntoInputField: require("./src/inputFieldInteractions").uploadFileIntoInputField,
clear: require("./src/inputFieldInteractions").clear,
clearFieldAndFillItWithText: require("./src/inputFieldInteractions").clearFieldAndFillItWithText,
fillFieldWithTextAndPressEnter: require("./src/inputFieldInteractions").fillFieldWithTextAndPressEnter,
isCurrentUrlDifferentFromBaseUrl: require("./src/misc").isCurrentUrlDifferentFromBaseUrl,
scrollToElement: require("./src/misc").scrollToElement,
setTimeout: require("./src/misc").setTimeout,
waitForAlertToBePresent: require("./src/waiters").waitForAlertToBePresent,
waitForElementPresence: require("./src/waiters").waitForElementPresence,
waitForElementNotToBePresent: require("./src/waiters").waitForElementNotToBePresent,
waitForElementVisibility: require("./src/waiters").waitForElementVisibility,
waitForElementNotToBeVisible: require("./src/waiters").waitForElementNotToBeVisible,
waitForTextToBePresentInElement: require("./src/waiters").waitForTextToBePresentInElement,
waitForTextNotToBePresentInElement: require("./src/waiters").waitForTextNotToBePresentInElement,
waitForUrlToBeEqualToExpectedUrl: require("./src/waiters").waitForUrlToBeEqualToExpectedUrl,
waitForUrlNotToBeEqualToExpectedUrl: require("./src/waiters").waitForUrlNotToBeEqualToExpectedUrl,
waitForUrlToContainString: require("./src/waiters").waitForUrlToContainString,
waitForUrlNotToContainString: require("./src/waiters").waitForUrlNotToContainString
};