driver.find_elements_by_tag_name('tr')
时间: 2024-05-20 16:16:07 浏览: 110
Ginkgo_Driver.rar_Ginkgo_Driver_ginkgo_driver.h
This line of code finds all the HTML elements with the tag name "tr" on the web page using the Selenium WebDriver. It returns a list of all the elements found with that tag name. "tr" is the tag name for table rows in HTML.
阅读全文