Update app.py
Browse files
app.py
CHANGED
@@ -42,14 +42,14 @@ jsc = """
|
|
42 |
// Print the link
|
43 |
if (link) {
|
44 |
console.log('360p Link:', link);
|
45 |
-
return
|
46 |
} else {
|
47 |
console.log('360p link not found.');
|
48 |
}
|
49 |
}
|
50 |
|
51 |
// Call the function to find the 360p link
|
52 |
-
find360pLink();
|
53 |
"""
|
54 |
|
55 |
dls = driver.execute_script(jsc)
|
|
|
42 |
// Print the link
|
43 |
if (link) {
|
44 |
console.log('360p Link:', link);
|
45 |
+
return link
|
46 |
} else {
|
47 |
console.log('360p link not found.');
|
48 |
}
|
49 |
}
|
50 |
|
51 |
// Call the function to find the 360p link
|
52 |
+
return find360pLink();
|
53 |
"""
|
54 |
|
55 |
dls = driver.execute_script(jsc)
|