File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
selenium-elements/src/main/java/software/xdev/selenium/elements Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change
1
+ # 1.0.4
2
+ * `` ImprovedWebElement#hasAttribute `` now waits for loading operations to complete (now calls `` prepareForOperation `` as `` getProperty `` already does)
3
+
1
4
# 1.0.3
2
5
* Removed reflection calls in `` CustomizableJsonToWebElementConverter `` as https://github.com/SeleniumHQ/selenium/issues/15884 was fixed #11
3
6
* Selenium version 4.34+ is required
Original file line number Diff line number Diff line change @@ -109,6 +109,7 @@ default void dispatchCustomEvent(
109
109
110
110
default boolean hasAttribute (final String attribute )
111
111
{
112
+ this .prepareForOperation ();
112
113
return (boolean )this .callFunction ("hasAttribute" , attribute );
113
114
}
114
115
You can’t perform that action at this time.
0 commit comments