We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ee2350 commit ff5a651Copy full SHA for ff5a651
src/Uno.UITest.Puppeteer/SeleniumAppQuery.cs
@@ -63,10 +63,10 @@ IAppQuery IAppQuery.Descendant(string className)
63
IAppQuery IAppQuery.Frame(string cssSelector) => throw new System.NotImplementedException();
64
65
IAppQuery IAppQuery.Id(string id)
66
- => Apply(() => _queryItems.Add(new SearchQueryItem($"//*[id='{id}']")));
+ => Apply(() => _queryItems.Add(new SearchQueryItem($"//*[@id='{id}']")));
67
68
IAppQuery IAppQuery.Id(int id)
69
70
71
IAppQuery IAppQuery.Index(int index) => throw new System.NotImplementedException();
72
0 commit comments