self.wrap_driver.move_to_element(locator=const_xpath.monitor_select) #鼠標移動到某個區域
target = self.driver.find_element_by_xpath(const_xpath.insurance[1]) #下拉框中的目標元素
self.driver.execute_script("arguments[0].scrollIntoView(false);", target) #移動到下拉框中的目標元素,讓selenium可以點擊它。
