Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

After a "click" method is executed, a drag and drop mouse action will cause all links to broken on Chrome Version 117 #273

Open
sci00099 opened this issue Oct 2, 2023 · 2 comments

Comments

@sci00099
Copy link

sci00099 commented Oct 2, 2023

Using SeleniumBasic v2.0.9.0
Using ChromeDriver Version 117.0.5938.92
Chrome Browser Version 117.0.5938.132

Testing VBA Code:

Public chromebrowser As Selenium.WebDriver

Sub test()

Dim Button_click As Selenium.WebElement
Dim Findby As Selenium.By
  
Set chromebrowser= New Selenium.WebDriver

chromebrowser.Start "Chrome"

chromebrowser.Get "https://www.qoo10.sg/"

Set Findby = New Selenium.By

If Not chromebrowser.IsElementPresent(Findby.Css("#ul_pc_header_setting_info > li:nth-child(1) > a")) Then
    Exit Sub
End If

Set Button_click = chromebrowser.FindElementByCss("#ul_pc_header_setting_info > li:nth-child(1) > a")

Button_click.Click
 
chromebrowser.Wait 500         

End Sub

After the above code is executed, at the new page i.e. login screen, if user manually drag and drop any of the links i.e. 'a' tags will cause all the remaining 'a' tags to be broken. User unable to click any links after that.

This issue is only observed in Chrome v117.

@GCuser99
Copy link

GCuser99 commented Oct 2, 2023

I confirmed that this is happening on my system as well - for both Chrome and Edge. I tried to set the "detach" browser capabilities option but could not get that to work in SeleniumBasic either. Sorry, no help here...

@sci00099
Copy link
Author

sci00099 commented Oct 3, 2023

Thanks for the quick response and confirmation. I have also logged a defect at chrome release webpage. So I guess the only way is to wait if for Chrome developers to get it fixed?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants