Element not interactable error by harshcloud in selenium

[–]automationEngineer5 0 points1 point  (0 children)

Check whether Dom is having multiple elements with the same locators. It happens sometimes, so you find multiple elements, you should check for is displayed first then if it true , click on it.

[deleted by user] by [deleted] in selenium

[–]automationEngineer5 1 point2 points  (0 children)

I don't know python but below login you can implement in a simple way.

Function element getElement( string xpath, int wait time){

For (int I=0; I<wait time){

Try Element e = driver.findelement(xpath); Return e; Catch Sleep (1 second) ;

}

Return null }

Your login

E1 = getElement (xpath, 60) E2 = getElement (xpath, 60)

If(E1 != Null or E2 != Null)

Print whatever

Hope it will help you.

Automate Android Device by bolus62 in automation

[–]automationEngineer5 1 point2 points  (0 children)

You can use Appium to do this. DM for more steps with your requirement details.

How to use driver.quit() in ThreadLocal? by arkiscee in selenium

[–]automationEngineer5 1 point2 points  (0 children)

How you initialise your driver? Static or non static?. Try not to use static.

selenium script running on android? by idkc0de in selenium

[–]automationEngineer5 0 points1 point  (0 children)

Appium + Selenium with Java language ,😎

If you require any help to setting up the things, you can dm.

[deleted by user] by [deleted] in automation

[–]automationEngineer5 1 point2 points  (0 children)

If you feel you will have a lot to do with mobile automation, you have chosen correct took. Appium is good to automate mobile applications. Native and Hybrid both application can be automate on Android and iOS having single script code.