gpt4 book ai didi

java - 无法单击位于不同框架中的单选按钮

转载 作者:太空宇宙 更新时间:2023-11-04 13:36:30 24 4
gpt4 key购买 nike

我正在尝试单击位于不同框架(不在父框架中)的单选按钮。当我执行下面的代码时没有异常(exception),但令人惊讶的是它甚至没有单击按钮。如果您有任何想法/发现我的代码中存在任何问题,请告诉我。

import java.util.concurrent.TimeUnit;

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;

public class Practise_Radio_Checkbox {

public static void main(String[] args) throws InterruptedException {

System.setProperty("webdriver.chrome.driver", "D:\\Learning\\API\\Selenium\\chromedriver.exe");


WebDriver browser = new ChromeDriver();

browser.manage().timeouts().implicitlyWait(10L, TimeUnit.SECONDS);

browser.manage().window().maximize();


browser.get("http://www.quackit.com/html/codes/html_radio_button.cfm");

WebElement e1 = browser.findElement(By.name("result2"));


browser.switchTo().frame(e1);

browser.findElement(By.xpath("html/body/form/input[1]")).click();

browser.quit();


}

}

最佳答案

首先,它可以在 Firefox 上运行(即使没有任何显式等待):

WebDriver browser = new FirefoxDriver();

在 Chrome 上,由于某种未知原因,您必须通过 JavaScript 进行点击:

WebElement red = driver.findElement(By.xpath(".//input[@type='radio' and @value='Red']"));
JavascriptExecutor executor = (JavascriptExecutor)browser;
executor.executeScript("arguments[0].click();", red);

此外,我必须添加显式等待来等待帧出现:

WebDriverWait wait = new WebDriverWait(webDriver, 10);
WebElement iframe = wait.until(ExpectedConditions.presenceOfElementLocated(By.name("result2")));
driver.switchTo().frame(iframe);

关于java - 无法单击位于不同框架中的单选按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31639822/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com