Re: [go-nuts] Selenium webdriver based testing in Go

2018-01-05 Thread Tong Sun
Thanks to everyone who shared their experiences! On Fri, Jan 5, 2018 at 3:14 AM, Simon Ritchie wrote: > I’ve used the Selenium Firefox plugin to test web servers written in Go. > It’s great for end to end testing of a web server because it doesn’t know > or care what the server is written in. I

[go-nuts] Selenium webdriver based testing in Go

2018-01-05 Thread Simon Ritchie
I’ve used the Selenium Firefox plugin to test web servers written in Go. It’s great for end to end testing of a web server because it doesn’t know or care what the server is written in. It’s only concerned with the resulting HTML. I recorded some web sessions using the plugin and can then play

Re: [go-nuts] Selenium webdriver based testing in Go

2017-12-31 Thread Jonathan Yu
I've had a lot of success with agouti, though I don't know enough about Selenium to be sure that it's what you're asking for. I used it to do browser testing of a rich internet application, with chrome driver. On Dec 31, 2017 14:56, "Tong Sun" wrote: > Hi, > > Anyone here ever looked into doing

[go-nuts] Selenium webdriver based testing in Go

2017-12-31 Thread Tong Sun
Hi, Anyone here ever looked into doing Selenium webdriver based testing in Go? If anyone has experiences before, I'd like to know your view of the whole thing. Things come to mind are, - Do you use Selenium IDE or write Selenium webdriver code directly? - Selenium IDE is very helpful, but see