0
如何在selenium webdriver中單擊網格格式的按鈕時執行代碼,代碼在通過xpath完成時顯示錯誤,classname.click ??在selenium webdriver中單擊網格格式的按鈕
如何在selenium webdriver中單擊網格格式的按鈕時執行代碼,代碼在通過xpath完成時顯示錯誤,classname.click ??在selenium webdriver中單擊網格格式的按鈕
試試這個
selenium.clickAt("//button[@id='blabla']","");
你需要先找到按鈕(可以使用XPath),然後單擊找到的元素。
實施例(紅寶石代碼)
driver.find_element(:xpath, '//xpath-here').click