Skip to content

Commit 1943ffa

Browse files
authored
Fix slow mo test (#2008)
* Fix slow mo test * more generic
1 parent faec0b1 commit 1943ffa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/PuppeteerSharp.Tests/Issues/Issue0716.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public async Task ShouldWorkInSlowMo()
2323
await using (var page = await browser.NewPageAsync())
2424
{
2525
await page.GoToAsync("https://duckduckgo.com/");
26-
var input = await page.WaitForSelectorAsync("#search_form_input_homepage");
26+
var input = await page.WaitForSelectorAsync("input[type=\"text\"");
2727
await input.TypeAsync("Lorem ipsum dolor sit amet.");
2828
}
2929
}

0 commit comments

Comments
 (0)