Happy to learn , keep it up and thanks for the information.. are planning for any appium videos as well.. would love to see those from you. Also, will you make video for some drag and drop actions as well? Thanks again 😊
@automateNow3 жыл бұрын
Thank you for the support Bhushan. 🙏 Appium is in my radar but it wilk be some time before I can get to it. Please stay tuned! I made a video in the Intro to Selenium WebDriver video series (kzbin.info/aero/PLjfhFHeUQDOj9T1cRFf5z7SqxcDPeAAjA) about drag-and-drop. Here is the link, kzbin.info/www/bejne/qKnOh5ylmsppn8k.
@joshibhushan13 жыл бұрын
@@automateNow also Drag and Drop 😊
@automateNow3 жыл бұрын
Please see my last reply containing a link to a drag-n-drop video. 🙂
@parzivelgamer49787 ай бұрын
Is there any way to right click on a element using webpath ?
@automateNow5 ай бұрын
You can right-click using the Actions API: // Locate the element you want to right-click on WebElement elementToRightClick = driver.findElement(By.xpath("element_locator")); // Initialize Actions class Actions actions = new Actions(driver); // Perform right-click (context click) on the element actions.contextClick(elementToRightClick).perform();
@DanKayser2 жыл бұрын
Thanks for sharing your knowledge, recently I've been learning about Selenium and your video was halpful, btw I'm using it on Python so when I check the oficial documentation about Selenium I found that 'moveToElement()'(Java) method has been removed from Python in Selenium v4.3. Have you any idea how to replicate the behavior you taught on this video but using Python?
@automateNow2 жыл бұрын
You're most welcome. I check the documentation at the link below and it doesn't show that move_to_element() has been deprecated. www.selenium.dev/selenium/docs/api/py/webdriver/selenium.webdriver.common.action_chains.html#selenium.webdriver.common.action_chains.ActionChains.move_to_element However, if it is, you may be able to get similar results by using move_to_element_with_offset(). www.selenium.dev/selenium/docs/api/py/webdriver/selenium.webdriver.common.action_chains.html#selenium.webdriver.common.action_chains.ActionChains.move_to_element_with_offset
@HackYedinTR Жыл бұрын
I am building a project with python via selenium. There is an xpath in the section form, but no matter what I do to that button, I cannot push it. can you help me. I will pay whatever.
@automateNow Жыл бұрын
Please provide some sample HTML code for the element that you are trying to click.