Skip to content

Commit 262959e

Browse files
committed
Update the docs
1 parent cb7d213 commit 262959e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

help_docs/uc_mode.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,8 @@ driver.default_get(url) # Faster, but Selenium can be detected
117117
👤 Here are some examples of using those special UC Mode methods: (Use `self.driver` for `BaseCase` formats. Use `sb.driver` for `SB()` formats):
118118

119119
```python
120-
driver.uc_open_with_reconnect("https://nowsecure.nl/#relax", reconnect_time=5)
121-
driver.uc_open_with_reconnect("https://nowsecure.nl/#relax", 5)
120+
driver.uc_open_with_reconnect("https://top.gg/", reconnect_time=5)
121+
driver.uc_open_with_reconnect("https://top.gg/", 5)
122122

123123
driver.reconnect(5)
124124
driver.reconnect(timeout=5)
@@ -127,8 +127,8 @@ driver.reconnect(timeout=5)
127127
👤 You can also set the `reconnect_time` / `timeout` to `"breakpoint"` as a valid option. This allows the user to perform manual actions (until typing `c` and pressing ENTER to continue from the breakpoint):
128128

129129
```python
130-
driver.uc_open_with_reconnect("https://nowsecure.nl/#relax", reconnect_time="breakpoint")
131-
driver.uc_open_with_reconnect("https://nowsecure.nl/#relax", "breakpoint")
130+
driver.uc_open_with_reconnect("https://top.gg/", reconnect_time="breakpoint")
131+
driver.uc_open_with_reconnect("https://top.gg/", "breakpoint")
132132

133133
driver.reconnect(timeout="breakpoint")
134134
driver.reconnect("breakpoint")

0 commit comments

Comments
 (0)