Skip to content
This repository has been archived by the owner on May 3, 2022. It is now read-only.

EZEE-1487: Add form scenarios #868

Merged
merged 1 commit into from
May 29, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions Features/Context/PlatformUI.php
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ protected function sleep()
*
* @param $selector selector to match,
*/
protected function waitWhileLoading($selector = self::LOADING_SELECTOR, $onlyVisible = true)
public function waitWhileLoading($selector = self::LOADING_SELECTOR, $onlyVisible = true)
{
$maxTime = time() + self::MAX_WAIT_TIMEOUT;
do {
Expand Down Expand Up @@ -319,7 +319,7 @@ protected function getElementByText($text, $selector, $textSelector = null, $bas
* @param string $textSelector Extra CSS selector for text of the element
* @param string $baseElement Element in which the search is based
*/
protected function clickElementByText($text, $selector, $textSelector = null, $baseElement = null, $index = 1)
protected function clickElementByText($text, $selector, $textSelector = null, $baseElement = null)
{
$element = $this->getElementByText($text, $selector, $textSelector, $baseElement);
if ($element && $element->isVisible()) {
Expand Down