If it's `go` failing, then up the trace level for rake
`go -t`
barancev
no, I run 'buckw run --verbose 100 //java/client/test/org/openqa/selenium/environment:webserver'
simonstewart
I think I need a Windows machine to try this out
douglasmpetti-sl has quit
anigma
quick question for those of you who develop in Java.. do you normally keep your local WebDrivers in the resources directory? Or is that frowned upon?
simonstewart
"local webdrivers"?
You mean like chromedriver and geckodriver?
I keep them in $HOME/bin and have that on my $PATH
But I guess a neater way to do it would be a docker image, since that ties the browser and the driver executable on the same machine
In a single nifty package
anigma
simonstewart: Indeed I mean chromedriver, etc...
I agree that a Docker container would be way more neater
However, I do have a senior developer at my work place that insists on us keeping the driver binaries in source code
what are your thoughts on that?
jimevans
anigma: i'm a fan of that.
(if your development process is such that it works for you)
dylanlive-sl has quit
simonstewart
So long as the browser is also in source control, I'm also a fan
(or you have some way to match driver version to browser version)
jimevans
i like being able to build and run even when i'm on a low-bandwidth connection, and don't want to have to pull down the internet
when i build\
simonstewart
Totes
100% that
jimevans
(which is why i like dependencies local to the build tree too)
dan-sl has quit
i've turned a corner on nuget for .NET development, especially since it makes it ridiculously easy to specify a local directory as your nuget repository.
anigma
well, we don't keep the browser in source control, that's for sure
simonstewart looks at jimevans suspiciousl
simonstewart
y
Keep the browser and the driver in the same kind of place
anigma
I'm pushing towards us getting Selenium Grid up and running through OpenShift
jimevans
meaning i can use the nupkg files instead of the expanded, unzipped resources, and all the .NET/visual studio tooling around nuget Just Works™
john63 has quit
john63 joined the channel
freestyledork joined the channel
john63 has quit
AlexanderOnTest has quit
jmvanel has quit
kwoding has quit
nirvdrum has quit
nirvdrum joined the channel
GodFather has quit
AlexanderOnTest joined the channel
ShekharReddy has quit
smccarthy joined the channel
ScioMin_ joined the channel
gmarichal-sl joined the channel
ionelmc joined the channel
joberloh-sl joined the channel
jsdorlus joined the channel
jsdorlus_ joined the channel
joberloh-sl
Can you send general keystrokes, not to a specific element? I am trying to check a ReCaptcha checkbox that is inaccessible through driver.FindElement, however it is possible to check the checkbox if you click a field before it, then pass in TAB, SPACE.
Right now, I can only do element.SendKeys(TAB) > element.SendKeys(SPACE), and they both get sent to the element.