Как найти текстовые поля Имя и Фамилия? - PullRequest
0 голосов
/ 25 сентября 2018

Я хочу проверить текстовые поля, а также кнопку. Пожалуйста, помогите мне. Я хочу использовать функцию sendkeys для текстового поля.

HTML-код:

<!DOCTYPE html>
<html>
<body>

<h2>HTML Forms</h2>

<form action="/action_page.php">
    First name:
    <br>
    <input type="text" id="username">
    <br> Last name:
    <br>
    <input type="text" id="username">
    <br>
    <br>
    <input type="submit" value="Submit">
</form>

<p>If you click the "Submit" button, the form-data will be sent to a page called "/action_page.php".</p>

1 Ответ

0 голосов
/ 25 сентября 2018

Чтобы отправить последовательность символов в Имя и Фамилия , вы можете использовать следующее решение:

  • Имя:

    • CssSelector :

      form[action='/action_page.php'] input:nth-of-type(1)
      
    • XPath :

      //form[@action='/action_page.php']//following::input[1]
      
  • Фамилия:

    • CssSelector :

      form[action='/action_page.php'] input:nth-of-type(2)
      
    • XPath :

      //form[@action='/action_page.php']//following::input[2] 
      
...