Open tsuemura opened 10 months ago
@tsuemura may you share some showcases of this feature? Cause I remembered we have getWebElements and using customLocator plugin. Or maybe I haven't got what you're aiming for.
@kobenguyent Good point. I added an example on the description. Does it makes sense to you?
Thank you @tsuemura I just went through the codeceptjs and noticed this.
Does it help you to locate the desired element after you had the returned web elements?
Now we expose the WebElements that are returned by the WebHelper and you could make the subsequence actions on them.
// Playwright helper would return the Locator
I.amOnPage('/form/focus_blur_elements');
const webElements = await I.grabWebElements('#button');
webElements[0].click();
@kobenguyent
That's an option. However, I personally don't love to use webElements[0].click()
because webElement does not click itself - I want to keep the excellent syntax of "I do something" as the same as the other CodeceptJS methods. But if I understand correctly, methods like I.click()
do not take web elements as the argument.
This issue is stale because it has been open for 90 days with no activity.
@kobenguyent can we close this with support of pw
locators in latest release?
or it is something different?
I guess the request from @tsuemura is something like supporting the finding elements by JavaScript, if I got it correctly.
@kobenguyent Right. The request is not the same as supporting pw
locators.
@tsuemura if you already have the implementation for it, just don't hesitate to submit your PR.
This issue is stale because it has been open for 90 days with no activity.
What are you trying to achieve?
https://codecept.io/locators/#custom-strategy-locators
This Custom Strategy Locators feature is currently only available on WebdriverIO. However, since it's just a JavaScript execution to return element(s), it should be technically possible to export to Playwright (and the other web automation helpers). If we can do so, it makes easier to find elements more flexibly.
Example: Look up a table cell by the header row and column
This is the example of Webdriver helper, and I would like to enable it to the Playwright helper.
What do you get instead?
Currently the CustomLocator plugin only allows to use CSS or XPath, does not allow to find elements by JavaScript.
Details
N/A