[Webkit-unassigned] [Bug 212521] New: There is nothing happens after click() on elements inside of <footer> html using Selenium WebDriver.
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Fri May 29 05:29:33 PDT 2020
https://bugs.webkit.org/show_bug.cgi?id=212521
Bug ID: 212521
Summary: There is nothing happens after click() on elements
inside of <footer> html using Selenium WebDriver.
Product: WebKit
Version: Safari 13
Hardware: Macintosh
OS: macOS 10.15
Status: NEW
Severity: Major
Priority: P2
Component: WebDriver
Assignee: webkit-unassigned at lists.webkit.org
Reporter: symonovakateryna at gmail.com
CC: bburg at apple.com
Created attachment 400573
--> https://bugs.webkit.org/attachment.cgi?id=400573&action=review
webdriver returns - true for isDisplayed() and for isEnabled()
In case link or button or any other element which is clickable located inside of <footer> html element - webElement.click() -does not work correct -> there is no exception just nothing.
In case to perform the click on element using JS -> it works.
I've supposed it's some issue in Project code , but I checked this functionality on github.com and apple.com websites - result the same - after click() on the such elements - nothing happens
Please see attachments
and just so simple code just for checking
public static void main(String[] args) {
WebDriver webDriver = new SafariDriver();
webDriver.get("https://www.apple.com/tv/");
webDriver.findElement(By.xpath("//footer//a[@href = '/mac/']")).click();
// u can add this line here to have time to see or use debug mode as I --- Thread.sleep(10000);
webDriver.quit();
}
Mac OS 10.15.4, 10.15.5
Safari version 13.1
SeleniumWebDriver - 3.14 (last stabled)
Code based Java 8
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20200529/e861743b/attachment.htm>
More information about the webkit-unassigned
mailing list