Implement HW5 stubs, API helpers, optional SQL/MQ helpers, and test coverage

This commit is contained in:
2026-03-09 01:40:48 +03:00
parent d1247eec18
commit 507e14bc2e
53 changed files with 2320 additions and 56 deletions

View File

@@ -0,0 +1,14 @@
package ru.kovbasa.elements;
import org.openqa.selenium.WebElement;
public class Link extends BaseElement {
public Link(WebElement element) {
super(element);
}
public String getHref() {
return element.getAttribute("href");
}
}