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
classFoo(View):
w=Text(ParametrizedLocator('//something[@important={name|quote}]'))
v="instance of Foo"# Widget recognizes that there is a parametrized locator in args and returns a proxyv.w=="some proxy"v.w.read() # => triggers an error because it is a proxyv.w(name='foobar').__locator__() =='//something[@important="foobar"]'v.w(name='foobar').read() =="something"
The text was updated successfully, but these errors were encountered:
We already have parametrized views but a parametrized Widget would also be nice.
Current code sample:
What I would imagine:
The text was updated successfully, but these errors were encountered: