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
With nodriver how can I search for an element inside another element like in selenium? elements don't have find() or select() methods
Example in selenium:
element = driver.find("span")
element2 = element.find("div[role='whatever']")
I can't do this in nodriver and I can't access element2 directly. I need to do it like this.
The text was updated successfully, but these errors were encountered:
Maybe it would be a better idea to call the methods that do the same thing in Selenium in the same way so that the transition is as smooth as possible... just like with send_keys() for example
With nodriver how can I search for an element inside another element like in selenium? elements don't have find() or select() methods
Example in selenium:
element = driver.find("span")
element2 = element.find("div[role='whatever']")
I can't do this in nodriver and I can't access element2 directly. I need to do it like this.
The text was updated successfully, but these errors were encountered: