কম্পিউটার

সেলেনিয়ামের সাথে এইচটিএমএল টেক্সট ইনপুটে এন্টার টিপে কীভাবে অনুকরণ করবেন?


আমরা সেলেনিয়াম ওয়েবড্রাইভারের সাথে html টেক্সট ইনপুট বক্সে এন্টার টিপে অনুকরণ করতে পারি। আমরা sendKeys-এর সাহায্য নেব পদ্ধতি এবং পাস Keys.ENTER পদ্ধতি একটি যুক্তি হিসাবে. এছাড়াও, আমরা কী. রিটার্ন পাস করতে পারি একই কাজ সম্পাদন করার পদ্ধতির একটি যুক্তি হিসাবে।

এছাড়াও, আমাদের org.openqa.selenium.Keys আমদানি করতে হবে কী ব্যবহারের জন্য কোডের প্যাকেজ ক্লাস নিচের ইনপুট বক্সের ভিতরে কিছু টেক্সট দেওয়ার পর ENTER/RETURN টিপুন।

সেলেনিয়ামের সাথে এইচটিএমএল টেক্সট ইনপুটে এন্টার টিপে কীভাবে অনুকরণ করবেন?

উদাহরণ

Keys.ENTER.

দিয়ে কোড বাস্তবায়ন
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.By;
import org.openqa.selenium.Keys;
public class PressEnter{
   public static void main(String[] args) {
      System.setProperty("webdriver.chrome.driver", "C:\\Users\\ghs6kor\\Desktop\\Java\\chromedriver.exe");
      WebDriver driver = new ChromeDriver();
      driver.get("https://www.tutorialspoint.com/about/about_careers.htm");
      // identify element
      WebElement l=driver.findElement(By.id("gsc-i-id1"));
      l.sendKeys("Selenium");
      // press enter with sendKeys method and pass Keys.ENTER
      l.sendKeys(Keys.ENTER);
      driver.close();
   }
}

কী দিয়ে কোড বাস্তবায়ন। RETURN।

import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.By;
import org.openqa.selenium.Keys;
public class PressReturn{
   public static void main(String[] args) {
      System.setProperty("webdriver.chrome.driver",
"C:\\Users\\ghs6kor\\Desktop\\Java\\chromedriver.exe");
      WebDriver driver = new ChromeDriver();
      driver.get("https://www.tutorialspoint.com/about/about_careers.htm");
      // identify element
      WebElement l=driver.findElement(By.id("gsc-i-id1"));
      l.sendKeys("Selenium");
      // press enter with sendKeys method and pass Keys.RETURN
      l.sendKeys(Keys.RETURN);
      driver.close();
   }
}

  1. HTML-এ কালার পিকার দিয়ে ইনপুট টাইপ ফিল্ড কীভাবে ব্যবহার করবেন?

  2. এইচটিএমএলে ডেট ফিল্ড সহ ইনপুট টাইপ ফিল্ড কিভাবে ব্যবহার করবেন?

  3. HTML এ ধাপ সহ ইনপুট টাইপ ফিল্ড কিভাবে ব্যবহার করবেন?

  4. জাভাতে এইচটিএমএল সহ JLabel এর জন্য পাঠ্য ফন্ট কীভাবে পরিবর্তন করবেন?