We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2eeba8 commit 51ab7c2Copy full SHA for 51ab7c2
2 files changed
.github/workflows/ci.yml
@@ -102,7 +102,7 @@ jobs:
102
pip install -U pip setuptools wheel
103
pip install -U -e ".[saml]"
104
pip install -U -r requirements-test.txt
105
- pip install -U "Django~=4.2.15"
+ pip install -U "Django~=5.2.0"
106
./tests/manage.py migrate
107
108
- name: Creating configuration of organization (supports mobile verification)
browser-test/utils.js
@@ -24,7 +24,7 @@ export const executeCommand = (command, argv) => {
24
export const getDriver = async () =>
25
new Builder()
26
.forBrowser("firefox")
27
- .setFirefoxOptions(new firefox.Options().headless())
+ .setFirefoxOptions(new firefox.Options().addArguments("-headless"))
28
.build();
29
30
export const getElementByCss = async (driver, css) => {
0 commit comments