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 7458da8 commit e24ea9eCopy full SHA for e24ea9e
seleniumbase/fixtures/base_case.py
@@ -4450,6 +4450,7 @@ def __process_recorded_actions(self):
4450
import unicodedata
4451
4452
action[1][0] = unicodedata.normalize("NFKC", action[1][0])
4453
+ action[1][0] = action[1][0].replace("\n", "\\n")
4454
method = "assert_text"
4455
if action[0] == "as_et":
4456
method = "assert_exact_text"
seleniumbase/js_code/recorder_js.py
@@ -526,6 +526,7 @@
526
});
527
document.body.addEventListener('mousedown', function (event) {
528
reset_if_recorder_undefined();
529
+ new_tab_on_new_origin();
530
if (sessionStorage.getItem('pause_recorder') === 'yes') return;
531
const d_now = Date.now();
532
el = event.target;
0 commit comments