We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d76c32 commit 87dbb04Copy full SHA for 87dbb04
playwright/_impl/_selectors.py
@@ -44,6 +44,9 @@ async def register(
44
engine: Dict[str, Any] = dict(name=name, source=script)
45
if contentScript:
46
engine["contentScript"] = contentScript
47
+ print(
48
+ f"Registering selector engine: {name} with contexts {self._contextsForSelectors}"
49
+ )
50
for context in self._contextsForSelectors:
51
await context._channel.send(
52
"registerSelectorEngine", dict(selectorEngine=engine)
0 commit comments