| Conditions | 1 |
| Paths | 1 |
| Total Lines | 17 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 35 | public function run($rejected = false) |
||
| 36 | { |
||
| 37 | //Wait after redirection |
||
| 38 | $simulatorElementSearch = WebDriverBy::name('password'); |
||
| 39 | $condition = WebDriverExpectedCondition::presenceOfElementLocated($simulatorElementSearch); |
||
| 40 | $this->webDriver->wait()->until($condition); |
||
| 41 | |||
| 42 | //Fill email |
||
| 43 | $fillEmail = $this->webDriver->findElement($simulatorElementSearch)->clear()->sendKeys(self::PASSWORD); |
||
| 44 | |||
| 45 | //Click on confirm |
||
| 46 | $formContinue = $this->webDriver->findElement(WebDriverBy::id('continueBtn')); |
||
| 47 | $formContinue->click(); |
||
| 48 | |||
| 49 | sleep(5); |
||
| 50 | |||
| 51 | return true; |
||
| 52 | } |
||
| 54 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths