using xmlusing afButter** (HTML Element) Represents a anchor element '<a>'.constclass Link : Element { @NoDocnew makeFromFinder (ElemFinder elemFinder) : super(elemFinder){}new makeFromCss (Str cssSelector) : super(cssSelector){}** Returns the 'href' attribute. Str href(){ getAttr("href")}** Sends a GET request to the Bed App with the uri from the 'href' attribute. ButterResponse click(){ bedClient.get(href.toUri)}** Verify that the value of the href is equal to the given. Void verifyHrefEq(Obj expected){ verifyEq(href, expected)} @NoDocoverrideprotected XElem findElem(){ elem := super.findElemif(!elem.name.equalsIgnoreCase("a")) fail("Element is NOT a link: ", false)return elem}}