Posts by Anderson Alves • 31 points
4 posts
- 
		1 votes0 answers132 viewsQ: Selenium c# - API Mass of testsGood afternoon, you guys. I have a problem, and your help is important. I have a mass of tests written in Testmanager online and my scripts are in visual studio 2015. My VS scripts log in to… 
- 
		-3 votes1 answer231 viewsQ: Compare string[] with stringI tried so: IWebElement descriptionTextXPath = driver.FindElement(By.XPath("html/body/div[1]/div[1]/div[2]/div/ng-include[1]/section/ul/li[1]/div/div/article/h4")); String h4 =… 
- 
		1 votes1 answer514 viewsA: How do I Autodetect firefox with Selenium webdriver in c# (Visual Studio)Solved, goes to C#: var ff = new FirefoxProfile(); ff.SetPreference("network.proxy.type", (int)ProxyKind.AutoDetect); var driver = new FirefoxDriver(ff); 
- 
		1 votes1 answer514 viewsQ: How do I Autodetect firefox with Selenium webdriver in c# (Visual Studio)I need to select the Autodetect before running my Firefox profile script, because in the browser’s network settings is coming how to use system settings. That way I can’t even open the system. I…