Posts by Alexandre Videschi • 108 points
4 posts
-
3
votes3
answers711
viewsA: Drive Alert using Selenium in Java
I believe with Javascript to do, something like: driver.executeScript("window.alert('teste')") String confirmation = driver.executeScript("return window.confirm('confirmação')"); String result =…
-
0
votes1
answer262
viewsA: Input on TD/TR - Selenium
Try using By.Name("user") as a search parameter, in case you don’t have to do some tests, and you can try setting by Javascript. You can do something like: var element =…
-
-1
votes3
answers1171
viewsA: Dropdown Selenium C#
It is possible to find an element in various ways in Selenium. Particularly when there is no ID, or NAME, or when the ID or NAME are duplicated, I prefer to use the CSS Selector because I find it…
-
6
votes2
answers419
viewsQ: Export graphs from an Excel spreadsheet without Interop
I need to read and write data from Excel spreadsheets, and export some charts using C#. But I cannot use the interoperability library (Microsoft.Office.Interop) for that reason. How can I do? Does…