Iakiv Kramarenko

Results 153 comments of Iakiv Kramarenko

we can use ideas from [here](https://stackoverflow.com/questions/880530/can-modules-have-properties-the-same-way-that-objects-can) to implement even something like this: ``` browser.perform(command.chain.click_and_hold().pause(1).release()) ``` where chain - is a property of command module, that each time "on get" returns...

> we can use ideas from [here](https://stackoverflow.com/questions/880530/can-modules-have-properties-the-same-way-that-objects-can) > > to implement even something like this: > > ``` > browser.perform(command.chain.click_and_hold().pause(1).release()) > ``` > > where chain - is a property...

> > we can use ideas from [here](https://stackoverflow.com/questions/880530/can-modules-have-properties-the-same-way-that-objects-can) > > to implement even something like this: > > ``` > > browser.perform(command.chain.click_and_hold().pause(1).release()) > > ``` > > > > >...

> but this could work: > > ``` > browser.perform(command.chain().click_and_hold().pause(1).release()) > ``` ok... why then not to go even further: ``` browser.actions().click_and_hold().pause(1).release().perform() ``` where actions is an instance of SeleneActionsChain...

# in the past we forced browser to restart # if the config.browser_name was changed to a new version... # now we removed this to keep things KISS # and...

Hey, first of all, please, report an issue appropriately. The good report should contain error message at least and the version of selene you use. Secondly... there might be a...

It should support anything, because you can create your own browser for any case. Selene has shared browser object, already predefined for you, that you can import as: ``` from...

> Add posibility to set different capabilities for each browser session in Configuration class This will come pretty soon, in Selene 2.0.0rc1. Currently in "work in progress". Tills this will...

@vaibhavsahni009, oh, sorry for late response... seems like current implementation has sleep_time parameter, that never will be used... because if you pass custom sleep_time, the logic will be broken, won't...

The philosophy of Selene is a bit different than the Selenide's one... In Selenide the SelenideElement is a class of "all potentially useful commands", but not all commands will work...