X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fjcalderonzumba%2Fgastonjs%2Fsrc%2FException%2FObsoleteNode.php;fp=vendor%2Fjcalderonzumba%2Fgastonjs%2Fsrc%2FException%2FObsoleteNode.php;h=a0cdb1795e8f800aa2bdb485a5b02181fa48a90f;hp=0000000000000000000000000000000000000000;hb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae;hpb=57c063afa3f66b07c4bbddc2d6129a96d90f0aad diff --git a/vendor/jcalderonzumba/gastonjs/src/Exception/ObsoleteNode.php b/vendor/jcalderonzumba/gastonjs/src/Exception/ObsoleteNode.php new file mode 100644 index 000000000..a0cdb1795 --- /dev/null +++ b/vendor/jcalderonzumba/gastonjs/src/Exception/ObsoleteNode.php @@ -0,0 +1,29 @@ +message = $this->message(); + } + + /** + * @return string + */ + public function message() { + return "The element you are trying to interact with is either not part of the DOM, or is + not currently visible on the page (perhaps display: none is set). + It's possible the element has been replaced by another element and you meant to interact with + the new element. If so you need to do a new 'find' in order to get a reference to the + new element."; + } +}