#懸浮定位操作
from selenium.webdrier import ActionChains
#瀏覽器實例化
#定位移動的位置賦給一個參數
ActionChains(瀏覽器).move_to_element(定位移動的位置).perform()
#下拉框
from selenium import webdriver
from selenium.webdriver.support.select import Select
fx=webdriver.Firefox()
#定位下拉框和下拉框內元素三種方法
Select(fx.find_element_by_id('xx').select_by_value('xx'))
Select(fx.find_element_by_id('xx').select_by_index('xx'))
Select(fx.find_element_by_id('xx').select_by_visible_text('xx'))