Jul-14-2019, 12:04 PM
(Jul-14-2019, 11:10 AM)metulburr Wrote: AH OK, so you cant do this with selenium alone then?No,can call it as you do,but when box is open it's not html so then there is nothing to select and send to.
How it work with html.
<form> User name:<br> <input type="text" name="username"><br> User password:<br> <input type="password" name="psw"> </form>Then from Selenium can find that element bye name,Xpath,CSS...,and send character to that element.
elem = driver.find_element_by_name('username') elem.send_keys('Kent')