12345678910111213141516171819202122232425 |
- <?php
- class TestedWebElement extends RemoteWebElement
- {
- protected $value;
- public function __construct($value)
- {
- $this->value = $value;
- }
- public function getTagName()
- {
- return 'p';
- }
- public function getText()
- {
- return $this->value;
- }
- public function isDisplayed()
- {
- return true;
- }
- }
|