we split up service commands from browser commands
UncleGus has quit
errant_rider has quit
martynas-sl has quit
sanscoeur joined the channel
github-bot
[13www.seleniumhq.org] 15User253489 opened pull request #179: Fix link configurations and technical expressions (06master...06master) 02https://git.io/vN9Gh
smccarthy joined the channel
tk8817-sl has quit
sanscoeur joined the channel
titusfortner-sl has quit
energizer joined the channel
andylavarre has quit
smccarthy joined the channel
andylavarre joined the channel
sanscoeur joined the channel
errant_rider joined the channel
kline joined the channel
smccarthy joined the channel
therue joined the channel
p0deje joined the channel
p0deje has quit
smccarthy joined the channel
kline
I'm trying to automate the screenshotting of elements with selenium, but unlike chrome I can't get firefox to even start with webdriver+python. after requesting the firefox driver, the browser instance starts, but the code hangs for several seconds before failing out with a connection refused error
does anyone have suggestions on where to go from here?
joshin4colour-sl joined the channel
joshin4colour-sl
Can you update your Firefox version?
Your version looks fairly old, the latest version is 58
kline
im on debian so nominally "no", but ill have a poke around!
no, neither firefox nor the debian licensing version iceweasel packages have updated versions in the backports repo
but thank you, its another avenue to explore down :)
it's frustrating that chrome doesn't express the element-screenshot endpoint for webdriver - im looking at implementing it but i understand that developing anything for chromium is a herculean effort
smccarthy joined the channel
errant_rider has quit
smccarthy joined the channel
abed joined the channel
joshin4colour-sl has quit
dude-x
i am seeing issues with calling driver.get using Chrome 64 and chromedriver 2.35 or 2.34 using the python bindings. it's a bit bizarre when connecting to an IP address
spathare joined the channel
smccarth_ joined the channel
andylavarre has quit
czart_ joined the channel
kpschmidt joined the channel
kpschmidt has quit
Selenium-Github
[13selenium] 15dnknitro opened pull request #5406: Added no-cache header to HTTP GET command of RemoteWebDriver (06master...06FixRemoteWebDriverCacheCommands) 02https://git.io/vN92D
kazuaki-uraya-sl joined the channel
KaL joined the channel
Dober_ joined the channel
Dober_
Hello! I would like to understand what is the difference between visibility_of(element) and visibility_of_element_located(locator)
why do we need visibility_of(element) if visibility_of_element_located(locator) is enough
barancev|2
different parameter types (element vs locator)
Dober_
but in order to find element I still need to use locator, right?
why do I need to do 2 steps: find element by locator and then place it to visibility_of(element)
barancev|2
yes. but later some other element can be found by the same locator
whereas you want to be visible this exact element found by a locator some time ago
bytheway I'm just new to Selenium I'm trying to learn Selenium IDE
then Selenium Web Driver in the future, my question to you guys is if you have little or no programming background, Will it be hard to learn Selenium Web Driver?
hazmeister-sl
It will be hard, but it is worth the effort
once you get the basics, webdriver isn’t hard
but you will have to build some infrastructure around running your tests, which can be tricky if you haven’t done something like it before
bpascal joined the channel
well worth it though, and usually you can find a developer to pair with who can help
bpascal has quit
bpascal1 joined the channel
jerome-sl
jsanchez-sl
a python or java developer! xP jerome-sl
jerome-sl
how about PHP?
jsanchez-sl
if is your main programming language, don’t think more
jerome-sl
not my main programming language but in our company its PHP that we use on our ecommerce platform
I'm not sure if I should focus on PHP or learn Java/Python
jsanchez-sl
i work with php e-commerce too and my main is Python
for b2b tests is possible
jerome-sl
nice, I asked it because it be easier for to learn python than PHP
*might be easier I mean
jsanchez-sl
sure!
if you need something ask me
I’ll try to help u
iabbi joined the channel
alxy joined the channel
therue has quit
jimboslice-sl joined the channel
jimboslice-sl
I have an issue where an iCheck js lib component is obscuring the element I want to click.
Are there any good solutions/workarounds to it?
Lamiae joined the channel
`Element input id="inp-en-US" name="language" type="radio"> is not clickable at point (81,474.0666809082031) because another element <ins class="iCheck-helper" obscures it`
My selector works in browser console (with click()). And I can click in FF by adding the "ins" to my selector. However, in Chrome it fails with "not clickable" error.
in this example, it looks like you might to click the ins tag
I’ve never seen an ins before, but that’s what the inspector is finding
jimboslice-sl
Ok, we're using react. So this jquery lib is shoehorned in. There is a plan to replace it.
hazmeister-sl
react is a whole ’nother ball game
jimboslice-sl
Right. So clicking the ins works in FF. But not in Chrome
hazmeister-sl
as devs stop using classes and start using react properties, its get harder to automate
hmmm, try the div parent
firefox might be implicitly clicking the div in the way
jimboslice-sl
I will. I just have to figure out a good way of finding it. I have 10 radio buttons (language selector) and the unique identifier is in the input. So I have to find the parent. :pensive:
Lamiae has quit
Lamiae joined the channel
Lamiae has quit
Lamiae joined the channel
hazmeister-sl
I don’t often use xpath, but there is a good parent selector you can use