@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | case self::INSTRUCTION_MOUSE_CLICK: |
73 | 73 | $element = $this->webdriver->byXpath($xpath); |
74 | 74 | if (!$element->isDisplayed()) { |
75 | - throw new ElementNotVisibleException('The element is not visible: ' . $xpath); |
|
75 | + throw new ElementNotVisibleException('The element is not visible: '.$xpath); |
|
76 | 76 | } |
77 | 77 | $element->click(); |
78 | 78 | break; |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | case self::INSTRUCTION_WAIT_FOR_NOT_EXISTS: |
87 | 87 | $this->webdriver->wait()->until( |
88 | 88 | ExpectedCondition::not( |
89 | - ExpectedCondition::elementExists( $xpath, WebDriver::BY_XPATH) |
|
89 | + ExpectedCondition::elementExists($xpath, WebDriver::BY_XPATH) |
|
90 | 90 | ) |
91 | 91 | ); |
92 | 92 | break; |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | ); |
106 | 106 | break; |
107 | 107 | default: |
108 | - throw new InvalidConfigurationException('Unknown login instruction: ' .$instruction ); |
|
108 | + throw new InvalidConfigurationException('Unknown login instruction: '.$instruction); |
|
109 | 109 | } |
110 | 110 | } |
111 | 111 |