Я хочу сделать автоматизацию WordPress через Excel, но я не мог передать некоторые разделы.
мне нужно
1) Go на веб-сайте в столбце A1 (A1 до A400 будет сделать то же самое)
2) Войти
Set doc = IE.document
doc.getElementById("user_login").Value = "USER"
doc.getElementById("user_pass").Value = "PASS"
doc.getElementById("wp-submit").Click
3) Мне нужно go ссылка href.
https://.....com/wp-admin/edit-tags.php?taxonomy=category ```
SAME
```A1=https://.....com/wp-admin/
A1edit-tags.php?taxonomy=category ```
4) I have to set the part that says false to true. ```aria-expanded="false" ```
```<tr class="level-0" id="tag-1" style="display: table-row;">
<td class="name column-name has-row-actions column-primary" data-colname="Name">
<div class="row-actions">
<span class="inline hide-if-no-js">
<button class="button-link editinline" aria-expanded="false" aria-label="Quick edit “cottage garden” inline" type="button">Quick Edit</button> ```
5)I have to write the E1 Part here. (E1 in cycle A1, E2 in cycle A2 ....)
```<span class="input-text-wrap">
<input name="name" class="ptitle" type="text" value="" data-dpmaxz-eid="33">
</span> ```
6)And finally I have to click on the Update Category button.
```<div class="inline-edit-save submit">
<button class="save button button-primary alignright" type="button">Update Category</button> ```