Is the current 1.6.0 version of MooTools compatible with older versions? - mootools

I'm upgrading from MooTools 1.3 to the newest 1.6.0, but when I do the date picker on my site disappears. I tried all the old compat versions of MooTools between 1.3 and 1.6.0 (1.4.5, 1.5.1 and 1.5.2) and they don't break the date picker, but as soon as I try and use the latest 1.6.0 the date picker breaks.
Is the newest version 1.6.0 compatible with older versions?
I was downloading from here: https://mootools.net/core

I found that I could customise my download here: https://mootools.net/core/builder
From there I could choose an option to download 1.6.0 with a compat layer, and that solved my issue.

Related

TWA Issue ~“Please install Chrome Stable 72 or later” for Android 11 Version

For Android Version, less than 11 My app is working fine. But for the versions of Android 11, it shows a message " Please install Chrome Stable 72 or later" when I try to open the app.
Change dependency from
implementation 'com.github.GoogleChrome:custom-tabs-client:a0f7418972'
to
implementation 'com.google.androidbrowserhelper:androidbrowserhelper:2.2.0'
Also make sure Launcher activity in manifest imported from androidbrowserhelper
com.google.androidbrowserhelper.trusted.LauncherActivity
More migration details you can found here
Trusted Web Activity was introduced in Chrome version 72. The issue there is not related to the Android version, but that the version of Chrome installed on the devices showing this message is earlier than 72.
installing the latest version of Chrome from Google Play should solve the issue.

How to update Chromium version on a cloned repository?

I have the latest version of Chromium installed globally, but right now I'm working on a cloned repository which has in node_modules\puppeteer\.local-chromium\win64-756035\chrome-win folder an older version of Chromium, and because of that I can't run e2e tests. How can I update it? I've tried to run the webdriver-manager update command but it doesn't work.
This is the error shown:
```E/launcher - session not created: This version of ChromeDriver only supports Chrome version 87
Current browser version is 83.0.4103.0 with binary path C:\Users\.....\Documents\.....\.....\node_modules\puppeteer\.local-chromium\win64-756035\chrome-win\chrome.exe
(Driver info: chromedriver=87.0.4280.20 (c99e81631faa0b2a448e658c0dbd8311fb04ddbd-refs/branch-heads/4280#{#355}),platform=Windows NT 10.0.19041 x86_64)```
Each release of puppeteer will install a specific version of Chromium in a directory similar to the path you posted. You can find out which version of Chromium will come with a version of puppeteer in their release notes.
webdriver-manager update will try to install the latest available version of the Chromium webdriver, I believe by checking the catalog of available versions, or more specifically https://chromedriver.storage.googleapis.com/LATEST_RELEASE. (Today, that's 91.0.4472.101). That version almost certainly won't correspond to the exact version of Chromium installed by puppeteer. You need to manually specify which version of the webdriver you want webdriver-manager to install by passing the flag --versions.chrome=x.y.z.
(My personal problem is that the webdriver catalog linked above does not actually include a webdriver for the release bundled with any of the recent puppeteer releases, so I'm sticking with v6.0.0 for now.)

Mobile Emulation >> Element is not clickable - after updating chrome browser and chrome driver to latest version

I am using Chrome Mobile Web Emulation.
Issue:
After updating chrome and chromedriver, click functionality is stopped working.
Stack-trace:
Not available, no exception or error is thrown.
Chrome version: Version 67.0.3396.62 (Official Build).
ChromeDriver: Version 2.39
Selenium: Version 3.12.0
Issue resolved after updating Chromedriver to 2.40.
They provide a version upgrade patch 2.40, just 7 day after releasing 2.39 version.

What Version of ChromeDriver Supports HeadlessChrome v60

I am attempting to use Chrome v60.0.3093.0 (Canary) with Selenium. I would like to also trying using it as a headless implementation. I was wondering if there is a version of the ChromeDriver that supports v60.x for use with selenium-webdriver v2.53.1
(I am doing this with MAC OS X)
You can found chrome and chromedriver versions compatibility information on official chromedriver download page: https://sites.google.com/a/chromium.org/chromedriver/downloads
There is also version selection guide for future updates. Note that this algorithm can be easily automated like in this answer.

How come readthedocs isn't showing latest version?

In the following project:
https://readthedocs.org/projects/django-guardian/versions/
Version 1.4.1 isn't showing up. Yet version 1.4.1 is tagged in github, and I have made pushes after this change.
https://github.com/django-guardian/django-guardian/releases
How do I get v1.4.1 to show up? I don't see it in the administration version options either.
(v1.4.0 doesn't show up either, however that is because I manually disabled this revision; there was an error that prevented readthedocs building this version due to a missing dependency)
That's strange 1.4.1 should be available by clicking on latest link from Django-gourdian versions page, maybe that's documentation page haven't updated yet from 1.4.0 to 1.4.1.
Anyway, you could click on latest link from Django-gourdian versions page to access documentation for Version: 1.4.0, anyway that's quite closer to latest version...
Update
After triggering builds on latest and stable. stable and latest point to Version: 1.4.1 of documentation as supposed to.