Posts by Bruno Prior • 1 point
3 posts
-
0
votes2
answers2083
viewsA: Remove infobar from Chrome when running tests with automated software
Hi, try instantiating Chrome options as follows: ChromeOptions options = new ChromeOptions(); options.AddArguments("--disable-infobars"); driver = new ChromeDriver(options); This is a case where you…
-
0
votes0
answers549
viewsQ: How to pick an element with the same properties on a page?
I’m wondering how to get an element of the kind that repeats itself inside the same page. I tried using the following Xpath’s that were validated on Firepath, but I was unsuccessful when I ran my…
-
0
votes3
answers836
viewsA: I can’t find an element for Id
To switch to Frame with an Id, you need to pass the command as follows: driver.SwitchTo().Frame(driver.FindElement(By.Id("Id_Do_Seu_Iframe")));