誰もセレンのコードを介してjavascript
リンクをヒットすることができますか?セレンのJavaScriptのリンク
これは検査コードであり、リンク名はApplicationsです。
現在、私はコードのすべてのリストを使用していますが、それでもアプリケーションのリンクには当てられていません。
driver.findElement(By.id("I6")).click();
driver.findElement(By.xpath("//img[@ src='/ibm/console/images/arrow_collapsed.gif']")).click();
driver.findElement(By.xpath("//span[contains(text(),'Applications']")).click();
JavascriptExecutor js = (JavascriptExecutor) driver;
WebElement element = driver.findElement(By.xpath("//*[contains(text(),Applications')]"));
js.executeScript("arguments[0].click;", element);
WebElement element1 = driver.findElement(By.xpath("//span[contains(text(),'Applications']"));
element1.click();
driver.findElement(By.xpath("//a[@href='javascript:expandCollapse('6');]")).click();
driver.findElement(By.xpath("//div[@id='I6']/..//a[contains(text(),'Applications')]")).click();
はあなたの後に起こる、同じ問題に直面して知らせて、それを残しますそれをクリックするか、例外が発生しますか?共有ログいかなる – Andersson
検査コードの詳細を確認してください –
Applications –