有在其上我需要鼠標懸停之後點擊上Element2-兩個元件即上鼠標懸停Element1->鼠標懸停>點擊元素3的元素。硒moveToElement兩次,然後單擊元件上是不工作
下面是我的代碼:
Actions actions = new Actions(driver);
actions.moveToElement(billingBtn).build().perform();
actions.moveToElement(billingconfigurationBtn).build().perform();
actions.moveToElement(billingcyclemanagementBtn).click().build().perform();
這不是爲我工作。它執行得非常快,然後它只能執行第一步。
請幫忙!
你可以嘗試創建整個'Action'鏈上調用'.build()之前。執行()'?例如。 。'actions.moveToElement(billingBtn).moveToElement(...)moveToElement(...)點擊()建()執行();' – RemcoW
@RemcoW:。試過。沒有運氣。 –