"Selenium+python webdriver API" check box sequence selection and sequential reverse selection

Source: Internet
Author: User
Tags xpath

 fromSeleniumImportWebdriver fromSelenium.webdriver.common.byImport byImportOs,timeDriver=Webdriver. Chrome () file_html="file:///"+ Os.path.abspath ("c:/users/xxxxxx/desktop/py_file/html/checkbox/index.html") Driver.get (file_html)#navigate to each input label by label#inputs = Driver.find_elements (by.tag_name, "input")#positioning each label via CSS#CheckBox1 = driver.find_elements (By.css_selector, "input[type= ' checkbox ']")#positioning each label with XPathCheckBox2 = Driver.find_elements (By.xpath,"//input[@type = ' checkbox ']")#loop each label for positioning forIinchCheckBox2:ifI.get_attribute ('type') =='checkbox': I.click () time.sleep (1)#print (len (checkbox1))
#反选复选框Array = range (len (checkbox2), 0,-1) forJincharray:k= J-7Print(k) driver.find_elements (By.css_selector,"input[type= ' checkbox ']"). Pop (k). Click () time.sleep (1)#driver.quit ()

"Selenium+python webdriver API" check box sequence selection and sequential reverse selection

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.