-
Notifications
You must be signed in to change notification settings - Fork 163
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
no way convert to element from javascript (so we can write our own methods that are not yet supported, for example shadow doms) #346
Comments
The code you are writing here deals with the WebdriverSession, not with the Mink API. So you are reporting it to the wrong repository (we don't maintain the WebdriverSession API, we use it) |
Okay, thanks. I thought it was something MinkSelenium2Driver hadn't exposed. (since it seems like returning that internal id would only be useful if there was another method to get the element for that internal id) |
The webdriver library we use (and that you are working with when you do |
It looks like insta click uses xpath most the way though, this is going to be invalid for shadow-roots, I dont see a way now or any time in the future for insta click to support things like shadow root Selenium does: SeleniumHQ/selenium#5869 I've had some success using pure javascript to click / set / check elements / content exists I assume MinkSelenium2Driver wont be able to return a web-elements from javascript and wont be able to support shadow-root / shadow-dom any time soon? |
Well, Mink itself relies on XPath for its driver API as well. So I don't see how this would git in Mink And I don't see support for shadow root coming anytime soon, as other drivers that don't instrument an actual browser won't support shadow DOM anyway. |
Currently Behat doesnt yet support shadow root / shadow doms (and thus mink/sel2driver cant use), so we're a bit stuck
ie, there is no way of me getting to the button as an element (and using anything that we can do with elements) :
This wouldn't be so bad, if we had a way of returning an element from javascript, since we could do something like:
However, this returns an array, like:
array(1) { ["shadow-6066-11e4-a52e-4f735466cecf"]=> string(36) "cee43f68-12e0-4d34-aa07-feb2649a107f" }
This seems to be an internal weddriver id of the element, but there is no way of converting this id in to an element (that I can see)
With a Java implementation of selenium, you can cast the returned js result like this:
WebElement returned = (WebElement) driver.executeScript("return arguments[0].shadowRoot", shardowRoot);
But I cant see a way of getting back to the element once retuned from javascript for mink/sel2driver
The text was updated successfully, but these errors were encountered: