selenium|selenium 页面一些常用控件操作

selenium处理复选框radio
# radio
driver.find_element_by_xpath('//input[@value="https://www.it610.com/article/rv1"]').send_keys(Keys.SPACE)# send space
sleep(1)
driver.find_element_by_xpath('//input[@value="https://www.it610.com/article/rv2"]').click()# click
可以通过直接点击或者发送空格的方式达到选中或者反选的目的。
【selenium|selenium 页面一些常用控件操作】参考:https://blog.csdn.net/qq_27231343/article/details/52893061

    推荐阅读