whimboo i'm reading issues. :| also just ran a test suite locally and got a could not scroll element into view error.
duderonomy has quit
whimboo
dude-x: well, there are always edgecases which we haven't fixed all
dude-x
understood
whimboo
dude-x: feel free to file an issue with a tracelog and minimized code example
dude-x
well, i ran firefox on a whim; but if the various teams start looking at firefox seriously, i will file bugs.
smccarthy joined the channel
novoalg-sl joined the channel
p0deje has quit
freestyledork is now known as freefork_afk
freefork_afk is now known as freestyledork
Sparklefairy27 joined the channel
smccarthy has quit
smccarthy joined the channel
Sparklefairy27 has quit
WhereIsMySpoon has quit
simonstewart
If we could use java 11, we'd get http2 in java-land too
diemol_ has quit
diemol joined the channel
diemol has quit
dude-x
what would http2 give us for local selenium to driver communication
simonstewart
Not much right now.
But, y'know, the future!
dude-x
there's also a hyper library for python for http2
simonstewart
Alright folks, time to head home!
G'night!
simonstewart has quit
dude-x
toodles!
raul1ro joined the channel
raul1ro
hi guys
i try to add adblock to chromedriver with co.addArguments("load-extension=...\adblock.crx");
when open driver i get an error
Failed to load extension. Manifest file is missing or unreadable
mach6 has quit
someone know what i do wrong?
dude-x
try zipping everything together
and pass it a zip file
raul1ro
zipping crx file?
or folder with from extensions with all files?
novoalg-sl has quit
cdbattags has quit
cdbattags joined the channel
cdbattags has quit
cdbattags joined the channel
duderonomy joined the channel
sanscoeur joined the channel
raul1ro has quit
Jaxan9 joined the channel
Jaxan9 has quit
Popzi4 joined the channel
Popzi4 has quit
lometur26 joined the channel
tokenring joined the channel
diemol joined the channel
lometur26 has quit
diemol has quit
tokenring has quit
introom29 joined the channel
introom29 has quit
Qulu joined the channel
Qulu has quit
elgatov has quit
someone_ joined the channel
someone_
Hello is there any selenium python master? I just realized that selene wrapper for python is dropped project so what i should use as good wrapper or framework for angular base application (or some universal)?
dude-x
someone_ pytractor maybe still be around. don't know if its maintained
otherwise pytest-selenium (w/ pytest) or Nerodia
someone_
okay i will check it. I remember you said watir and nerodia
pytractor is not maintained sadly
dude-x
you can still use the idea of injecting some of the protractor code
so that it waits for events for you
and you don't have to use a lot of WebDriverWaits
someone_
hmm
but what if it will hold back selenium version? Pycharm did that when i had selene installed
kd0t joined the channel
dude-x
you can override with requirements.txt
and pinning the version
someone_
where is that requirements.txt?
dude-x
usually project root; you write it yourself
czart has quit
or do pip freeze > requirements.txt
paolo17 joined the channel
paolo17 has quit
someone_
dude-x: what does that freeze option do?
dude-x
it pins the version number
freeze just shows you the packages and version number
barancev
not maintained != bad
fork, update and maintain :)
someone_
dude-x: how should i make requirements.txt? since that freeze options doesnt show a thing
diemol joined the channel
nvm i found it!
okay so hmm
dude-x: i did change the requirements and used that freeze > requirements command but that command reverse my changes on txt file. Also even if i dont use freeze command, the changes to txt make no effect on pycharm lol?
dude-x
you will have to pip install
brrian
lucast: when is 3.14.1 going out?
I saw the changelog updated..
someone_
dude-x: from what i see... it is much harder to make good python framework than in java lol i mean selene is not going to work (just tested it) and selenide rly helped out in java. Did not checked the pytractor yet (nor nerodia).
dude-x
python is much better than java because you can bend the framework to your will
java is like straight jacket
kd0t has quit
someone_
what you mean i can bend framework? I am kinda green in deep programming stuff (thus i liked selenide, it did a huge job for me :P)
dude-x
you can always write code to do stuff outside the bounds of the framework
my wife is jealous i have a product red leather case for the phone.
i guess i have to buy her a red case.
Hounddog has quit
wrong chan, fam
Hounddog joined the channel
styl1te9 joined the channel
diemol has quit
someone_
dude-x: I tried to run simple test on pytest but i have no idea why it doesnt do it. Nor docs are clear (like do i need to make file called configuration or any file that has given code lines from docs?)
styl1te9 has quit
Guest56520 joined the channel
jimboslice-sl joined the channel
jimboslice-sl
someone_: naming is important when using pytest
Test function names need to start with "test_"
eg `def test_something()`
someone_
yea i did that like idid @pytest.fixture for firefox options and i did test_example but file itself i called Dirver.py