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

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

我如何需要在下拉菜單中正確選擇項(xiàng)目?

我如何需要在下拉菜單中正確選擇項(xiàng)目?

拉丁的傳說 2024-01-28 16:06:05
我是自動(dòng)化測試新手,現(xiàn)在我正在嘗試在下拉菜單中選擇值。據(jù)我了解,我的示例中有兩個(gè)下拉菜單,但缺乏經(jīng)驗(yàn)使得很難弄清楚如何解決這個(gè)問題。我現(xiàn)在正在https://www.spicejet.com/上工作,我想做的是選擇乘客,然后單擊成人并設(shè)置應(yīng)該有多少成人。我一直在觀看一些如何選擇下拉菜單的視頻,很少有人建議使用簡單的驅(qū)動(dòng)程序并使用其他點(diǎn)擊來創(chuàng)建選擇對(duì)象并使用它。由于錯(cuò)誤,沒有寫太多代碼。另外,據(jù)我了解,我對(duì)“選擇”感到迷失,我創(chuàng)建了新對(duì)象,將驅(qū)動(dòng)程序?qū)ο髠鬟f給他并執(zhí)行操作?import org.openqa.selenium.By;import org.openqa.selenium.WebDriver;import org.openqa.selenium.chrome.ChromeDriver;import org.openqa.selenium.support.ui.Select;public class dropdown {    public static void main(String[] args) {        System.setProperty("webdriver.chrome.driver", "C:\\Program Files\\chromedriver.exe");        WebDriver driver = new ChromeDriver();        driver.get("https://www.spicejet.com/"); // URL in the browser        driver.manage().window().maximize(); // Maximize the browser        Select s = new Select(driver.findElement(By.id("ctl00_mainContent_ddl_originStation1")));        s.selectByValue("2");    }}這個(gè)有效 ->import org.openqa.selenium.By;import org.openqa.selenium.WebDriver;import org.openqa.selenium.chrome.ChromeDriver;import org.openqa.selenium.support.ui.Select;public class dropdown {    public static void main(String[] args) {        System.setProperty("webdriver.chrome.driver", "C:\\Program Files\\chromedriver.exe");        WebDriver driver = new ChromeDriver();        driver.get("https://www.spicejet.com/"); // URL in the browser        driver.manage().window().maximize(); // Maximize the browser        // Get specific area to save it as variable and check it later if we are in right web page        String verifyPage = driver.findElement(By.xpath("//span[contains(text(),'Flights')]")).getText();    }
查看完整描述

1 回答

?
慕哥9229398

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

s.selectByValue("AMD");

選擇/取消選擇“值”屬性與指定參數(shù)匹配的選項(xiàng)。更正了您的代碼。希望有所幫助。如果沒有,請(qǐng)粘貼錯(cuò)誤消息


查看完整回答
反對(duì) 回復(fù) 2024-01-28
  • 1 回答
  • 0 關(guān)注
  • 184 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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