-
Notifications
You must be signed in to change notification settings - Fork 163
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
Fix selenium tests broken after bootstrap upgrade #998
Conversation
57361dc
to
5a1ffbb
Compare
Trying to download unavailable version, the latest version here https://googlechromelabs.github.io/chrome-for-testing/#stable is:
|
fb87ffd
to
97038bb
Compare
modules/core/output_modules.php
Outdated
@@ -314,7 +314,7 @@ class Hm_Output_server_content_start extends Hm_Output_Module { | |||
*/ | |||
protected function output() { | |||
return '<div class="content_title">'.$this->trans('Servers'). | |||
'<div class="list_controls"></div>'. | |||
// '<div class="list_controls"></div>'. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this comment a temporary thing? If permanent, maybe you just need to remove that line of code.
This seems like a temporary repository problem. Can dpkg return more than one available version of a package, so we can try with an older one? |
@kroky All versions are available except for Linux: |
38ae5c3
to
9a2d7d0
Compare
5662526
to
a423bd5
Compare
@kroky @marclaporte We managed to restore some selenium tests, I had a suggestion to review and merge this PR then we will create a task which will consist of continuing the resolution of the other tasks (settings.py, inline_msg.py, keyboard_shortcuts.py) which are already working locally but strangely not on github. |
Sounds good. |
Update Selenium Tests to
selenium: 4.14.0
This pull request updates the deprecated Selenium tests to use
selenium: 4.14.0
. As mentioned in the related issue #989, some tests have been commented out temporarily as they are not currently functional, and work is ongoing to address them.Additionally, the
servers.py
file will require refactoring to accommodate recent changes, the tests will be updated accordingly to reflect these changes.