第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

使用 Selenium Webdriver 單擊 JQUERY 元素時(shí)出現(xiàn)問題

使用 Selenium Webdriver 單擊 JQUERY 元素時(shí)出現(xiàn)問題

幕布斯6054654 2023-09-13 17:58:30
我正在嘗試從一個(gè)非常知名的網(wǎng)站單擊一些 JQUERY 元素來練習(xí) Selenium(http://the-internet.herokuapp.com/jqueryui/menu)。我想出了如何導(dǎo)航到菜單(不確定我的代碼是否是一個(gè)好的解決方案),但是我無法單擊每個(gè)最后一個(gè)子菜單選項(xiàng)(PDF、CSV、Excel)我正在嘗試如下所示:Actions builder = new Actions(driver);Action mouseOverMenu;mouseOverMenu = builder.moveToElement(driver.findElement(By.id("ui-id-2"))).build();mouseOverMenu.perform(); //accessing Enabled menu optionmouseOverMenu = builder.moveToElement(driver.findElement(By.id("ui-id-4"))).build();mouseOverMenu.perform(); //accessing Downloads submenu optionString jQuerySelector = "$('a#ui-id-6.ui-corner-all')";WebElement webElement = (WebElement) ((JavascriptExecutor) driver).executeScript("return $(" + jQuerySelector+ ").get(0);");//click() also did not workWebElement webElement = (WebElement) ((JavascriptExecutor) driver).executeScript("return $(" + jQuerySelector+ ").click();");
查看完整描述

1 回答

?
ITMISS

TA貢獻(xiàn)1871條經(jīng)驗(yàn) 獲得超8個(gè)贊

你的 JavaScript click 函數(shù)是錯(cuò)誤的。


使用下面的 JavaScript 語法


executor.executeScript("arguments[0].click();", WebElement);

下面的代碼對(duì)我有用:


    Actions builder = new Actions(driver);

    Action mouseOverMenu;


    mouseOverMenu = builder.moveToElement(driver.findElement(By.id("ui-id-2"))).build();

    mouseOverMenu.perform(); //accessing Enabled menu option


    WebDriverWait wait = new WebDriverWait(driver, 30);

    wait.until(ExpectedConditions.visibilityOfElementLocated(By.id("ui-id-4")));

    wait.until(ExpectedConditions.elementToBeClickable(By.id("ui-id-4")));


    mouseOverMenu = builder.moveToElement(driver.findElement(By.id("ui-id-4"))).build();

    mouseOverMenu.perform(); //accessing Downloads submenu option


    WebElement webElement2= driver.findElement(By.cssSelector("a#ui-id-6.ui-corner-all")); // #ui-id-6 is for pdf, #ui-id-7 csv so on

    JavascriptExecutor executor = (JavascriptExecutor)driver;

    executor.executeScript("arguments[0].click();", webElement2);


查看完整回答
反對(duì) 回復(fù) 2023-09-13
  • 1 回答
  • 0 關(guān)注
  • 92 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)