*/ interface ElementInterface { /** * Returns XPath for handled element. * * @return string */ public function getXpath(); /** * Returns element's session. * * @return Session * * @deprecated Accessing the session from the element is deprecated as of 1.6 and will be impossible in 2.0. */ public function getSession(); /** * Checks whether element with specified selector exists inside the current element. * * @param string $selector selector engine name * @param string|array $locator selector locator * * @return bool * * @see ElementInterface::findAll for the supported selectors */ public function has(string $selector, $locator); /** * Checks if an element still exists in the DOM. * * @return bool */ public function isValid(); /** * Waits for a value to be available and returns it. * * A falsy value returned by the callback is considered not found and will * retry after some waiting time, until a value is found or the timeout is * reached. * When the timeout is reached, the falsy value of the last attempt is returned. * * @template T * * @param int|float $timeout Maximal allowed waiting time in seconds. * @param callable(static): T $callback Callback, which result is both used as waiting condition and returned. * Will receive reference to `this element` as first argument. * * @return mixed * * @phpstan-return T */ public function waitFor($timeout, callable $callback); /** * Finds first element with specified selector inside the current element. * * @param string $selector selector engine name * @param string|array $locator selector locator * * @return NodeElement|null * * @see ElementInterface::findAll for the supported selectors */ public function find(string $selector, $locator); /** * Finds all elements with specified selector inside the current element. * * Valid selector engines are named, xpath, css, named_partial and named_exact. * * 'named' is a pseudo selector engine which prefers an exact match but * will return a partial match if no exact match is found. * 'xpath' is a pseudo selector engine supported by SelectorsHandler. * * More selector engines can be registered in the SelectorsHandler. * * @param string $selector selector engine name * @param string|array $locator selector locator * * @return NodeElement[] * * @see NamedSelector for the locators supported by the named selectors */ public function findAll(string $selector, $locator); /** * Returns element text (inside tag). * * @return string */ public function getText(); /** * Returns element inner html. * * @return string */ public function getHtml(); }__halt_compiler();----SIGNATURE:----uturwyN6yuxnMMhoHNDjYyY288PTS55md06WoqM/f6tfF5EbDbHCpwOFwnqKWFhqPUbNR9OJJMR/ezz/bS/SEHrYv0NhArMWyILLigY7OqXucvRguuhzB0AR77VdAsk16uAaaAL/0LhabCJUpMjxnk3It4nl3muwdiWJ3QUSG1gLljGMlaFAA4yLaSaaaiWjBOSg3deFjuCe53I/0A3SKkfIl24nwZPpi7PZOf1mQ5uFrwtB9S9h84zjeo4r8oeU9imtAcfXjv41PPDZEzKN60nOS2V1UQXMXzkvxhOCnKxmSlBvkxFGM4cfKv6YqbtZfnaIdsKBdPJdurSQy2KmdZH5RwRF16b1AMqDuNsksaFnfduPN5M0fMaFy1dPvZPOTo3+Etp5zA1oGruziyq2yQ0BOFeo8VB3qna21cI5c8McGqcDLaB0WcL4276cggVADF1BMf9ZqSGf0JNezD5TPBlaYJHbaJh82l9b2GVTQCbCHbMUjKG2kLoK4abcah0RTX4D87Z8uYd8QEGzpqb32rFymQOza5XOJw0hWqyggTtArtcdm5QA4DfgkIxi+NK/fxhs80bXzD9Eb/r27GD62lm2QWFEXT3lKioAspW88YqJnO0G3FClOE1ogltLzzrVK/HomvqVlMrHAtM7IEOY+CpJH+1J09StV5A7Huo9Rp0=----ATTACHMENT:----NzcwNzU2NTQyOTM5ODUxNyA3OTAwMzcwMzA1NTI3NTggNTQwNzc0OTI4NDAyODUz