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

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

如何在 Selenium POM 中增加?

如何在 Selenium POM 中增加?

波斯汪 2022-10-12 15:55:10
我試圖通過(guò)執(zhí)行 for 循環(huán)在輸入標(biāo)簽上增加兩次來(lái)選擇 Selenium POM 中相同項(xiàng)目的兩個(gè)數(shù)量,但我的解決方案似乎不起作用。如何使用 POM 遞增兩次?這是我存儲(chǔ)頁(yè)面對(duì)象的文件:package pageObjects;import org.openqa.selenium.By;import org.openqa.selenium.Keys;import org.openqa.selenium.WebDriver;import org.openqa.selenium.WebElement;import org.openqa.selenium.support.ui.Select;public class TTPStorePage {    WebDriver driver;    public TTPStorePage(WebDriver driver) {        this.driver = driver;    }    By size= By.id("size");    By quantity= By.id("quantity_5cb788738ee07");    By reset= By.className("reset_variations");    By submit=By.cssSelector("button[type='submit']");    By remove=By.xpath("//a[contains(@data-gtm4wp_product_id,'TS-TTP']");    By contents=By.className("cart-contents");    public void selectSize(int index) {        Select drop = new Select(driver.findElement(size));        drop.selectByIndex(index);    }    // The problem child.    public void quantityItem() {        for(int i=0;i<2;i++) {            driver.findElement(quantity).sendKeys(Keys.ARROW_UP);        }    }    public WebElement resetItems() {        return driver.findElement(reset);    }    public WebElement submitButton() {        return driver.findElement(submit);    }    public WebElement removeItem() {        return driver.findElement(remove);    }    public WebElement cartContents() {        return driver.findElement(contents);    }}這是我存儲(chǔ)測(cè)試用例的文件。這是我遇到大部分問(wèn)題的地方。我試圖弄清楚如何正確地將我的項(xiàng)目增加兩個(gè)。package SimpleProgrammer;import java.io.IOException;import org.testng.annotations.Test;import resources.Base;import pageObjects.TTPProductPage;import pageObjects.TTPStorePage;    }}
查看完整描述

2 回答

?
紅糖糍粑

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

它是 INPUT 字段,只需先清除輸入字段,然后為 sendKeys 提供值。請(qǐng)取唯一的名稱 attr,您的 ID attrs 不是唯一的。


WebElement ele=driver.findElement(By.name("quantity"));

ele.clear();

ele.sendKeys("2");


查看完整回答
反對(duì) 回復(fù) 2022-10-12
?
天涯盡頭無(wú)女友

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

我查看了您嘗試訪問(wèn)的網(wǎng)頁(yè)。您嘗試TTPStorePage通過(guò)定位器在類中訪問(wèn)的微調(diào)器quantity具有動(dòng)態(tài) ID。每次加載頁(yè)面時(shí)它都會(huì)更改。您必須更改定位器策略。


嘗試使用以下定位器之一作為數(shù)量。


CSS選擇器:


By quantity = By.cssSelector("div.quantity > input");

XPath:


By quantity = By.xpath("//div[@class='quantity']/input");

此外,quantityItem您不需要 for 循環(huán)的 in 方法,因?yàn)槟梢詫⒅抵苯釉O(shè)置為您想要的值,sendKeys因?yàn)樗且粋€(gè)input元素。


嘗試這個(gè)


public void quantityItem() {

    driver.findElement(quantity).clear();

    driver.findElement(quantity).sendKeys("3");

    //pressing up arrow twice would make the spinner value 3

}



查看完整回答
反對(duì) 回復(fù) 2022-10-12
  • 2 回答
  • 0 關(guān)注
  • 111 瀏覽
慕課專欄
更多

添加回答

舉報(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)