http://www.franchising.com/ ---> (フランチャイズ AZ) にマウスを合わせる ---> Q をクリックする必要があります
私は次のことを試しました
WebElement we1=driver.findElement(By.cssSelector("a[href='/franchises/']"));
WebElement we2=driver.findElement(By.cssSelector("a[href='/franchises/q.html']"));
String js = "arguments[0].style.height='auto'; arguments[0].style.visibility='visible';";
((JavascriptExecutor) driver).executeScript(js, we2); // I have used the script since the we2 is not visible
Actions builder=new Actions(driver);
builder.moveToElement(we1).perform();
Thread.sleep(5000);
we2.click();
誰でも私にコードを共有してみてください...それでも「ElementNotVisibleException」が発生します