mocked_webelement.php 370 B

12345678910111213141516171819202122232425
  1. <?php
  2. class TestedWebElement extends RemoteWebElement
  3. {
  4. protected $value;
  5. public function __construct($value)
  6. {
  7. $this->value = $value;
  8. }
  9. public function getTagName()
  10. {
  11. return 'p';
  12. }
  13. public function getText()
  14. {
  15. return $this->value;
  16. }
  17. public function isDisplayed()
  18. {
  19. return true;
  20. }
  21. }