You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is one of the obvious improvements which is long awaited. We still have several dependencies on jquery:
Query selectors, like: :eq(, :visible, :contains(, and :last. We rely on those internally. This is supposed to be solved by introducing the Query Engines #567. Also we allow to pass jquery selectors as a scope, so migrating to the querySelector( would be a breaking change.
This is one of the obvious improvements which is long awaited. We still have several dependencies on jquery:
:eq(
,:visible
,:contains(
, and:last
. We rely on those internally. This is supposed to be solved by introducing the Query Engines #567. Also we allow to pass jquery selectors as ascope
, so migrating to thequerySelector(
would be a breaking change.$.attr(
- get rid of$.attr(
#618$.prop(
- get rid of$.prop(
#635$.html(
$.val(
- replacejQuery.val(
with local implementation #633$.text(
- replace usages of$.text(
with local implementation #629visitable(
also depends on the$.param(
- get rid of$.param(
#619findElementWithAssert(
,findElement(
return jquery collection. Let's deprecate, and drop these finders in favour offindOne(
andfindMany(
findElement
andfindElementWithAssert
#620The text was updated successfully, but these errors were encountered: