Upload Katalon Studio Project

This commit is contained in:
hanum 2026-07-21 16:58:16 +07:00
commit e9d0f5718e
536 changed files with 50757 additions and 0 deletions

18
.gitignore vendored Normal file
View File

@ -0,0 +1,18 @@
.gradle
bin
Reports
Libs
output
!output/.gitkeep
build
.classpath
.project
.cache

View File

@ -0,0 +1,3 @@
activeFilters=
eclipse.preferences.version=1
enableProjectSpecific=true

View File

@ -0,0 +1,2 @@
eclipse.preferences.version=1
encoding/<project>=UTF-8

View File

@ -0,0 +1,12 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=21
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=21
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=21
org.eclipse.core.resources.encoding=UTF-8

View File

@ -0,0 +1,2 @@
eclipse.preferences.version=1
groovy.compiler.level=30

View File

@ -0,0 +1,6 @@
# This file is used to configure Katalon Studio execution log levels.
# When you need to troubleshoot Katalon Studio issue
# logging.level.com.kms=TRACE
# logging.level.com.mycompany=DEBUG

View File

@ -0,0 +1,89 @@
package email
import javax.mail.*
import javax.mail.search.SubjectTerm
import java.util.Properties
import java.util.regex.Pattern
import java.util.regex.Matcher
public class GmailReader {
public static String getResetLink(String email, String appPassword) {
Properties props = new Properties()
props.put("mail.store.protocol", "imaps")
props.put("mail.imaps.host", "imap.gmail.com")
props.put("mail.imaps.port", "993")
props.put("mail.imaps.ssl.enable", "true")
Session session = Session.getDefaultInstance(props, null)
Store store = session.getStore("imaps")
store.connect("imap.gmail.com", email, appPassword)
Folder inbox = store.getFolder("INBOX")
inbox.open(Folder.READ_ONLY)
Message[] messages = inbox.search(
new SubjectTerm("Pemberitahuan Reset Password")
)
if (messages.length == 0) {
inbox.close(false)
store.close()
throw new Exception("Email reset password tidak ditemukan")
}
Message latestMessage = messages[messages.length - 1]
String content = getTextFromMessage(latestMessage)
Pattern pattern = Pattern.compile("(https?:\\/\\/[^\\s\"<>]+)")
Matcher matcher = pattern.matcher(content)
String resetLink = ""
while (matcher.find()) {
String link = matcher.group()
if (link.contains("reset-password")) {
resetLink = link
break
}
}
inbox.close(false)
store.close()
if (resetLink == "") {
throw new Exception("Link reset-password tidak ditemukan di email")
}
return resetLink
}
private static String getTextFromMessage(Message message) {
Object content = message.getContent()
if (content instanceof String) {
return content.toString()
}
if (content instanceof Multipart) {
Multipart multipart = (Multipart) content
String result = ""
for (int i = 0; i < multipart.getCount(); i++) {
BodyPart bodyPart = multipart.getBodyPart(i)
if (bodyPart.getContent() instanceof String) {
result += bodyPart.getContent().toString()
}
}
return result
}
return content.toString()
}
}

35
MEDORI.prj Normal file
View File

@ -0,0 +1,35 @@
<?xml version="1.0" encoding="UTF-8"?>
<Project>
<description></description>
<name>MEDORI</name>
<tag></tag>
<UUID>eb2f729e-eb80-4bd1-a76b-788c4b0eaa84</UUID>
<createdEdition>ENTERPRISE</createdEdition>
<createdVersion>11.0.1</createdVersion>
<freeLicense>false</freeLicense>
<migratedVersion>5.9.0</migratedVersion>
<modifiedEdition>ENTERPRISE</modifiedEdition>
<modifiedVersion>11.1.2</modifiedVersion>
<pageLoadTimeout>0</pageLoadTimeout>
<projectFileLocation>C:\ivan\freelance\sidequest\114 - katalon medory\madori\katalon_MEDORI\MEDORI\MEDORI.prj</projectFileLocation>
<sourceContent>
<sourceFolderList>
<sourceFolderConfiguration>
<url>Include/scripts/groovy</url>
</sourceFolderConfiguration>
</sourceFolderList>
<systemFolderList>
<systemFolderConfiguration>
<url>Include/scripts/groovy</url>
</systemFolderConfiguration>
<systemFolderConfiguration>
<url>Include/features</url>
</systemFolderConfiguration>
<systemFolderConfiguration>
<url>Include/config</url>
</systemFolderConfiguration>
</systemFolderList>
</sourceContent>
<timeStampInProperties>false</timeStampInProperties>
<type>WEBUI</type>
</Project>

View File

@ -0,0 +1,82 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>a_Lupa Password</name>
<tag></tag>
<elementGuidId>1e53b5c7-4ff0-4015-aea2-93de9dfd4a75</elementGuidId>
<selectorCollection>
<entry>
<key>XPATH</key>
<value>//*[@href = 'https://medory.my.id/forgot-password']</value>
</entry>
<entry>
<key>CSS</key>
<value>[href=&quot;https\:\/\/medory\.my\.id\/forgot-password&quot;]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value>internal:role=link[name=&quot;Lupa Password?&quot;i]</value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>a</value>
<webElementGuid>95ab60aa-ccb6-476f-b091-370049513910</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>href</name>
<type>Main</type>
<value>https://medory.my.id/forgot-password</value>
<webElementGuid>fcff545c-deed-47de-95c9-e1a3b16698e4</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>Lupa Password?</value>
<webElementGuid>644be45f-ac36-4cf1-b1c3-aa583b90f7ba</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-b73f944a39e353b72dd93e27c4afc16e</value>
<webElementGuid>639705a6-d97e-4d7a-8de6-bf6a705e3fde</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[@href = 'https://medory.my.id/forgot-password']</value>
<webElementGuid>fa4c71fe-85a0-4f36-b549-8524448aa78d</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[@href = 'https://medory.my.id/forgot-password']</value>
<webElementGuid>65558454-1307-4442-99b1-4b92617a42a4</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//a[@href = 'https://medory.my.id/forgot-password' and (text() = 'Lupa Password?' or . = 'Lupa Password?')]</value>
<webElementGuid>a66fd519-7c29-4692-8b6a-c78b4cfca983</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,96 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>button_Kirim Link Reset Password</name>
<tag></tag>
<elementGuidId>2ae83df2-93d4-41be-a843-db681ee9d94b</elementGuidId>
<selectorCollection>
<entry>
<key>XPATH</key>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' btn ')]</value>
</entry>
<entry>
<key>CSS</key>
<value>.btn</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value>internal:role=button[name=&quot; Kirim Link Reset Password&quot;i]</value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>button</value>
<webElementGuid>3491d354-33e3-4aa8-aed2-95b8207231ef</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>type</name>
<type>Main</type>
<value>submit</value>
<webElementGuid>f157a21f-52ae-4b11-b149-ed53c0530922</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>btn btn-submit</value>
<webElementGuid>27f0cbab-ca64-40aa-8276-cdc9ca630bf5</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>
Kirim Link Reset Password
</value>
<webElementGuid>5f2f4a6f-ada1-4255-842e-595d5096161c</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-5889e8f4ab8798d244ecbbc51aa6e324</value>
<webElementGuid>cf3eff81-0973-4698-bd26-3a5ab0468d2a</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' btn ')]</value>
<webElementGuid>70080e4d-1070-44b9-9515-d48e37822d73</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' btn ')]</value>
<webElementGuid>fa00bbe8-86c8-43d8-afca-345a9c01a7bb</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//button[@type = 'submit' and (text() = '
Kirim Link Reset Password
' or . = '
Kirim Link Reset Password
')]</value>
<webElementGuid>c59d169a-ce7c-4f01-96da-28f1c1ecf9e7</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>button_reset_password_submit</name>
<tag></tag>
<elementGuidId>7f3e6dfb-295a-4bce-bf35-abfa1eedc96d</elementGuidId>
<selectorCollection>
<entry>
<key>BASIC</key>
<value></value>
</entry>
<entry>
<key>XPATH</key>
<value>/html/body/div[2]/div/form/button</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>false</useRalativeImagePath>
</WebElementEntity>

View File

@ -0,0 +1,106 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>input_Email</name>
<tag></tag>
<elementGuidId>7235364b-d64c-4c19-b8e5-26d2d474d766</elementGuidId>
<selectorCollection>
<entry>
<key>XPATH</key>
<value>//*[@id = 'email']</value>
</entry>
<entry>
<key>CSS</key>
<value>#email</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value>internal:attr=[placeholder=&quot;Email&quot;i]</value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>input</value>
<webElementGuid>80439f66-65dc-412f-a4ab-01805f38b4f1</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>type</name>
<type>Main</type>
<value>email</value>
<webElementGuid>5f3a786f-8874-42a0-8633-a3c7e6376c59</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>form-control </value>
<webElementGuid>587bc247-4c19-48b4-9e10-4015e0229673</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>id</name>
<type>Main</type>
<value>email</value>
<webElementGuid>dca9248a-7fde-4903-9d00-8c693fe6229b</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>name</name>
<type>Main</type>
<value>email</value>
<webElementGuid>4fa852d3-2b04-4491-b8e3-18d8fc6cec12</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>placeholder</name>
<type>Main</type>
<value>Email</value>
<webElementGuid>59fa95ff-d117-4a56-a1b3-66469eb258ce</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-5b9ce64e1b01ab27ccfccd2252edf06f</value>
<webElementGuid>d3045689-b928-4627-ba1a-a2fd5615b4a3</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[@id = 'email']</value>
<webElementGuid>7419078f-cdb9-421d-8f63-516fcb3caeab</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[@id = 'email']</value>
<webElementGuid>29f14ab2-b2bf-46c1-af6d-acf85486b3f2</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//input[@type = 'email' and @id = 'email' and @name = 'email' and @placeholder = 'Email']</value>
<webElementGuid>14a6fb0c-a8ec-4573-b358-d5f35d88f138</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>input_email_password_baru</name>
<tag></tag>
<elementGuidId>d9ebafd6-3332-4dd0-9e4d-4c5940f1c705</elementGuidId>
<selectorCollection>
<entry>
<key>BASIC</key>
<value></value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[@id=&quot;email&quot;]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>false</useRalativeImagePath>
</WebElementEntity>

View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>input_konfirmasi_password</name>
<tag></tag>
<elementGuidId>68856c24-209b-4e0a-8cfc-0c496ee81286</elementGuidId>
<selectorCollection>
<entry>
<key>BASIC</key>
<value></value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[@id=&quot;password_confirmation&quot;]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>false</useRalativeImagePath>
</WebElementEntity>

View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>input_password_baru</name>
<tag></tag>
<elementGuidId>0322ae63-294b-4f61-918a-0ff4bb6a233e</elementGuidId>
<selectorCollection>
<entry>
<key>BASIC</key>
<value></value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[@id=&quot;password&quot;]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>false</useRalativeImagePath>
</WebElementEntity>

View File

@ -0,0 +1,108 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>a_Admin</name>
<tag></tag>
<elementGuidId>13f35996-2a6b-4cbb-9938-b8acef9cc4f1</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>[href=&quot;https\:\/\/medory\.my\.id\/profile&quot;]</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[@href = 'https://medory.my.id/profile']</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>a</value>
<webElementGuid>95e91455-50e6-4e0b-ac53-f087cb230ab4</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>href</name>
<type>Main</type>
<value>https://medory.my.id/profile</value>
<webElementGuid>fbd7bfa8-09c6-4443-9818-2000a736a177</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>flex items-center gap-3 flex-1 hover:bg-white/5 rounded-lg p-1 transition-colors</value>
<webElementGuid>8bcacd10-cde9-4136-83fa-dfc6773a6ae7</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>
Admin
Apoteker
</value>
<webElementGuid>1b6cc6b2-881a-431a-9ba8-7e9b61689546</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-04ef37ee10fd71673652ad4b1d2583e6</value>
<webElementGuid>5168be1d-77e9-427d-87ff-1223be378642</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[@href = 'https://medory.my.id/profile']</value>
<webElementGuid>fe6bf6ba-e554-428b-948f-ccd197ebb233</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[@href = 'https://medory.my.id/profile']</value>
<webElementGuid>371c880d-dedf-488d-aea4-6142708c66a7</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//a[@href = 'https://medory.my.id/profile' and (text() = '
Admin
Apoteker
' or . = '
Admin
Apoteker
')]</value>
<webElementGuid>3c6d36cb-78db-48b1-8d97-c339b8999ff4</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,145 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>a_Kategori</name>
<tag></tag>
<elementGuidId>6a2666af-76aa-4adc-aa83-7860d8e61ef2</elementGuidId>
<selectorCollection>
<entry>
<key>BASIC</key>
<value>//*[@href = 'https://medory.my.id/kategori' and (text() = '
Kategori
' or . = '
Kategori
')]</value>
</entry>
<entry>
<key>CSS</key>
<value>[href=&quot;https\:\/\/medory\.my\.id\/kategori&quot;]</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[@href = 'https://medory.my.id/kategori']</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>a</value>
<webElementGuid>734eb681-56b6-4577-a251-443bf85ee2ee</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>href</name>
<type>Main</type>
<value>https://medory.my.id/kategori</value>
<webElementGuid>4bf2c9cc-75aa-4bfd-a048-9f772425f4a0</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>sidebar-link flex items-center gap-3 px-4 py-3 rounded-lg text-sm font-medium </value>
<webElementGuid>16734065-d374-4049-9d21-2c13e3eb4a3b</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>
Kategori
</value>
<webElementGuid>eb69a0f3-72a3-4be1-8b18-7e83b206fdb4</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-d1840e5389dea4488f423db9bad31a09</value>
<webElementGuid>37ed1eb1-b2a3-4681-860a-3092b4204964</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[@href = 'https://medory.my.id/kategori']</value>
<webElementGuid>2a05ff95-628d-4eb0-81f4-67be1b47659e</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[@href = 'https://medory.my.id/kategori']</value>
<webElementGuid>f2cd9b81-a50b-4440-acb2-93193f9306d7</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//a[@href = 'https://medory.my.id/kategori' and (text() = '
Kategori
' or . = '
Kategori
')]</value>
<webElementGuid>14b4de25-b489-43d3-83d5-240b9187ae90</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[@href = 'http://medory.my.id/kategori']</value>
<webElementGuid>546d50db-06fe-4901-aca3-35687833f363</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//a[@href = 'http://medory.my.id/kategori' and (text() = '
Kategori
' or . = '
Kategori
')]</value>
<webElementGuid>16577283-279d-4c8a-b1b3-4d157a9a78f2</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,119 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>a_Laporan</name>
<tag></tag>
<elementGuidId>df4cca19-5faa-4352-8777-706f2b4969ff</elementGuidId>
<selectorCollection>
<entry>
<key>BASIC</key>
<value>//*[@href = 'https://medory.my.id/laporan' and (text() = '
Laporan
' or . = '
Laporan
')]</value>
</entry>
<entry>
<key>CSS</key>
<value>[href=&quot;https\:\/\/medory\.my\.id\/laporan&quot;]</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[@href = 'https://medory.my.id/laporan']</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>a</value>
<webElementGuid>97211130-ad43-4498-8cfb-41527334e7fd</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>href</name>
<type>Main</type>
<value>https://medory.my.id/laporan</value>
<webElementGuid>f357a7cf-1013-433e-b294-4b19ab763cf7</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>sidebar-link flex items-center gap-3 px-4 py-3 rounded-lg text-sm font-medium </value>
<webElementGuid>c56d5d90-44d0-491a-97e2-58f38ef0f8d8</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>
Laporan
</value>
<webElementGuid>7f1c3796-0dd0-4fe7-9f25-7573445cc08c</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-29a7b5e5c4bf13ba72ab4a03df288ee6</value>
<webElementGuid>4e66682c-55c6-4f1d-9f51-9d01c279d5f1</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[@href = 'https://medory.my.id/laporan']</value>
<webElementGuid>d87b6700-2679-4535-a84f-4a33f04c5ca8</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[@href = 'https://medory.my.id/laporan']</value>
<webElementGuid>1089921e-c432-471f-86c8-072e731b4ac2</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//a[@href = 'https://medory.my.id/laporan' and (text() = '
Laporan
' or . = '
Laporan
')]</value>
<webElementGuid>11fc1f77-2598-4837-bda3-52e95ab1862e</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,112 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>a_Lihat Semua</name>
<tag></tag>
<elementGuidId>375c9b97-6824-4eac-ada6-8649eee10277</elementGuidId>
<selectorCollection>
<entry>
<key>BASIC</key>
<value>//*[@href = 'https://medory.my.id/kadaluarsa' and (text() = '
Lihat Semua
' or . = '
Lihat Semua
')]</value>
</entry>
<entry>
<key>CSS</key>
<value>.text-sm.block</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' text-sm ') and contains(concat(' ', normalize-space(@class), ' '), ' block ')]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>a</value>
<webElementGuid>2419f93b-45ea-4692-b948-002d31701e56</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>href</name>
<type>Main</type>
<value>https://medory.my.id/kadaluarsa</value>
<webElementGuid>67aef626-59a5-44e5-a03e-19f924da1fd6</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>block text-center text-sm text-[#4A538F] hover:text-[#2F347A] font-medium py-1</value>
<webElementGuid>15df5e6f-74a5-4286-8abb-6b32beb53349</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>onclick</name>
<type>Main</type>
<value>document.getElementById('notificationModal').classList.add('hidden')</value>
<webElementGuid>76640021-7368-4a50-9200-ebd74b0687c3</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>
Lihat Semua
</value>
<webElementGuid>de186d53-5608-4c34-8bc7-6b15185d219a</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-1c13551de7ed50a9b6bbe773f5be27cd</value>
<webElementGuid>d49c7822-9057-4ef6-9283-5997c108b709</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' text-sm ') and contains(concat(' ', normalize-space(@class), ' '), ' block ')]</value>
<webElementGuid>4bc26be9-f6d0-484e-a9bd-e523265e08db</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' text-sm ') and contains(concat(' ', normalize-space(@class), ' '), ' block ')]</value>
<webElementGuid>009aa968-bff9-40f6-aaed-a4862c8cbabf</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//a[@href = 'https://medory.my.id/kadaluarsa' and (text() = '
Lihat Semua
' or . = '
Lihat Semua
')]</value>
<webElementGuid>4c084f53-95f6-4d08-9574-77fcd36097a0</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,119 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>a_Obat Keluar</name>
<tag></tag>
<elementGuidId>a0f48e48-6315-4bfb-bc13-8c6d0652b446</elementGuidId>
<selectorCollection>
<entry>
<key>BASIC</key>
<value>//*[@href = 'https://medory.my.id/obat-keluar' and (text() = '
Obat Keluar
' or . = '
Obat Keluar
')]</value>
</entry>
<entry>
<key>CSS</key>
<value>[href=&quot;https\:\/\/medory\.my\.id\/obat-keluar&quot;]</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[@href = 'https://medory.my.id/obat-keluar']</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>a</value>
<webElementGuid>0dd780c4-be68-4542-ba22-ca081a47087c</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>href</name>
<type>Main</type>
<value>https://medory.my.id/obat-keluar</value>
<webElementGuid>65e967ca-0f6e-495b-a4f6-21e1d2888624</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>sidebar-link flex items-center gap-3 px-4 py-3 rounded-lg text-sm font-medium </value>
<webElementGuid>561153d3-8c30-477b-a426-5605a7649f14</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>
Obat Keluar
</value>
<webElementGuid>8b11d671-a9f7-4514-b1bf-fc346ee1574a</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-4de93b3b05143ae31ce09b6f80f10528</value>
<webElementGuid>38174fe3-87b2-4b4a-b758-59db2846ae92</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[@href = 'https://medory.my.id/obat-keluar']</value>
<webElementGuid>9fa60292-d522-4949-87b0-b9f8f54da3d1</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[@href = 'https://medory.my.id/obat-keluar']</value>
<webElementGuid>ffdad08e-48c7-4fc4-89eb-93a5f4a58db0</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//a[@href = 'https://medory.my.id/obat-keluar' and (text() = '
Obat Keluar
' or . = '
Obat Keluar
')]</value>
<webElementGuid>d5cef423-99b2-44bf-b3e4-d28826199db9</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,118 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>a_Obat Masuk</name>
<tag></tag>
<elementGuidId>4765364a-8c5f-43d0-880c-4d942619ef45</elementGuidId>
<selectorCollection>
<entry>
<key>BASIC</key>
<value>//*[@href = 'https://medory.my.id/obat-masuk' and (text() = '
Obat Masuk
' or . = '
Obat Masuk
')]</value>
</entry>
<entry>
<key>CSS</key>
<value>[href=&quot;https\:\/\/medory\.my\.id\/obat-masuk&quot;]</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[@href = 'https://medory.my.id/obat-masuk']</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>a</value>
<webElementGuid>54582bda-7754-4c1c-9ba7-6f798b11d4ea</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>href</name>
<type>Main</type>
<value>https://medory.my.id/obat-masuk</value>
<webElementGuid>f69631ea-c5c9-4db6-9e14-02f926cdaac1</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>sidebar-link flex items-center gap-3 px-4 py-3 rounded-lg text-sm font-medium </value>
<webElementGuid>0bcdf408-c05c-4f67-b798-4c4790c5dafe</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>
Obat Masuk
</value>
<webElementGuid>22131b91-9718-47a7-9530-81fa1acc7f30</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-b1f89b568f74ecbdcce16160b27592b4</value>
<webElementGuid>a956ea31-847f-4a86-8821-398ead42c5de</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[@href = 'https://medory.my.id/obat-masuk']</value>
<webElementGuid>91f5edab-78e3-4419-a616-d532b21f8468</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[@href = 'https://medory.my.id/obat-masuk']</value>
<webElementGuid>0bcff91c-9a68-4839-bba4-7d4a5c77c27c</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//a[@href = 'https://medory.my.id/obat-masuk' and (text() = '
Obat Masuk
' or . = '
Obat Masuk
')]</value>
<webElementGuid>0f345a82-319e-4cf8-9fea-590d34a8083c</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,119 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>a_Resep</name>
<tag></tag>
<elementGuidId>fd36ea31-d29b-4979-8f96-fca6ee217edf</elementGuidId>
<selectorCollection>
<entry>
<key>BASIC</key>
<value>//*[@href = 'https://medory.my.id/resep' and (text() = '
Resep
' or . = '
Resep
')]</value>
</entry>
<entry>
<key>CSS</key>
<value>[href=&quot;https\:\/\/medory\.my\.id\/resep&quot;]</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[@href = 'https://medory.my.id/resep']</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>a</value>
<webElementGuid>9293b7e3-015f-4c29-8887-6aed98b4869b</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>href</name>
<type>Main</type>
<value>https://medory.my.id/resep</value>
<webElementGuid>8f0115da-6cca-4fe2-a636-f79b36944665</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>sidebar-link flex items-center gap-3 px-4 py-3 rounded-lg text-sm font-medium </value>
<webElementGuid>57a37136-773d-41d5-bf61-b78b9478eea2</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>
Resep
</value>
<webElementGuid>7cd0dae9-6a9c-411d-9f8e-3e93aa763bb4</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-2f3c31ebeb98b90b57a85343115fa77c</value>
<webElementGuid>30618069-1d3d-4870-9d68-9dc8727fb989</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[@href = 'https://medory.my.id/resep']</value>
<webElementGuid>4bb5ea2d-2169-4ee6-ab02-c2c9ef2a26f4</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[@href = 'https://medory.my.id/resep']</value>
<webElementGuid>14ebacc8-79f7-4b0b-9478-b0a95fd424d8</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//a[@href = 'https://medory.my.id/resep' and (text() = '
Resep
' or . = '
Resep
')]</value>
<webElementGuid>b53a391f-c5f6-4ecd-9195-c39c7842ad95</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,119 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>a_Satuan</name>
<tag></tag>
<elementGuidId>20f8bbde-418d-4f6f-ac71-d111c1806736</elementGuidId>
<selectorCollection>
<entry>
<key>BASIC</key>
<value>//*[@href = 'https://medory.my.id/satuan' and (text() = '
Satuan
' or . = '
Satuan
')]</value>
</entry>
<entry>
<key>CSS</key>
<value>[href=&quot;https\:\/\/medory\.my\.id\/satuan&quot;]</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[@href = 'https://medory.my.id/satuan']</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>a</value>
<webElementGuid>c3d992c8-7b8c-4dae-b3ef-4df0af7d3d86</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>href</name>
<type>Main</type>
<value>https://medory.my.id/satuan</value>
<webElementGuid>2d96944b-0d6b-499d-81b4-f1acda1d5bab</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>sidebar-link flex items-center gap-3 px-4 py-3 rounded-lg text-sm font-medium </value>
<webElementGuid>75f66352-ed5e-480e-86fc-3aa7d63f7669</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>
Satuan
</value>
<webElementGuid>257da84d-207d-4774-a188-ac4b61ae11c5</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-f31ab20a0474e88d2165392e2ed92ed6</value>
<webElementGuid>78201f32-58fe-454d-a5c9-a5ec13977a02</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[@href = 'https://medory.my.id/satuan']</value>
<webElementGuid>dcde63f0-f842-481e-9147-7574d763c30f</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[@href = 'https://medory.my.id/satuan']</value>
<webElementGuid>b1e95711-421d-4e90-aa10-64b2b34705ee</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//a[@href = 'https://medory.my.id/satuan' and (text() = '
Satuan
' or . = '
Satuan
')]</value>
<webElementGuid>a60e0797-fd2c-4ffb-a30f-2c85943a5264</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,129 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>button_1</name>
<tag></tag>
<elementGuidId>adf1dc19-a0e5-44a0-b97f-552b6ad36289</elementGuidId>
<selectorCollection>
<entry>
<key>BASIC</key>
<value>//*[(text() = '
1
' or . = '
1
')]</value>
</entry>
<entry>
<key>CSS</key>
<value>.relative</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' relative ')]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>button</value>
<webElementGuid>f9257891-1c90-4f0f-ba63-5858945fd6de</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>onclick</name>
<type>Main</type>
<value>document.getElementById('notificationModal').classList.remove('hidden')</value>
<webElementGuid>26b4097a-5769-48f3-ac5d-5bb326550191</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>relative p-2 text-[#7A7FAE] hover:text-[#4A538F] hover:bg-[#F4F6FF] rounded-lg transition-colors</value>
<webElementGuid>31b1550b-e2e3-451f-9abd-4c8398dc350e</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>
1
</value>
<webElementGuid>be9d71f0-697d-4041-93d2-afb491fe1579</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-7b3061860bf1e5f31fddcb7d5fb0f277</value>
<webElementGuid>85340364-2a63-4a0e-bf46-79b0dadbd8b7</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' relative ')]</value>
<webElementGuid>3264f072-5cc0-4e11-878f-51bfb400e059</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' relative ')]</value>
<webElementGuid>144c7913-9d38-4678-a7e4-be5c21cda498</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//button[(text() = '
1
' or . = '
1
')]</value>
<webElementGuid>f33715fa-e6f0-48e7-af82-ea0c1035c003</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,90 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>button_Logout</name>
<tag></tag>
<elementGuidId>d593ca81-f7fd-4217-a13b-d90e62c113db</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>[title=&quot;Logout&quot;]</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[@title = 'Logout']</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>button</value>
<webElementGuid>c46872d8-1fbe-48d9-a4ee-9991bb670ef2</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>type</name>
<type>Main</type>
<value>submit</value>
<webElementGuid>98071d7e-17ed-45bb-81a1-b520e656fe7e</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>p-2 hover:bg-white/10 rounded-lg transition-colors text-white/80 hover:text-white</value>
<webElementGuid>202b1b8a-19c1-4be9-a986-b75169e84390</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>title</name>
<type>Main</type>
<value>Logout</value>
<webElementGuid>3a5d4d98-0928-4016-a59d-fb5035990816</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-dc545c12f5bfa5bfaa7c7032db7832a9</value>
<webElementGuid>1177bc35-7737-45a3-a2b8-477aeb92cb10</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[@title = 'Logout']</value>
<webElementGuid>dda2bf54-e07d-4999-bdc2-2231feb844b6</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[@title = 'Logout']</value>
<webElementGuid>c4265cd0-2a1c-4850-885f-b31666053032</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//button[@type = 'submit' and @title = 'Logout']</value>
<webElementGuid>d9733235-c4c6-4442-9eaf-d654c24f740f</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,104 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>canvas_trendChart</name>
<tag></tag>
<elementGuidId>7c2259a3-5dad-4c6f-a0d3-9b01d855a577</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>#trendChart</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[@id = 'trendChart']</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>canvas</value>
<webElementGuid>70b0d361-52f2-4184-8eaa-7a64beb33a8e</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>id</name>
<type>Main</type>
<value>trendChart</value>
<webElementGuid>22de749a-13d2-4d22-a759-37c3c826b0d6</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>width</name>
<type>Main</type>
<value>1348</value>
<webElementGuid>5b19fd3a-e399-4a54-84ea-32a7c90c1655</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>height</name>
<type>Main</type>
<value>480</value>
<webElementGuid>61fe9971-e196-4f2b-8b7b-11acce96588a</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>0123
12345678910111213141516171819202122232425262728293031
Obat MasukObat Keluar</value>
<webElementGuid>074873dc-a063-4266-bdec-ab475f963780</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-7905586c2fc926e15b0e4afa640e5361</value>
<webElementGuid>cc5d514b-8ba9-4a6c-9187-c5e05ca96d4e</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[@id = 'trendChart']</value>
<webElementGuid>cb2578a5-49d9-437c-ab78-fe479a3ddfac</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[@id = 'trendChart']</value>
<webElementGuid>d6dc1ee0-d88f-4c88-85ef-4b43a71d368b</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//canvas[@id = 'trendChart' and (text() = '0123
12345678910111213141516171819202122232425262728293031
Obat MasukObat Keluar' or . = '0123
12345678910111213141516171819202122232425262728293031
Obat MasukObat Keluar')]</value>
<webElementGuid>c4179538-f347-449c-bae8-ba00d52e9ae7</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,104 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>canvas_trendChart_1</name>
<tag></tag>
<elementGuidId>181f0ae5-d9a4-4d3d-86e9-671aea24b50e</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>#trendChart</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[@id = 'trendChart']</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>canvas</value>
<webElementGuid>39dd3013-fc57-44ad-b8dd-d3e25c5807e9</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>id</name>
<type>Main</type>
<value>trendChart</value>
<webElementGuid>9c198e9f-daad-4738-8a7c-46901fbd22ba</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>width</name>
<type>Main</type>
<value>1348</value>
<webElementGuid>c3ae3133-eef1-4c03-a6db-2639121aa68d</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>height</name>
<type>Main</type>
<value>480</value>
<webElementGuid>652e6a20-effe-454b-88b9-2a03a8084ccc</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>01
12345678910111213141516171819202122232425262728
Obat MasukObat Keluar</value>
<webElementGuid>fba2e0ac-2ec1-4a41-93dd-96b5a0b2b497</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-7905586c2fc926e15b0e4afa640e5361</value>
<webElementGuid>6ba4031b-87fc-459a-b7c6-46a0fd4d2163</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[@id = 'trendChart']</value>
<webElementGuid>b5e9a8c4-d1a3-44a0-87f6-5aae191f397f</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[@id = 'trendChart']</value>
<webElementGuid>8fd83029-ab7c-42c7-9488-b96ad6190a80</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//canvas[@id = 'trendChart' and (text() = '01
12345678910111213141516171819202122232425262728
Obat MasukObat Keluar' or . = '01
12345678910111213141516171819202122232425262728
Obat MasukObat Keluar')]</value>
<webElementGuid>c433dec8-af42-45a6-a3ae-cdf3f50bd509</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,124 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>div_Total Obat Masuk</name>
<tag></tag>
<elementGuidId>7756ab6e-163f-4b8e-acc1-b13362cfa30b</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>.grid:nth-child(1) .rounded-xl.card-custom:nth-child(1)</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' grid ') and (position() = 1)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' rounded-xl ') and contains(concat(' ', normalize-space(@class), ' '), ' card-custom ') and (position() = 1)]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>div</value>
<webElementGuid>88d54a20-3508-4371-a917-2addf8092e16</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>card-custom rounded-xl shadow-sm p-6</value>
<webElementGuid>658731f6-fd61-4516-8656-ceac90d6ee7b</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>
Total Obat Masuk
6
</value>
<webElementGuid>f9531851-e91a-4b45-8e99-dcd0f472f087</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-3fd071497e25605d2de71496e6cb51b2</value>
<webElementGuid>39af9a31-b1d3-423f-a903-f14119a31d6a</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' grid ') and (position() = 1)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' rounded-xl ') and contains(concat(' ', normalize-space(@class), ' '), ' card-custom ') and (position() = 1)]</value>
<webElementGuid>d84b78de-ff91-4ac1-aa67-76029be5548d</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' grid ') and (position() = 1)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' rounded-xl ') and contains(concat(' ', normalize-space(@class), ' '), ' card-custom ') and (position() = 1)]</value>
<webElementGuid>f25c6a72-cb0d-402f-8464-6ea8404caede</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//div[(text() = '
Total Obat Masuk
6
' or . = '
Total Obat Masuk
6
')]</value>
<webElementGuid>737d93cc-2583-436f-b291-c8bce5f089ef</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,211 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>div_Tren Obat Keluar Masuk March 2026</name>
<tag></tag>
<elementGuidId>a800d1c9-1e35-4fb6-9610-efd79105ee01</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>.rounded-xl.card-custom.shadow-sm.w-full .justify-between</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' rounded-xl ') and contains(concat(' ', normalize-space(@class), ' '), ' card-custom ') and contains(concat(' ', normalize-space(@class), ' '), ' shadow-sm ') and contains(concat(' ', normalize-space(@class), ' '), ' w-full ')]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' justify-between ')]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>div</value>
<webElementGuid>0eab16f8-dc55-4dae-92f1-f8330f9fc64e</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>flex items-center justify-between mb-4</value>
<webElementGuid>0a859896-a60c-46a3-8e66-e61f2145084b</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>
Tren Obat Keluar Masuk March 2026
March 2026
February 2026
January 2026
December 2025
November 2025
October 2025
September 2025
August 2025
July 2025
June 2025
May 2025
April 2025
</value>
<webElementGuid>b6ec674f-6c75-4655-8cab-b62d0c4515c1</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-efdfe6664f501da5b0a6d89ee38b842b</value>
<webElementGuid>ff72f438-bd4b-4f0b-a077-cd3a01b079e1</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' rounded-xl ') and contains(concat(' ', normalize-space(@class), ' '), ' card-custom ') and contains(concat(' ', normalize-space(@class), ' '), ' shadow-sm ') and contains(concat(' ', normalize-space(@class), ' '), ' w-full ')]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' justify-between ')]</value>
<webElementGuid>604569b4-ba54-444d-a21e-11bad6e233e6</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' rounded-xl ') and contains(concat(' ', normalize-space(@class), ' '), ' card-custom ') and contains(concat(' ', normalize-space(@class), ' '), ' shadow-sm ') and contains(concat(' ', normalize-space(@class), ' '), ' w-full ')]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' justify-between ')]</value>
<webElementGuid>f84b0efa-a293-4180-9430-c452b45795be</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//div[(text() = '
Tren Obat Keluar Masuk March 2026
March 2026
February 2026
January 2026
December 2025
November 2025
October 2025
September 2025
August 2025
July 2025
June 2025
May 2025
April 2025
' or . = '
Tren Obat Keluar Masuk March 2026
March 2026
February 2026
January 2026
December 2025
November 2025
October 2025
September 2025
August 2025
July 2025
June 2025
May 2025
April 2025
')]</value>
<webElementGuid>2dfca77f-36cf-45a4-a09f-0fd2fb47ad6d</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,86 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>h1_Dashboard MedData</name>
<tag></tag>
<elementGuidId>ea77c154-399c-4ea3-85bc-43b187ce141f</elementGuidId>
<selectorCollection>
<entry>
<key>XPATH</key>
<value>//*[(name() = 'div') and (position() = 1)]/*[@class and contains(concat(' ', normalize-space(@class), ' '), ' text-xl ')]</value>
</entry>
<entry>
<key>BASIC</key>
<value>//*[(text() = 'Dashboard MedData' or . = 'Dashboard MedData')]</value>
</entry>
<entry>
<key>CSS</key>
<value>div:nth-child(1) > .text-xl</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>h1</value>
<webElementGuid>58edfccc-c208-45d7-8b9e-431600ec94a7</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>text-xl font-bold text-[#2F347A]</value>
<webElementGuid>a9c36b57-822d-41ca-a0b3-f59d0ee4f133</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>Dashboard MedData</value>
<webElementGuid>f276042a-dcbd-4fb0-9ad5-b5f0cb4ebd50</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-911c80e8374ca2f92defaffbf48e42e6</value>
<webElementGuid>0b7f0f14-6361-41f9-91d8-458e65dae33d</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[(name() = 'div') and (position() = 1)]/*[@class and contains(concat(' ', normalize-space(@class), ' '), ' text-xl ')]</value>
<webElementGuid>36568562-cfbd-4df3-88e1-65a25756965b</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[(name() = 'div') and (position() = 1)]/*[@class and contains(concat(' ', normalize-space(@class), ' '), ' text-xl ')]</value>
<webElementGuid>ceb4d160-7028-4039-931b-ef33fd637696</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//h1[(text() = 'Dashboard MedData' or . = 'Dashboard MedData')]</value>
<webElementGuid>60d76cc6-7cd9-45bb-ada1-bdc0f23be715</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,82 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>h2_Obat Kadaluarsa _ Mendekati Kadaluarsa ( 60</name>
<tag></tag>
<elementGuidId>f939b1e1-ff13-4a45-9ef9-006d7372f7b6</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>.table-header-custom h2</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' table-header-custom ')]//h2</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>h2</value>
<webElementGuid>780b93ee-c662-4c7e-840f-ef98de05b3e6</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>text-lg font-semibold</value>
<webElementGuid>8ba22d95-bb2b-469b-8b16-99a2f760a286</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>Obat Kadaluarsa / Mendekati Kadaluarsa ( 60 Hari)</value>
<webElementGuid>6348ce44-d5fb-4166-9b18-96403fc40cf8</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-c535637c01460a1f38f847abd4105e5c</value>
<webElementGuid>fb929d00-070a-44c3-a834-23309b1d7f5a</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' table-header-custom ')]//h2</value>
<webElementGuid>2cdfb1e5-d34d-4026-b41c-3b93173a4de9</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' table-header-custom ')]//h2</value>
<webElementGuid>9f963a69-490e-4a25-90d2-f20b82d2417f</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//h2[(text() = 'Obat Kadaluarsa / Mendekati Kadaluarsa (≤ 60 Hari)' or . = 'Obat Kadaluarsa / Mendekati Kadaluarsa (≤ 60 Hari)')]</value>
<webElementGuid>96be0120-52ba-4356-aa9f-7c2ff7497cf3</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,97 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>h3_Notifikasi Obat Kadaluarsa</name>
<tag></tag>
<elementGuidId>dd39df14-52a5-4834-a7ec-500d13d443f4</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>h3</value>
</entry>
<entry>
<key>XPATH</key>
<value>//h3</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>h3</value>
<webElementGuid>ef6c518e-bf46-4775-a474-2896f8bc3bc6</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>text-lg font-semibold text-white flex items-center gap-2</value>
<webElementGuid>ad28c62b-1458-4f54-8b18-ecb738c8a737</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>
Notifikasi Obat Kadaluarsa
</value>
<webElementGuid>8b08610e-5c40-4f87-afc6-a5e8d99673c5</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-97d29a63790eb2585213dd13f26320bc</value>
<webElementGuid>96814de8-0918-4b3f-93d9-af6d7ef65c8f</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//h3</value>
<webElementGuid>28f31931-ff2e-4ee3-90db-8f2f4aebe75b</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//h3</value>
<webElementGuid>64cdcabb-6c4f-4773-bf89-247a29adc0cd</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//h3[(text() = '
Notifikasi Obat Kadaluarsa
' or . = '
Notifikasi Obat Kadaluarsa
')]</value>
<webElementGuid>a1d294d6-15f7-41f1-978f-e202e9831386</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,82 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>p_4</name>
<tag></tag>
<elementGuidId>7f354dc8-3b39-4d07-bb29-cb85feb317d8</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>.rounded-xl.card-custom:nth-child(4) p.font-bold</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' rounded-xl ') and contains(concat(' ', normalize-space(@class), ' '), ' card-custom ') and (position() = 4)]//p[@class and contains(concat(' ', normalize-space(@class), ' '), ' font-bold ')]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>p</value>
<webElementGuid>6cc573d1-22f6-44b8-a620-05043d82253e</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>text-2xl font-bold text-[#2F347A]</value>
<webElementGuid>243a4aa4-4f30-49e1-9b22-fd4ad700d8d4</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>4</value>
<webElementGuid>d23838ba-455c-426d-ba33-bd13425fb9c1</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-ef6524d7335347b96406fad40ff7c7c2</value>
<webElementGuid>0a374bc2-36bb-45fd-8eb7-2522ccd849ab</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' rounded-xl ') and contains(concat(' ', normalize-space(@class), ' '), ' card-custom ') and (position() = 4)]//p[@class and contains(concat(' ', normalize-space(@class), ' '), ' font-bold ')]</value>
<webElementGuid>9f8af406-93f2-4e97-a423-ea9cfb2c1610</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' rounded-xl ') and contains(concat(' ', normalize-space(@class), ' '), ' card-custom ') and (position() = 4)]//p[@class and contains(concat(' ', normalize-space(@class), ' '), ' font-bold ')]</value>
<webElementGuid>e0e2ae2e-13f1-4e01-8aaa-0a2d22f25461</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//p[(text() = '4' or . = '4')]</value>
<webElementGuid>1681e047-99d8-4079-ad99-c6dc387f0719</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,82 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>p_Kadaluarsa Dekat</name>
<tag></tag>
<elementGuidId>4820afbb-2aa4-4809-a297-c74ffd270582</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>.rounded-xl.card-custom:nth-child(4) p.text-sm</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' rounded-xl ') and contains(concat(' ', normalize-space(@class), ' '), ' card-custom ') and (position() = 4)]//p[@class and contains(concat(' ', normalize-space(@class), ' '), ' text-sm ')]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>p</value>
<webElementGuid>45b01382-1b61-4318-baa3-508dc7c56e59</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>text-sm text-[#7A7FAE]</value>
<webElementGuid>3a12990d-6466-421c-af4a-be12753cf439</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>Kadaluarsa Dekat</value>
<webElementGuid>a70a9392-f2a9-488a-b398-34fe47046fbc</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-1404aeaf24e14a852a5b4ae42c6004e8</value>
<webElementGuid>7a85c5f4-b17b-4cef-8bc5-7406742b3e06</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' rounded-xl ') and contains(concat(' ', normalize-space(@class), ' '), ' card-custom ') and (position() = 4)]//p[@class and contains(concat(' ', normalize-space(@class), ' '), ' text-sm ')]</value>
<webElementGuid>883ca3ae-c8f7-49e7-8ff8-9c9e629af899</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' rounded-xl ') and contains(concat(' ', normalize-space(@class), ' '), ' card-custom ') and (position() = 4)]//p[@class and contains(concat(' ', normalize-space(@class), ' '), ' text-sm ')]</value>
<webElementGuid>e449841f-5048-4a7e-9d15-4fc5c394c391</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//p[(text() = 'Kadaluarsa Dekat' or . = 'Kadaluarsa Dekat')]</value>
<webElementGuid>cded5e0c-6a49-40bd-8009-f79c16522d2f</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,82 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>p_Obat Keluar (Bulan Ini)</name>
<tag></tag>
<elementGuidId>15e77e8a-ae26-4c57-a5f5-7572dc702821</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>.rounded-xl.card-custom:nth-child(3) p.text-sm</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' rounded-xl ') and contains(concat(' ', normalize-space(@class), ' '), ' card-custom ') and (position() = 3)]//p[@class and contains(concat(' ', normalize-space(@class), ' '), ' text-sm ')]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>p</value>
<webElementGuid>14bc9fb7-dcaa-462f-9dda-ed6ccc3b438a</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>text-sm text-[#7A7FAE]</value>
<webElementGuid>17c13860-1623-4f8c-961b-c6326307e97b</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>Obat Keluar (Bulan Ini)</value>
<webElementGuid>ecc8caa5-3a13-4e08-9085-b264a107c51c</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-12eb52c0f46d25adef4d11c2f4b8bbb5</value>
<webElementGuid>202dbd36-d481-49b3-82e0-0afbe87ce8f1</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' rounded-xl ') and contains(concat(' ', normalize-space(@class), ' '), ' card-custom ') and (position() = 3)]//p[@class and contains(concat(' ', normalize-space(@class), ' '), ' text-sm ')]</value>
<webElementGuid>b603c341-6231-47c1-b02f-3efa9a88502b</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' rounded-xl ') and contains(concat(' ', normalize-space(@class), ' '), ' card-custom ') and (position() = 3)]//p[@class and contains(concat(' ', normalize-space(@class), ' '), ' text-sm ')]</value>
<webElementGuid>eec1a49f-fad8-4003-ad24-8dfb64f41df8</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//p[(text() = 'Obat Keluar (Bulan Ini)' or . = 'Obat Keluar (Bulan Ini)')]</value>
<webElementGuid>1a7f619d-b66e-45be-8918-a392a6a969a1</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,82 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>p_Obat Masuk (Bulan Ini)</name>
<tag></tag>
<elementGuidId>96adda24-0ede-485d-a448-cbc16a4f8fa2</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>.rounded-xl.card-custom:nth-child(2) p.text-sm</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' rounded-xl ') and contains(concat(' ', normalize-space(@class), ' '), ' card-custom ') and (position() = 2)]//p[@class and contains(concat(' ', normalize-space(@class), ' '), ' text-sm ')]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>p</value>
<webElementGuid>dcc3b1ff-e4f8-44a3-94b7-b41cf5418c5c</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>text-sm text-[#7A7FAE]</value>
<webElementGuid>7e661d23-cb38-47cb-8fac-3457e16b06b2</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>Obat Masuk (Bulan Ini)</value>
<webElementGuid>593d4200-1129-4a39-a5c7-b95f20f41880</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-987fea2a214a068fcb0cf24a6c30b0cf</value>
<webElementGuid>20b3ab63-be2f-4aa1-89e9-bda730b1a842</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' rounded-xl ') and contains(concat(' ', normalize-space(@class), ' '), ' card-custom ') and (position() = 2)]//p[@class and contains(concat(' ', normalize-space(@class), ' '), ' text-sm ')]</value>
<webElementGuid>f05940dc-120e-4fd0-b0db-d17ed113ae2e</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' rounded-xl ') and contains(concat(' ', normalize-space(@class), ' '), ' card-custom ') and (position() = 2)]//p[@class and contains(concat(' ', normalize-space(@class), ' '), ' text-sm ')]</value>
<webElementGuid>b523a977-fcf9-4dba-b1be-f019ae842d76</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//p[(text() = 'Obat Masuk (Bulan Ini)' or . = 'Obat Masuk (Bulan Ini)')]</value>
<webElementGuid>ee94286a-db85-4c5c-9a2c-22c38f6080e8</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,82 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>p_Total Obat Masuk</name>
<tag></tag>
<elementGuidId>144f2f78-be0e-4c1a-bb21-63863642248e</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>.rounded-xl.card-custom:nth-child(1) p.text-sm</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' rounded-xl ') and contains(concat(' ', normalize-space(@class), ' '), ' card-custom ') and (position() = 1)]//p[@class and contains(concat(' ', normalize-space(@class), ' '), ' text-sm ')]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>p</value>
<webElementGuid>2af2e44a-6fe5-44e4-9a79-f847ea7ae858</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>text-sm text-[#7A7FAE]</value>
<webElementGuid>b19b96d5-09ff-4171-99b3-60a6ab7584af</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>Total Obat Masuk</value>
<webElementGuid>b74db163-df7f-4867-a454-2c0c0b251e5b</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-c0a19f33a4a991b1938b8345769012de</value>
<webElementGuid>48ec724a-b575-4789-acd5-d6e74c74355a</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' rounded-xl ') and contains(concat(' ', normalize-space(@class), ' '), ' card-custom ') and (position() = 1)]//p[@class and contains(concat(' ', normalize-space(@class), ' '), ' text-sm ')]</value>
<webElementGuid>3825ece5-ad12-4a7f-abab-4f9d8d9b812b</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' rounded-xl ') and contains(concat(' ', normalize-space(@class), ' '), ' card-custom ') and (position() = 1)]//p[@class and contains(concat(' ', normalize-space(@class), ' '), ' text-sm ')]</value>
<webElementGuid>060772a4-7ea9-49e5-bb00-af5311712f2f</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//p[(text() = 'Total Obat Masuk' or . = 'Total Obat Masuk')]</value>
<webElementGuid>9cce5793-753f-42d5-8c7b-16e858de9b0f</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,90 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>path_path</name>
<tag></tag>
<elementGuidId>19953eb5-7d6d-433a-a5e8-a159d0931553</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>.relative [stroke-linejoin=&quot;round&quot;]</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' relative ')]//*[@stroke-linejoin = 'round']</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>path</value>
<webElementGuid>66018472-50d1-4b4b-8dc1-b416e0565419</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>stroke-linecap</name>
<type>Main</type>
<value>round</value>
<webElementGuid>f2cc75e2-32a0-45b8-afba-425372445ee8</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>stroke-linejoin</name>
<type>Main</type>
<value>round</value>
<webElementGuid>6824bbcc-096e-48fc-91a3-56c3debeb5dd</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>stroke-width</name>
<type>Main</type>
<value>2</value>
<webElementGuid>8953e53e-9d5a-4a66-8e9a-29e6b66954f6</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>d</name>
<type>Main</type>
<value>M15 17h5l-1.405-1.405A2.032 2.032 0 0118 14.158V11a6.002 6.002 0 00-4-5.659V5a2 2 0 10-4 0v.341C7.67 6.165 6 8.388 6 11v3.159c0 .538-.214 1.055-.595 1.436L4 17h5m6 0v1a3 3 0 11-6 0v-1m6 0H9</value>
<webElementGuid>650178a9-cbb7-4768-a66a-b2f87fb4dd49</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-ffdc0d53845884f0367b590e97386929</value>
<webElementGuid>0fe15d69-b4e8-42b0-a50d-465abd257400</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' relative ')]//*[@stroke-linejoin = 'round']</value>
<webElementGuid>2c975c06-0fac-455a-a884-2343cf176b57</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' relative ')]//*[@stroke-linejoin = 'round']</value>
<webElementGuid>48c2a8ac-1ddc-4696-9804-ac48964c1bff</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,369 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>select_chart_month</name>
<tag></tag>
<elementGuidId>d66cba8e-7974-46f7-bbd4-36bc3b2c69a3</elementGuidId>
<selectorCollection>
<entry>
<key>BASIC</key>
<value>//*[@name = 'chart_month' and (text() = '
April 2026
March 2026
February 2026
January 2026
December 2025
November 2025
October 2025
September 2025
August 2025
July 2025
June 2025
May 2025
' or . = '
April 2026
March 2026
February 2026
January 2026
December 2025
November 2025
October 2025
September 2025
August 2025
July 2025
June 2025
May 2025
')]</value>
</entry>
<entry>
<key>CSS</key>
<value>[name=&quot;chart_month&quot;]</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[@name = 'chart_month']</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>select</value>
<webElementGuid>1bec632a-4042-45b0-b808-55ddb6e709fb</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>name</name>
<type>Main</type>
<value>chart_month</value>
<webElementGuid>e2ddb708-8086-437b-84d5-5adf44865b08</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>onchange</name>
<type>Main</type>
<value>updateChartYear(this); this.form.submit();</value>
<webElementGuid>386aee29-2522-4d30-89a4-4cdfbf316be5</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>px-3 py-1.5 border border-[#E5E7F2] rounded-lg focus:ring-2 focus:ring-[#4A538F] focus:border-[#4A538F] bg-white text-[#2F347A] text-sm</value>
<webElementGuid>b79a7cd1-a7b8-47bc-9192-9bfca69f7f28</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>
April 2026
March 2026
February 2026
January 2026
December 2025
November 2025
October 2025
September 2025
August 2025
July 2025
June 2025
May 2025
</value>
<webElementGuid>e98f0747-0704-4fe8-8053-db9320b1c508</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-14b6b8530f352cc2debf413bcb9a4539</value>
<webElementGuid>62f1e0cc-1582-44cf-8564-101e256cfc29</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[@name = 'chart_month']</value>
<webElementGuid>63abf054-241a-4b30-b118-78aa59402a9a</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[@name = 'chart_month']</value>
<webElementGuid>7760769e-0095-4021-a6ea-f6df9ccd185f</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//select[@name = 'chart_month' and (text() = '
April 2026
March 2026
February 2026
January 2026
December 2025
November 2025
October 2025
September 2025
August 2025
July 2025
June 2025
May 2025
' or . = '
April 2026
March 2026
February 2026
January 2026
December 2025
November 2025
October 2025
September 2025
August 2025
July 2025
June 2025
May 2025
')]</value>
<webElementGuid>e6635bed-0218-4399-9b7e-23cb2dc0a762</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//select[@name = 'chart_month' and (text() = '
March 2026
February 2026
January 2026
December 2025
November 2025
October 2025
September 2025
August 2025
July 2025
June 2025
May 2025
April 2025
' or . = '
March 2026
February 2026
January 2026
December 2025
November 2025
October 2025
September 2025
August 2025
July 2025
June 2025
May 2025
April 2025
')]</value>
<webElementGuid>ffd93bc5-91a1-4155-a61e-3522287e6f64</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,88 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>span_3</name>
<tag></tag>
<elementGuidId>79fd85f0-440a-4206-94b9-d0d8f531e1f0</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>.font-bold.rounded-full</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' font-bold ') and contains(concat(' ', normalize-space(@class), ' '), ' rounded-full ')]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>span</value>
<webElementGuid>0f82c024-8d94-4fa4-b40b-5af8a606076c</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>absolute -top-1 -right-1 w-5 h-5 bg-red-500 text-white text-xs font-bold rounded-full flex items-center justify-center</value>
<webElementGuid>b1da560d-934f-4ad0-b805-ef8f02fbab42</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>
3
</value>
<webElementGuid>cbcfce5c-a042-4d43-95d2-c72078c512b8</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-7490fb3bf1d2e343d843a1ed3f66bfe5</value>
<webElementGuid>b2646ae0-049a-47be-87e5-25d395152320</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' font-bold ') and contains(concat(' ', normalize-space(@class), ' '), ' rounded-full ')]</value>
<webElementGuid>40fe342d-ec1f-4756-9e38-ec0c0f3b7867</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' font-bold ') and contains(concat(' ', normalize-space(@class), ' '), ' rounded-full ')]</value>
<webElementGuid>16a48a25-ca98-4e7a-9c1a-7d825575e55a</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//span[(text() = '
3
' or . = '
3
')]</value>
<webElementGuid>7b490d26-acd2-4b9a-a6c3-caaae1000503</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,102 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>svg_w-5 h-5</name>
<tag></tag>
<elementGuidId>efc4129c-de69-4934-a8fb-dca517200172</elementGuidId>
<selectorCollection>
<entry>
<key>BASIC</key>
<value>//button[@onclick = 'document.getElementById('notificationModal').classList.add('hidden')']//*[@stroke = 'currentColor']</value>
</entry>
<entry>
<key>CSS</key>
<value>button[onclick=&quot;document\.getElementById\(\'notificationModal\'\)\.classList\.add\(\'hidden\'\)&quot;] [stroke=&quot;currentColor&quot;]</value>
</entry>
<entry>
<key>XPATH</key>
<value>//button[@onclick = 'document.getElementById('notificationModal').classList.add('hidden')']//*[@stroke = 'currentColor']</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>svg</value>
<webElementGuid>6d5f9d1b-2da5-4d60-a006-a8c695371afa</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>w-5 h-5</value>
<webElementGuid>9911601d-a75f-4790-9e33-d088a55898b6</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>fill</name>
<type>Main</type>
<value>none</value>
<webElementGuid>0b807d3b-e262-4c38-a950-9f061c3a4427</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>stroke</name>
<type>Main</type>
<value>currentColor</value>
<webElementGuid>d3091696-1fc0-446f-b4a2-6ca5b222646c</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>viewBox</name>
<type>Main</type>
<value>0 0 24 24</value>
<webElementGuid>435517e7-3c7d-4dce-ba0d-6a0b57ab2773</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-ab53e5d616180b40cad728c46da6b559</value>
<webElementGuid>2556cd7f-fcd1-415d-bc9f-e22010ccfac6</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//button[@onclick = 'document.getElementById('notificationModal').classList.add('hidden')']//*[@stroke = 'currentColor']</value>
<webElementGuid>f293dfbc-9ba4-42df-a311-ec857d8534cb</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//button[@onclick = 'document.getElementById('notificationModal').classList.add('hidden')']//*[@stroke = 'currentColor']</value>
<webElementGuid>a3dea830-9f44-4e47-a6f8-d56257a9a0d1</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[@title = 'Logout']//*[@stroke = 'currentColor']</value>
<webElementGuid>25991654-bc3f-4f55-aa3a-c56096ac069c</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,90 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>svg_w-6 h-6</name>
<tag></tag>
<elementGuidId>23007cae-d900-45b6-9a1b-0673c8d6911d</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>.relative [stroke=&quot;currentColor&quot;]</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' relative ')]//*[@stroke = 'currentColor']</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>svg</value>
<webElementGuid>6464117c-9949-4b29-9378-19562c09c9bc</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>w-6 h-6</value>
<webElementGuid>9c7cc19f-c6ed-4d9b-ad79-aa33abcb1351</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>fill</name>
<type>Main</type>
<value>none</value>
<webElementGuid>82935b64-5f70-45cd-b244-1152fae712f2</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>stroke</name>
<type>Main</type>
<value>currentColor</value>
<webElementGuid>e0ed30a7-ae97-4aa1-993e-44870ee5dffa</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>viewBox</name>
<type>Main</type>
<value>0 0 24 24</value>
<webElementGuid>94288a12-4535-482d-8ef8-de0d0de0813f</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-df7690d5d760d33ef47a5eac223405b5</value>
<webElementGuid>ca143fc1-b83d-4e58-9649-4f424badc13c</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' relative ')]//*[@stroke = 'currentColor']</value>
<webElementGuid>e56a53f5-a579-4369-a89e-9e500e827e2d</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' relative ')]//*[@stroke = 'currentColor']</value>
<webElementGuid>5775266b-d102-424b-b604-26cca1399631</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,88 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>td_td -71 hari (lewat)</name>
<tag></tag>
<elementGuidId>264e8fc5-4c94-4bbd-9925-f6bd6e81c94e</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>tr:nth-child(1) td.whitespace-nowrap.text-sm.font-medium</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[(name() = 'tr') and (position() = 1)]//td[@class and contains(concat(' ', normalize-space(@class), ' '), ' whitespace-nowrap ') and contains(concat(' ', normalize-space(@class), ' '), ' text-sm ') and contains(concat(' ', normalize-space(@class), ' '), ' font-medium ')]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>td</value>
<webElementGuid>5f0f4487-470e-426f-99c7-1c89f0c35490</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>px-6 py-4 whitespace-nowrap text-sm font-medium text-[#C0392B]</value>
<webElementGuid>aab8c818-cda4-435e-8f75-ac15bedaa8dd</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>
-71 hari (lewat)
</value>
<webElementGuid>238052db-0f42-42eb-b9b4-cca22ce3e16e</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-a7c2b24e22d7610e0e0632c8292ed4ec</value>
<webElementGuid>027673dd-ca95-4a10-ba3b-b3bef05ed0a3</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 1)]//td[@class and contains(concat(' ', normalize-space(@class), ' '), ' whitespace-nowrap ') and contains(concat(' ', normalize-space(@class), ' '), ' text-sm ') and contains(concat(' ', normalize-space(@class), ' '), ' font-medium ')]</value>
<webElementGuid>90d3c817-64c9-47cf-803c-7c397830e88e</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 1)]//td[@class and contains(concat(' ', normalize-space(@class), ' '), ' whitespace-nowrap ') and contains(concat(' ', normalize-space(@class), ' '), ' text-sm ') and contains(concat(' ', normalize-space(@class), ' '), ' font-medium ')]</value>
<webElementGuid>d089f9f5-15aa-4368-bd35-7722f826068f</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//td[(text() = '
-71 hari (lewat)
' or . = '
-71 hari (lewat)
')]</value>
<webElementGuid>65f8e5b8-e32d-4cf8-a33b-d5dbce903f8f</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,82 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>th_Status</name>
<tag></tag>
<elementGuidId>35848513-7bc3-4644-9eed-d4a0428e90d3</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>.text-left:nth-child(6)</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' text-left ') and (position() = 6)]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>th</value>
<webElementGuid>1c597ff1-9783-4c38-bf5a-2710283e93d5</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>px-6 py-3 text-left text-xs font-medium text-[#7A7FAE] uppercase tracking-wider</value>
<webElementGuid>233b6c8e-f206-457d-bf4d-e8b6293bdf60</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>Status</value>
<webElementGuid>baf2e70f-edcf-4b1a-9676-d8212f93dff3</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-60d8e2d2c33896bd4001b1d78c9146d9</value>
<webElementGuid>d7aa6963-ca49-4f12-8c95-101282363a0a</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' text-left ') and (position() = 6)]</value>
<webElementGuid>ce72761f-2e52-4471-a847-05805676d2f0</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' text-left ') and (position() = 6)]</value>
<webElementGuid>43e28555-7f5e-46bf-8a73-41647b9297d8</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//th[(text() = 'Status' or . = 'Status')]</value>
<webElementGuid>17540de9-c431-4294-92bc-83bc211f4b12</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,90 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>a_Detail</name>
<tag></tag>
<elementGuidId>5aca3f31-f6d8-4c10-ad4a-ad12252cfd6c</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>tr:nth-child(1) a.block:nth-child(1)</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[(name() = 'tr') and (position() = 1)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' block ') and (name() = 'a') and (position() = 1)]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>a</value>
<webElementGuid>bc78fa11-594b-4f36-9cdf-03c34c1a7217</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>href</name>
<type>Main</type>
<value>https://medory.my.id/obat-keluar/16</value>
<webElementGuid>70c26e7d-7ce9-448a-ae55-302357f2bc01</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>block px-4 py-2 text-sm text-[#2F347A] hover:bg-[#F4F6FF]</value>
<webElementGuid>ebc0046e-55d1-4fc2-9528-24bcb586094d</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>Detail</value>
<webElementGuid>e8616027-c609-4856-85e7-1aca989a063c</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-504f11cc4afffa6b4dbca7983921b1ee</value>
<webElementGuid>a16abb38-38f7-4100-b2c8-9140f518405f</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 1)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' block ') and (name() = 'a') and (position() = 1)]</value>
<webElementGuid>7a925fc1-3206-4fb3-8169-8fc8742dd689</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 1)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' block ') and (name() = 'a') and (position() = 1)]</value>
<webElementGuid>3ce23c77-45ca-4eac-9050-ecd5c6fe4c1d</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//a[@href = 'https://medory.my.id/obat-keluar/16' and (text() = 'Detail' or . = 'Detail')]</value>
<webElementGuid>d64d94d0-3602-4f85-83c7-fee01556e5ff</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,90 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>a_Detail_1</name>
<tag></tag>
<elementGuidId>f4892979-be1d-4be2-a70a-c0a1d6009c99</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>tr:nth-child(3) a.block:nth-child(1)</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[(name() = 'tr') and (position() = 3)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' block ') and (name() = 'a') and (position() = 1)]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>a</value>
<webElementGuid>b677f591-8f6e-4b6b-8d31-79500c31d3ec</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>href</name>
<type>Main</type>
<value>https://medory.my.id/obat-keluar/13</value>
<webElementGuid>50fc5e30-ca65-4f87-bffd-f0a54e591be7</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>block px-4 py-2 text-sm text-[#2F347A] hover:bg-[#F4F6FF]</value>
<webElementGuid>0117db8b-d0a9-47e1-85bb-d4d5a8eacfb3</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>Detail</value>
<webElementGuid>0519b8ab-4df7-4aa3-969e-8452474b3946</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-38bd862c35fc8c76f72a072ca3f82d56</value>
<webElementGuid>00f13bf2-f286-46c5-9b98-942641bbf757</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 3)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' block ') and (name() = 'a') and (position() = 1)]</value>
<webElementGuid>0aa3ea00-2206-4830-a14c-9b79f2c86a92</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 3)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' block ') and (name() = 'a') and (position() = 1)]</value>
<webElementGuid>e53d38a7-cf25-474e-bb6d-12001832b36c</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//a[@href = 'https://medory.my.id/obat-keluar/13' and (text() = 'Detail' or . = 'Detail')]</value>
<webElementGuid>b16a63b2-9655-4412-a042-7b1f5a54143e</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,110 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>a_Edit</name>
<tag></tag>
<elementGuidId>4a922db7-74c7-4ceb-8370-b21928692a07</elementGuidId>
<selectorCollection>
<entry>
<key>BASIC</key>
<value>//*[@href = 'https://medory.my.id/obat-keluar/16/edit' and (text() = 'Edit' or . = 'Edit')]</value>
</entry>
<entry>
<key>CSS</key>
<value>tr:nth-child(1) a.block:nth-child(2)</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[(name() = 'tr') and (position() = 1)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' block ') and (name() = 'a') and (position() = 2)]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>a</value>
<webElementGuid>c6d108f1-c560-4cb5-87fb-3893ad2b5489</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>href</name>
<type>Main</type>
<value>https://medory.my.id/obat-keluar/16/edit</value>
<webElementGuid>a6a271c4-b2b2-4e04-a9ac-ff5db2b35a5e</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>block px-4 py-2 text-sm text-[#2F347A] hover:bg-[#F4F6FF]</value>
<webElementGuid>d6d22439-e52e-43db-a731-9c7e49e185a5</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>Edit</value>
<webElementGuid>f689b8d2-bd9f-4717-a759-928b54c47cfb</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-d217a4b79e91d2f185b07e46e57ffd60</value>
<webElementGuid>bf579afe-1251-4921-b99f-a10721bf9c32</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 1)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' block ') and (name() = 'a') and (position() = 2)]</value>
<webElementGuid>26d6da78-2b38-4e8b-81d4-a5cc85898cc3</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 1)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' block ') and (name() = 'a') and (position() = 2)]</value>
<webElementGuid>5a288dcb-ca94-44c1-82f5-8e0f8d8286b9</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//a[@href = 'https://medory.my.id/obat-keluar/16/edit' and (text() = 'Edit' or . = 'Edit')]</value>
<webElementGuid>91b4ec58-b165-43af-b8f4-5d956c363ac9</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 3)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' block ') and (name() = 'a') and (position() = 2)]</value>
<webElementGuid>4dab5fb9-6a21-44f7-8164-5ae167943ad8</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//a[@href = 'https://medory.my.id/obat-keluar/14/edit' and (text() = 'Edit' or . = 'Edit')]</value>
<webElementGuid>92fe3a12-581a-43a0-b0f5-ad7dff4ecb53</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,104 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>a_Go to page 1</name>
<tag></tag>
<elementGuidId>e729ddfc-b385-48dc-8074-984866440bbb</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>[aria-label=&quot;Go\ to\ page\ 1&quot;]</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[@aria-label = 'Go to page 1']</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>a</value>
<webElementGuid>37c51e5e-7031-4526-92b7-032e51136cfa</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>href</name>
<type>Main</type>
<value>https://medory.my.id/obat-keluar?page=1</value>
<webElementGuid>317014b5-8609-4959-96d7-d6c7038e0497</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>inline-flex items-center px-4 py-2 -ml-px text-sm font-medium text-gray-700 bg-white border border-gray-300 leading-5 hover:text-gray-700 focus:outline-none focus:ring ring-gray-300 focus:border-blue-300 active:bg-gray-100 active:text-gray-700 transition ease-in-out duration-150 dark:bg-gray-800 dark:border-gray-600 dark:text-gray-300 dark:hover:text-gray-300 dark:active:bg-gray-700 dark:focus:border-blue-800 hover:bg-gray-100 dark:hover:bg-gray-900</value>
<webElementGuid>d2f5448a-f2d1-40ba-b870-c0e2f24fc3e0</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>aria-label</name>
<type>Main</type>
<value>Go to page 1</value>
<webElementGuid>07e7ed9a-1933-409b-8ea7-a344cd01f59c</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>
1
</value>
<webElementGuid>1277a363-061d-461c-b98f-4be2b5134f90</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-90bbbb8734589d65d5dc22f3b5fbb484</value>
<webElementGuid>27c6fa91-e64a-4688-afb7-1a743e10fba9</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[@aria-label = 'Go to page 1']</value>
<webElementGuid>f5f0c1e4-910e-4ed5-85bf-49eaafbcdc1a</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[@aria-label = 'Go to page 1']</value>
<webElementGuid>bc61f8ab-11d3-412a-bf1f-38b328081ced</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//a[@href = 'https://medory.my.id/obat-keluar?page=1' and (text() = '
1
' or . = '
1
')]</value>
<webElementGuid>ea58dd3d-7f82-4c2c-87a8-9d30979a14e1</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,104 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>a_Go to page 2</name>
<tag></tag>
<elementGuidId>17bbbdfc-241d-4944-ba7b-a8b661f94374</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>[aria-label=&quot;Go\ to\ page\ 2&quot;]</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[@aria-label = 'Go to page 2']</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>a</value>
<webElementGuid>ffb4ab5f-26c0-47c2-9993-3374d4664c3d</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>href</name>
<type>Main</type>
<value>https://medory.my.id/obat-keluar?page=2</value>
<webElementGuid>130f82f4-9e11-4e46-8591-1d2656082447</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>inline-flex items-center px-4 py-2 -ml-px text-sm font-medium text-gray-700 bg-white border border-gray-300 leading-5 hover:text-gray-700 focus:outline-none focus:ring ring-gray-300 focus:border-blue-300 active:bg-gray-100 active:text-gray-700 transition ease-in-out duration-150 dark:bg-gray-800 dark:border-gray-600 dark:text-gray-300 dark:hover:text-gray-300 dark:active:bg-gray-700 dark:focus:border-blue-800 hover:bg-gray-100 dark:hover:bg-gray-900</value>
<webElementGuid>43b4a686-0241-4bcc-b719-fa80b03776f3</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>aria-label</name>
<type>Main</type>
<value>Go to page 2</value>
<webElementGuid>5f6950e8-1e22-46b5-b5c4-0428296f32d3</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>
2
</value>
<webElementGuid>793aa6c4-57bc-417d-8955-045a5c294998</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-80454b4c0d20e70f2d881ded37be0a44</value>
<webElementGuid>0b62a5b9-12a7-4fb0-b125-24b1a48e4381</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[@aria-label = 'Go to page 2']</value>
<webElementGuid>556f44ad-8afc-4cc2-81b4-80a4f6e4ff9f</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[@aria-label = 'Go to page 2']</value>
<webElementGuid>80d69f27-faf2-4292-90a4-7e275822184a</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//a[@href = 'https://medory.my.id/obat-keluar?page=2' and (text() = '
2
' or . = '
2
')]</value>
<webElementGuid>ecaaf3b5-1542-42e4-ac37-b9b2cfd03054</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,104 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>a_Reset</name>
<tag></tag>
<elementGuidId>26129656-08a7-46e5-b0ea-aafbaa385d50</elementGuidId>
<selectorCollection>
<entry>
<key>BASIC</key>
<value>//*[@href = 'https://medory.my.id/obat-keluar' and (text() = '
Reset
' or . = '
Reset
')]</value>
</entry>
<entry>
<key>CSS</key>
<value>a.rounded-lg.transition-colors[href=&quot;https\:\/\/medory\.my\.id\/obat-keluar&quot;]</value>
</entry>
<entry>
<key>XPATH</key>
<value>//a[@class and contains(concat(' ', normalize-space(@class), ' '), ' rounded-lg ') and contains(concat(' ', normalize-space(@class), ' '), ' transition-colors ') and (@href = 'https://medory.my.id/obat-keluar')]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>a</value>
<webElementGuid>bece3d84-a71f-4534-9a71-476cc23c6e29</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>href</name>
<type>Main</type>
<value>https://medory.my.id/obat-keluar</value>
<webElementGuid>f25b4fad-6709-4468-a838-45dfa9356540</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>px-4 py-2.5 bg-[#E9EBF5] text-[#4A538F] rounded-lg hover:bg-[#d8dce8] transition-colors</value>
<webElementGuid>5dd807a7-9b07-4f95-bb96-500d18b5e95e</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>
Reset
</value>
<webElementGuid>1aef89a1-e5c8-4f32-ad96-afda2f3a022f</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-566e1489a71c0678627a04aa782efcb6</value>
<webElementGuid>92649b64-0445-464b-980d-cdb01afcb59f</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//a[@class and contains(concat(' ', normalize-space(@class), ' '), ' rounded-lg ') and contains(concat(' ', normalize-space(@class), ' '), ' transition-colors ') and (@href = 'https://medory.my.id/obat-keluar')]</value>
<webElementGuid>d4f82398-c7d7-4426-88b3-0358e9980ef9</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//a[@class and contains(concat(' ', normalize-space(@class), ' '), ' rounded-lg ') and contains(concat(' ', normalize-space(@class), ' '), ' transition-colors ') and (@href = 'https://medory.my.id/obat-keluar')]</value>
<webElementGuid>85c624cc-94f6-4605-b0f2-6ad3b4f2d64e</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//a[@href = 'https://medory.my.id/obat-keluar' and (text() = '
Reset
' or . = '
Reset
')]</value>
<webElementGuid>c3b60d37-3abf-46c7-ab75-18c0d90439c2</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,119 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>a_Tambah Obat</name>
<tag></tag>
<elementGuidId>ece51ac8-641f-471c-ae64-c24681c1bc4f</elementGuidId>
<selectorCollection>
<entry>
<key>BASIC</key>
<value>//*[@href = 'https://medory.my.id/obat-keluar/create' and (text() = '
Tambah Obat
' or . = '
Tambah Obat
')]</value>
</entry>
<entry>
<key>CSS</key>
<value>[href=&quot;https\:\/\/medory\.my\.id\/obat-keluar\/create&quot;]</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[@href = 'https://medory.my.id/obat-keluar/create']</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>a</value>
<webElementGuid>70df5dba-eae3-4d33-8515-4fc255723202</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>href</name>
<type>Main</type>
<value>https://medory.my.id/obat-keluar/create</value>
<webElementGuid>3748a323-3f54-4acd-a4d9-93cddf7cda2e</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>inline-flex items-center gap-2 px-5 py-2.5 rounded-lg font-medium transition-colors focus:ring-2 focus:ring-offset-2 text-sm bg-[#4A538F] text-white hover:bg-[#424B84] focus:ring-[#4A538F]</value>
<webElementGuid>6c0e5944-e9c5-454f-8298-451dbadca659</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>
Tambah Obat
</value>
<webElementGuid>0bdaa1e2-9f3e-4235-a9dd-55e47c02c574</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-5876b772167c188b8e15822b14819f3e</value>
<webElementGuid>d0bc0dc5-c1cf-4e8d-8406-5f4ee176bec3</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[@href = 'https://medory.my.id/obat-keluar/create']</value>
<webElementGuid>b5b21658-901f-4b81-9642-211787ef4b2d</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[@href = 'https://medory.my.id/obat-keluar/create']</value>
<webElementGuid>957f0ca4-afb3-4e81-913b-9a16d4c616ac</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//a[@href = 'https://medory.my.id/obat-keluar/create' and (text() = '
Tambah Obat
' or . = '
Tambah Obat
')]</value>
<webElementGuid>827301d6-688e-4c6c-928f-2ebc696d6302</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,112 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>button_Filter</name>
<tag></tag>
<elementGuidId>2e660d1a-456c-47f6-92c9-4ee22a085981</elementGuidId>
<selectorCollection>
<entry>
<key>BASIC</key>
<value>//*[@type = 'submit' and (text() = '
Filter
' or . = '
Filter
')]</value>
</entry>
<entry>
<key>CSS</key>
<value>.text-white.transition-colors[type=&quot;submit&quot;]</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' text-white ') and contains(concat(' ', normalize-space(@class), ' '), ' transition-colors ') and (@type = 'submit')]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>button</value>
<webElementGuid>b3413308-6403-43bc-a850-c6fba29e6021</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>type</name>
<type>Main</type>
<value>submit</value>
<webElementGuid>2b952e92-5018-4c3c-9641-f5137c8c7302</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>flex-1 px-4 py-2.5 bg-[#4A538F] text-white rounded-lg hover:bg-[#424B84] transition-colors</value>
<webElementGuid>0d40d0d7-e5c1-42b7-8bd6-e9e47e8d5abb</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>
Filter
</value>
<webElementGuid>f8fef138-3a78-47a8-804b-0fb73024b8ce</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-a0dcee2ab45b51a0c462154d38d360e0</value>
<webElementGuid>d2c3e060-20f0-469f-a02a-288273f3e819</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' text-white ') and contains(concat(' ', normalize-space(@class), ' '), ' transition-colors ') and (@type = 'submit')]</value>
<webElementGuid>792e9ea5-9da5-49dc-9943-3fad09e55b7c</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' text-white ') and contains(concat(' ', normalize-space(@class), ' '), ' transition-colors ') and (@type = 'submit')]</value>
<webElementGuid>72db514e-01ff-4974-80d9-07ec453220ca</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//button[@type = 'submit' and (text() = '
Filter
' or . = '
Filter
')]</value>
<webElementGuid>0e484352-e959-400d-a332-e15e55d4880e</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' text-white ') and (@type = 'submit')]</value>
<webElementGuid>31f39cf8-1af8-4535-b87a-12c437a6d809</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,101 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>button_Hapus</name>
<tag></tag>
<elementGuidId>9f6def20-d2a7-4af8-b87d-e37b3c0c608a</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>tr:nth-child(2) .text-left[type=&quot;submit&quot;]</value>
</entry>
<entry>
<key>XPATH</key>
<value>/html/body/div[1]/main/div/div[4]/div[2]/table/tbody/tr[1]/td[7]/div/div/form/button</value>
</entry>
<entry>
<key>BASIC</key>
<value>//*[@type = 'submit' and (text() = 'Hapus' or . = 'Hapus')]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>button</value>
<webElementGuid>c4797a7c-1bb0-493b-beb9-ab145886dcfe</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>type</name>
<type>Main</type>
<value>submit</value>
<webElementGuid>6b89f90f-3966-4fa1-a0a1-d194278a822e</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>block w-full text-left px-4 py-2 text-sm text-[#C0392B] hover:bg-[#FFD6D6]</value>
<webElementGuid>c945022b-413c-46c4-b157-367b5e6fbee6</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>Hapus</value>
<webElementGuid>c0a86f0f-318a-4933-9842-f60fe5aed503</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-552b9bd5f1d7848a47fb2275e887221d</value>
<webElementGuid>2379d464-55d7-4663-9f25-5d51a014888c</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 2)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' text-left ') and (@type = 'submit')]</value>
<webElementGuid>6756428c-bf61-4eda-868b-9f80e5bb0d04</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 2)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' text-left ') and (@type = 'submit')]</value>
<webElementGuid>276115d7-8f90-40e7-9c1e-df86288ab533</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//button[@type = 'submit' and (text() = 'Hapus' or . = 'Hapus')]</value>
<webElementGuid>7382ea6b-1818-40ba-9f8e-ae45bbca367a</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 5)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' text-left ') and (@type = 'submit')]</value>
<webElementGuid>4e540925-3aad-4860-8a01-b2349c27f25f</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,82 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>div_Amlodipine 5mg</name>
<tag></tag>
<elementGuidId>cec92408-3512-427d-9c87-97a1bc6f1373</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>tr:nth-child(1) div.font-medium</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[(name() = 'tr') and (position() = 1)]//div[@class and contains(concat(' ', normalize-space(@class), ' '), ' font-medium ')]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>div</value>
<webElementGuid>bdedd39a-3edc-4626-b221-70a0cf01be56</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>font-medium text-[#2F347A]</value>
<webElementGuid>cafae963-720d-4892-a69b-6854a8740488</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>Amlodipine 5mg</value>
<webElementGuid>fa472c72-1820-4a8c-915e-98e938a277b6</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-ac27577ce360d9a360a4a4010a383468</value>
<webElementGuid>a1547f13-1fa2-412c-bb4a-cb84428301a2</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 1)]//div[@class and contains(concat(' ', normalize-space(@class), ' '), ' font-medium ')]</value>
<webElementGuid>6ba578fc-5815-414c-b3dd-3c4cf0c374e9</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 1)]//div[@class and contains(concat(' ', normalize-space(@class), ' '), ' font-medium ')]</value>
<webElementGuid>aa75d243-8270-4e84-b661-e8e53e5f732e</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//div[(text() = 'Amlodipine 5mg' or . = 'Amlodipine 5mg')]</value>
<webElementGuid>e2cd69c1-1a41-480a-80ef-69574fadfa47</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,96 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>div_Data obat keluar berhasil dihapus dan stok d</name>
<tag></tag>
<elementGuidId>e4241e34-c40b-420b-acd0-e774064a1166</elementGuidId>
<selectorCollection>
<entry>
<key>BASIC</key>
<value>//*[(text() = '
Data obat keluar berhasil dihapus dan stok dikembalikan
' or . = '
Data obat keluar berhasil dihapus dan stok dikembalikan
')]</value>
</entry>
<entry>
<key>CSS</key>
<value>main > div > div.rounded-lg.border</value>
</entry>
<entry>
<key>XPATH</key>
<value>//main/div/div[@class and contains(concat(' ', normalize-space(@class), ' '), ' rounded-lg ') and contains(concat(' ', normalize-space(@class), ' '), ' border ')]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>div</value>
<webElementGuid>929ad622-fc6a-49b7-bfc9-623d3e3d2001</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>bg-[#C9F7E3] border border-[#1F9254] text-[#1F9254] px-4 py-3 rounded-lg</value>
<webElementGuid>2a3e444b-59e0-4340-8529-84828c310418</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>
Data obat keluar berhasil dihapus dan stok dikembalikan
</value>
<webElementGuid>bd8ae24f-1108-4b3e-8ced-ba09d1afb24a</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-eedebcf07dc3c60d2663b281dc9f4512</value>
<webElementGuid>455b2431-75b3-4d73-9121-219efd2eeb54</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//main/div/div[@class and contains(concat(' ', normalize-space(@class), ' '), ' rounded-lg ') and contains(concat(' ', normalize-space(@class), ' '), ' border ')]</value>
<webElementGuid>812dcbed-64cd-4df3-887b-e7fa3656a18a</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//main/div/div[@class and contains(concat(' ', normalize-space(@class), ' '), ' rounded-lg ') and contains(concat(' ', normalize-space(@class), ' '), ' border ')]</value>
<webElementGuid>81206043-b137-460f-a9a7-1058315baa88</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//div[(text() = '
Data obat keluar berhasil dihapus dan stok dikembalikan
' or . = '
Data obat keluar berhasil dihapus dan stok dikembalikan
')]</value>
<webElementGuid>2a30dd0d-6100-458f-975a-fbf1a89d1910</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,88 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>div_Data obat keluar berhasil ditambahkan dan st</name>
<tag></tag>
<elementGuidId>54e4157f-1a79-4a4d-b8a9-b5cb74d59277</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>main > div > div.rounded-lg.border</value>
</entry>
<entry>
<key>XPATH</key>
<value>//main/div/div[@class and contains(concat(' ', normalize-space(@class), ' '), ' rounded-lg ') and contains(concat(' ', normalize-space(@class), ' '), ' border ')]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>div</value>
<webElementGuid>3cdb6a04-0b92-4302-b327-9a7b5d615aff</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>bg-[#C9F7E3] border border-[#1F9254] text-[#1F9254] px-4 py-3 rounded-lg</value>
<webElementGuid>ab1b6552-711c-491d-bd33-42a406c74618</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>
Data obat keluar berhasil ditambahkan dan stok obat masuk telah dikurangi
</value>
<webElementGuid>bc1fadf2-64df-46b8-b17d-5d3a3df49920</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-eedebcf07dc3c60d2663b281dc9f4512</value>
<webElementGuid>3d821f43-09f6-46c0-93c9-8c29e5f1ba9a</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//main/div/div[@class and contains(concat(' ', normalize-space(@class), ' '), ' rounded-lg ') and contains(concat(' ', normalize-space(@class), ' '), ' border ')]</value>
<webElementGuid>f7276478-1897-479b-a261-2ead9a3b62be</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//main/div/div[@class and contains(concat(' ', normalize-space(@class), ' '), ' rounded-lg ') and contains(concat(' ', normalize-space(@class), ' '), ' border ')]</value>
<webElementGuid>94207e11-a9bb-4f45-9a25-0e331150bba2</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//div[(text() = '
Data obat keluar berhasil ditambahkan dan stok obat masuk telah dikurangi
' or . = '
Data obat keluar berhasil ditambahkan dan stok obat masuk telah dikurangi
')]</value>
<webElementGuid>9fff87f5-0299-43af-afd8-969ec7cb53aa</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,226 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>div_Tanggal</name>
<tag></tag>
<elementGuidId>f1f5a5ff-a9ff-4f07-8350-cb0b4f54aae2</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>.overflow-x-auto</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' overflow-x-auto ')]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>div</value>
<webElementGuid>275c5b7b-21a6-4201-bb28-ec71bc24b6cd</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>overflow-x-auto</value>
<webElementGuid>7f2431c1-a415-4eae-a77d-7824aa662111</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>
Tanggal
Nama Obat
Kode Batch
Jumlah
Penerima
Status
Aksi
14 Mar 2026
Alcohol Onemed
BTH-001-2024
2
YURA yUNISA
Proses
Detail
Edit
Hapus
</value>
<webElementGuid>7f82c5ef-185e-4a28-8460-a3ddf63165eb</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-6cdd888f18e42a93f181d3f84f9bfbb6</value>
<webElementGuid>d5330d07-a2ab-4e66-b94e-4f8c421bf6c9</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' overflow-x-auto ')]</value>
<webElementGuid>7b40baca-b517-464b-b7f8-642565a01029</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' overflow-x-auto ')]</value>
<webElementGuid>3e0e05a5-b8cd-4d6a-9dd2-6619da6fc824</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//div[(text() = '
Tanggal
Nama Obat
Kode Batch
Jumlah
Penerima
Status
Aksi
14 Mar 2026
Alcohol Onemed
BTH-001-2024
2
YURA yUNISA
Proses
Detail
Edit
Hapus
' or . = '
Tanggal
Nama Obat
Kode Batch
Jumlah
Penerima
Status
Aksi
14 Mar 2026
Alcohol Onemed
BTH-001-2024
2
YURA yUNISA
Proses
Detail
Edit
Hapus
')]</value>
<webElementGuid>7cf41ff7-9450-490a-b95a-1e6a3ff06d4c</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,102 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>input_Cari obat</name>
<tag></tag>
<elementGuidId>099caae7-e11d-4d48-b268-9274fc43b4b8</elementGuidId>
<selectorCollection>
<entry>
<key>BASIC</key>
<value>//*[@type = 'text' and @name = 'search' and @placeholder = 'Cari obat...']</value>
</entry>
<entry>
<key>CSS</key>
<value>[placeholder=&quot;Cari\ obat\.\.\.&quot;]</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[@placeholder = 'Cari obat...']</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>input</value>
<webElementGuid>b29aa6c6-f806-4e42-80ca-6c42d29cb813</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>type</name>
<type>Main</type>
<value>text</value>
<webElementGuid>d7e4a877-52b3-46a1-b64d-49463654d814</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>name</name>
<type>Main</type>
<value>search</value>
<webElementGuid>0ceda42d-4828-4d83-9b4f-ca5a0ddb0199</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>placeholder</name>
<type>Main</type>
<value>Cari obat...</value>
<webElementGuid>341fe30e-5c1a-4c6a-a917-8c0de4c36a05</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>w-full px-4 py-2.5 border border-[#E5E7F2] rounded-lg focus:ring-2 focus:ring-[#4A538F] focus:border-[#4A538F] text-[#2F347A] placeholder-[#7A7FAE]</value>
<webElementGuid>036f1c00-43a1-48a0-b037-e04d811e934e</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-683e9c9dd544d78eef9f8ea64617db96</value>
<webElementGuid>eeaf222e-de2e-4cdd-9d7c-f34a3944a936</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[@placeholder = 'Cari obat...']</value>
<webElementGuid>87cf1643-e755-4984-bd14-b3207740c2d2</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[@placeholder = 'Cari obat...']</value>
<webElementGuid>9ce743bf-555b-406e-b63c-c84aa854c8bd</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//input[@type = 'text' and @name = 'search' and @placeholder = 'Cari obat...']</value>
<webElementGuid>1522ffff-9ea3-43e1-acff-e59235f0b50c</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,102 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>path_path</name>
<tag></tag>
<elementGuidId>f1f28478-950e-4cbb-9700-ab7f6693a7ea</elementGuidId>
<selectorCollection>
<entry>
<key>BASIC</key>
<value>//*[(name() = 'tr') and (position() = 5)]//*[@stroke-linejoin = 'round']</value>
</entry>
<entry>
<key>CSS</key>
<value>tr:nth-child(5) [stroke-linejoin=&quot;round&quot;]</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[(name() = 'tr') and (position() = 5)]//*[@stroke-linejoin = 'round']</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>path</value>
<webElementGuid>d49a5055-ce73-4bed-8830-7858e5d54d9c</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>stroke-linecap</name>
<type>Main</type>
<value>round</value>
<webElementGuid>27c98f6b-1eae-47ef-b14c-69e08e751ef6</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>stroke-linejoin</name>
<type>Main</type>
<value>round</value>
<webElementGuid>cf615556-ec5e-4eb4-96fe-224b0109f94c</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>stroke-width</name>
<type>Main</type>
<value>2</value>
<webElementGuid>a1f7993d-71a4-4367-a76d-31ddd6988e98</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>d</name>
<type>Main</type>
<value>M12 5v.01M12 12v.01M12 19v.01M12 6a1 1 0 110-2 1 1 0 010 2zm0 7a1 1 0 110-2 1 1 0 010 2zm0 7a1 1 0 110-2 1 1 0 010 2z</value>
<webElementGuid>f924a2f4-87fc-46d4-b886-2c68d177f900</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-19eb1b8c611e7a7ab83f3dafae6e51ae</value>
<webElementGuid>2c213249-9605-4c06-93da-a794f871de02</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 5)]//*[@stroke-linejoin = 'round']</value>
<webElementGuid>a8d52bfd-455b-41c7-b862-4a92dd9c13b3</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 5)]//*[@stroke-linejoin = 'round']</value>
<webElementGuid>3ca84e58-04e6-4c24-83a1-2dcae68da558</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//div[@class and contains(concat(' ', normalize-space(@class), ' '), ' relative ')]//*[@stroke-linejoin = 'round']</value>
<webElementGuid>1440c7b5-9a99-477b-b633-f5c097c2fe44</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,209 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>select_chart_month</name>
<tag></tag>
<elementGuidId>a7924c3d-4f7b-4453-a267-f07fde71ae79</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>[name=&quot;chart_month&quot;]</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[@name = 'chart_month']</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>select</value>
<webElementGuid>90ca9db4-3d8e-49fc-b5ec-9335e716ab68</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>name</name>
<type>Main</type>
<value>chart_month</value>
<webElementGuid>3ca9c32d-7276-43e8-b251-69a3498ecd7f</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>onchange</name>
<type>Main</type>
<value>updateChartYear(this); this.form.submit();</value>
<webElementGuid>042119db-4bd5-4a04-b826-5be480a3c1f1</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>px-3 py-1.5 border border-[#E5E7F2] rounded-lg focus:ring-2 focus:ring-[#4A538F] focus:border-[#4A538F] bg-white text-[#2F347A] text-sm</value>
<webElementGuid>702cf055-3123-46b7-b26e-00d7d4ea46dd</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>
March 2026
February 2026
January 2026
December 2025
November 2025
October 2025
September 2025
August 2025
July 2025
June 2025
May 2025
April 2025
</value>
<webElementGuid>282840b1-9ddc-4473-9491-15183a14e6e4</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-14b6b8530f352cc2debf413bcb9a4539</value>
<webElementGuid>43f8ff0a-a747-4b2a-9ea0-18eedb13a060</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[@name = 'chart_month']</value>
<webElementGuid>855d92a9-4f55-4fe5-bde7-e179ae2eb2f9</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[@name = 'chart_month']</value>
<webElementGuid>1f3f1097-d877-4340-a253-755e06793897</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//select[@name = 'chart_month' and (text() = '
March 2026
February 2026
January 2026
December 2025
November 2025
October 2025
September 2025
August 2025
July 2025
June 2025
May 2025
April 2025
' or . = '
March 2026
February 2026
January 2026
December 2025
November 2025
October 2025
September 2025
August 2025
July 2025
June 2025
May 2025
April 2025
')]</value>
<webElementGuid>fd58e195-8d60-4ca4-b0f0-d1bce547fd12</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,150 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>select_kategori</name>
<tag></tag>
<elementGuidId>60793f67-fff5-42e1-b958-34a2949a709c</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>select[name=&quot;kategori&quot;]</value>
</entry>
<entry>
<key>XPATH</key>
<value>//select[@name = 'kategori']</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>select</value>
<webElementGuid>4005a206-8e7e-4f92-8d25-51d473e42911</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>name</name>
<type>Main</type>
<value>kategori</value>
<webElementGuid>d7c94c41-30b6-4c57-8219-00341c573160</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>w-full px-4 py-2.5 border border-[#E5E7F2] rounded-lg focus:ring-2 focus:ring-[#4A538F] focus:border-[#4A538F] bg-white text-[#2F347A]</value>
<webElementGuid>b208ed95-d5c0-4878-a209-44921eaa089b</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>
Semua Kategori
Analgesik
Antibiotik
Antipiretik
Antihipertensi
Antidiabetik
Vitamin dan Suplemen
</value>
<webElementGuid>3646b8c9-16ee-4bda-8dd1-66a3bc912ecd</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-0f5cdda3bbb7bda6faeb5241617737e4</value>
<webElementGuid>b77fba6f-bd2d-45ab-a16f-6de854597b0b</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//select[@name = 'kategori']</value>
<webElementGuid>9a05ea0a-f20c-494d-929a-41b2b77e7e2e</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//select[@name = 'kategori']</value>
<webElementGuid>696aab39-ca87-4669-9e08-f73c48bb91db</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//select[@name = 'kategori' and (text() = '
Semua Kategori
Analgesik
Antibiotik
Antipiretik
Antihipertensi
Antidiabetik
Vitamin dan Suplemen
' or . = '
Semua Kategori
Analgesik
Antibiotik
Antipiretik
Antihipertensi
Antidiabetik
Vitamin dan Suplemen
')]</value>
<webElementGuid>5a683662-4f29-4840-b264-5f939ea88b83</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,105 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>select_status</name>
<tag></tag>
<elementGuidId>cee70038-aeee-44f9-a742-bd6b20239778</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>select[name=&quot;status&quot;]</value>
</entry>
<entry>
<key>XPATH</key>
<value>//select[@name = 'status']</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>select</value>
<webElementGuid>d07b5404-e2d0-4683-b28c-3c11f52adf7e</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>name</name>
<type>Main</type>
<value>status</value>
<webElementGuid>9a6314a0-ac18-4708-9335-c0a7fcde6589</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>w-full px-4 py-2.5 border border-[#E5E7F2] rounded-lg focus:ring-2 focus:ring-[#4A538F] focus:border-[#4A538F] bg-white text-[#2F347A]</value>
<webElementGuid>79f2c200-e14e-4b3f-9d28-48b71385e076</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>
Semua Status
Terkirim
Proses
Dibatalkan
</value>
<webElementGuid>1779699b-582c-4d9c-9153-2a3f5870f955</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-84a8ee5eb141bdb1e6e91fe04d20115e</value>
<webElementGuid>c0988cfd-5f7f-4a9d-b4a0-a35e4ff3f124</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//select[@name = 'status']</value>
<webElementGuid>23bf8766-20ce-4b76-837f-286358669458</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//select[@name = 'status']</value>
<webElementGuid>11a9798c-b772-4c5f-a5ad-800608e0f045</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//select[@name = 'status' and (text() = '
Semua Status
Terkirim
Proses
Dibatalkan
' or . = '
Semua Status
Terkirim
Proses
Dibatalkan
')]</value>
<webElementGuid>47a6d9a2-81c7-464a-bf3d-63952bd27ab0</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,102 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>svg_w-5 h-5 text-7A7FAE</name>
<tag></tag>
<elementGuidId>01765d00-9eda-4f39-aee1-1c5b7c2182b0</elementGuidId>
<selectorCollection>
<entry>
<key>BASIC</key>
<value>//*[(name() = 'tr') and (position() = 1)]//*[@stroke = 'currentColor']</value>
</entry>
<entry>
<key>CSS</key>
<value>tr:nth-child(1) [stroke=&quot;currentColor&quot;]</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[(name() = 'tr') and (position() = 1)]//*[@stroke = 'currentColor']</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>svg</value>
<webElementGuid>9f882138-df0a-436b-a765-40b21d1ee2c6</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>w-5 h-5 text-[#7A7FAE]</value>
<webElementGuid>4b15a145-d61c-4017-8b71-db8e8b47b9b5</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>fill</name>
<type>Main</type>
<value>none</value>
<webElementGuid>1cd1c70c-830a-4c0e-aacf-c20f83c2a8a7</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>stroke</name>
<type>Main</type>
<value>currentColor</value>
<webElementGuid>12fd6211-b6b7-48b1-83f5-c823b0da9169</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>viewBox</name>
<type>Main</type>
<value>0 0 24 24</value>
<webElementGuid>c74b041a-9686-4036-9874-5370d7191d0f</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-e2b252697a59b84ca8f1c50c4ee8a881</value>
<webElementGuid>b7bc1199-7d64-4370-a5d4-6c01f0dadad3</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 1)]//*[@stroke = 'currentColor']</value>
<webElementGuid>1aedb714-9327-42a2-9cf7-fad996dc1245</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 1)]//*[@stroke = 'currentColor']</value>
<webElementGuid>58ebc31f-02ab-41a1-bd13-1afdc7ea3267</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//div[@class and contains(concat(' ', normalize-space(@class), ' '), ' relative ')]//*[@stroke = 'currentColor']</value>
<webElementGuid>973bf480-6308-4dae-9e8c-b9a59ade60e0</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,94 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>svg_w-5 h-5 text-7A7FAE_1</name>
<tag></tag>
<elementGuidId>95da8988-9c77-4d69-952f-64dd1d93369c</elementGuidId>
<selectorCollection>
<entry>
<key>BASIC</key>
<value>//*[(name() = 'tr') and (position() = 3)]//*[@stroke = 'currentColor']</value>
</entry>
<entry>
<key>CSS</key>
<value>tr:nth-child(3) [stroke=&quot;currentColor&quot;]</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[(name() = 'tr') and (position() = 3)]//*[@stroke = 'currentColor']</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>svg</value>
<webElementGuid>bed9de71-2ae5-40d7-820b-22c7f38db98d</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>w-5 h-5 text-[#7A7FAE]</value>
<webElementGuid>ed617b9f-bbe4-41b0-89d8-7b1410cd7098</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>fill</name>
<type>Main</type>
<value>none</value>
<webElementGuid>a6a211b5-de65-4e0d-b476-437b99a289b1</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>stroke</name>
<type>Main</type>
<value>currentColor</value>
<webElementGuid>8644f2bc-364a-454a-80fe-a7ffbf975638</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>viewBox</name>
<type>Main</type>
<value>0 0 24 24</value>
<webElementGuid>96f820e2-82a1-4823-8179-9a0ab7417d09</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-a5068fd89e99dcb8ee989e9b6abdb820</value>
<webElementGuid>07b2a1ab-552e-49e2-8499-cba33ad347b2</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 3)]//*[@stroke = 'currentColor']</value>
<webElementGuid>7000a211-e9f9-46d7-96a4-13557156860e</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 3)]//*[@stroke = 'currentColor']</value>
<webElementGuid>36f544cb-39d8-4bd6-a7a8-aeba5fac5058</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,90 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>svg_w-5 h-5 text-7A7FAE_2</name>
<tag></tag>
<elementGuidId>86f1a6ea-d6b9-4ef6-b762-a537b955f7b6</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>tr:nth-child(2) [stroke=&quot;currentColor&quot;]</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[(name() = 'tr') and (position() = 2)]//*[@stroke = 'currentColor']</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>svg</value>
<webElementGuid>1c227417-bcfe-4023-8a63-a0fcb9c1330d</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>w-5 h-5 text-[#7A7FAE]</value>
<webElementGuid>935056b8-9aee-4ba1-892a-31f06f1719b1</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>fill</name>
<type>Main</type>
<value>none</value>
<webElementGuid>acbad0b3-b22d-45ad-b80f-ca107472256b</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>stroke</name>
<type>Main</type>
<value>currentColor</value>
<webElementGuid>fae512be-41c4-469c-afce-84ecb6340e67</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>viewBox</name>
<type>Main</type>
<value>0 0 24 24</value>
<webElementGuid>aba2a873-ab57-4c41-aac6-7a53dbaaaf27</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-57cc56d53e5fcfdcdc2c25b8b6005850</value>
<webElementGuid>8b2e6add-5b19-4d9d-b611-831669f70d8e</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 2)]//*[@stroke = 'currentColor']</value>
<webElementGuid>c16ea4ea-8c94-4e53-84a7-5b6c1d5941b9</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 2)]//*[@stroke = 'currentColor']</value>
<webElementGuid>e1db7830-e73a-4ac6-96ce-9fb75cbe7b49</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,82 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>td_Yura yunisa Edited</name>
<tag></tag>
<elementGuidId>2b07d0d0-155f-487e-ba3e-0188b28646f9</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>tr:nth-child(3) td.whitespace-nowrap.text-sm:nth-child(5)</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[(name() = 'tr') and (position() = 3)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' whitespace-nowrap ') and contains(concat(' ', normalize-space(@class), ' '), ' text-sm ') and (name() = 'td') and (position() = 5)]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>td</value>
<webElementGuid>79bb4bd5-a7a2-4673-ac87-81ea851bc98f</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>px-6 py-4 whitespace-nowrap text-sm text-[#7A7FAE]</value>
<webElementGuid>5c967db6-4d05-4154-880a-6aca92644ed9</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>Yura yunisa Edited</value>
<webElementGuid>e97a4655-d21c-47cb-ba56-eb996826059b</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-fbd843efdb434892b9adadaf0a0fc067</value>
<webElementGuid>74af7c5b-b98a-45e0-ac91-d3504247204d</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 3)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' whitespace-nowrap ') and contains(concat(' ', normalize-space(@class), ' '), ' text-sm ') and (name() = 'td') and (position() = 5)]</value>
<webElementGuid>ddfe27d9-625a-43df-afe5-0398b38c70ca</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 3)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' whitespace-nowrap ') and contains(concat(' ', normalize-space(@class), ' '), ' text-sm ') and (name() = 'td') and (position() = 5)]</value>
<webElementGuid>04195625-8fb5-4530-897b-e0b07d12d5e1</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//td[(text() = 'Yura yunisa Edited' or . = 'Yura yunisa Edited')]</value>
<webElementGuid>7da6e3d2-e647-417d-bbba-2faa157c9a82</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,102 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>a_Detail</name>
<tag></tag>
<elementGuidId>b07b9df7-03fb-4e49-9a9c-f57d515162dd</elementGuidId>
<selectorCollection>
<entry>
<key>BASIC</key>
<value>//*[@href = 'https://medory.my.id/obat-masuk/14' and (text() = 'Detail' or . = 'Detail')]</value>
</entry>
<entry>
<key>CSS</key>
<value>tr:nth-child(1) a.block:nth-child(1)</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[(name() = 'tr') and (position() = 1)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' block ') and (name() = 'a') and (position() = 1)]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>a</value>
<webElementGuid>0fc3eaf6-d816-4583-85d5-7b1f402ce5da</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>href</name>
<type>Main</type>
<value>https://medory.my.id/obat-masuk/14</value>
<webElementGuid>2c79ed31-25dd-462b-a7e5-18349be8521f</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>block px-4 py-2 text-sm text-[#2F347A] hover:bg-[#F4F6FF]</value>
<webElementGuid>d4b72180-8d6a-4ad9-a592-6a2e88ee81bc</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>Detail</value>
<webElementGuid>b832e842-7286-4204-b9a0-f2bbdd2ccb75</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-504f11cc4afffa6b4dbca7983921b1ee</value>
<webElementGuid>041780b6-4aff-4d05-a4f6-1845f11a3f71</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 1)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' block ') and (name() = 'a') and (position() = 1)]</value>
<webElementGuid>fd6a494e-301e-467e-8d33-c7c398803486</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 1)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' block ') and (name() = 'a') and (position() = 1)]</value>
<webElementGuid>8ef78169-198b-41c4-a960-adc255bce097</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//a[@href = 'https://medory.my.id/obat-masuk/14' and (text() = 'Detail' or . = 'Detail')]</value>
<webElementGuid>ee054ee2-d00c-4a60-90d2-f827fcb2fb38</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//a[@href = 'https://medory.my.id/obat-masuk/11' and (text() = 'Detail' or . = 'Detail')]</value>
<webElementGuid>ba1a44b0-b057-485e-80e4-f8da0e21a2f4</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,90 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>a_Detail_1</name>
<tag></tag>
<elementGuidId>d03eaa24-5a3b-4c1f-b104-dea6881fa040</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>tr:nth-child(5) a.block:nth-child(1)</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[(name() = 'tr') and (position() = 5)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' block ') and (name() = 'a') and (position() = 1)]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>a</value>
<webElementGuid>f1c0afaf-0fab-4d75-8c13-11eb1c1b888f</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>href</name>
<type>Main</type>
<value>https://medory.my.id/obat-masuk/3</value>
<webElementGuid>1678c2e2-c121-40c9-8802-6b61d74e87af</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>block px-4 py-2 text-sm text-[#2F347A] hover:bg-[#F4F6FF]</value>
<webElementGuid>6e2e521b-c1e7-4ba8-87e5-be3998fb8f75</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>Detail</value>
<webElementGuid>49f9d6db-00bc-4615-9bf5-53fd68382ff7</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-ae5a6893190c26dc2d1a0aa9d3f88983</value>
<webElementGuid>1aee17f7-c6ee-4973-8b57-24e7464c20ee</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 5)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' block ') and (name() = 'a') and (position() = 1)]</value>
<webElementGuid>2caf09be-4f88-4aa0-91c5-998df2736591</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 5)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' block ') and (name() = 'a') and (position() = 1)]</value>
<webElementGuid>674652ca-faac-43aa-a545-eca78315ae3c</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//a[@href = 'https://medory.my.id/obat-masuk/3' and (text() = 'Detail' or . = 'Detail')]</value>
<webElementGuid>f6cc4bd3-032a-4014-a735-0bb27df35a8d</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,102 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>a_Edit</name>
<tag></tag>
<elementGuidId>5c9599f0-1fa7-4866-84d8-77ed354d4367</elementGuidId>
<selectorCollection>
<entry>
<key>BASIC</key>
<value>//*[@href = 'https://medory.my.id/obat-masuk/14/edit' and (text() = 'Edit' or . = 'Edit')]</value>
</entry>
<entry>
<key>CSS</key>
<value>tr:nth-child(1) a.block:nth-child(2)</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[(name() = 'tr') and (position() = 1)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' block ') and (name() = 'a') and (position() = 2)]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>a</value>
<webElementGuid>807ff0e6-0fd4-4b9e-9b87-2ba1a0f48630</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>href</name>
<type>Main</type>
<value>https://medory.my.id/obat-masuk/14/edit</value>
<webElementGuid>b931843d-97c7-4482-8230-b14076537b63</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>block px-4 py-2 text-sm text-[#2F347A] hover:bg-[#F4F6FF]</value>
<webElementGuid>b7fe141a-f25e-45d7-bf1f-ad950e5f74f1</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>Edit</value>
<webElementGuid>80769fa9-0921-4ae6-a943-03bc6d4f8ae6</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-d217a4b79e91d2f185b07e46e57ffd60</value>
<webElementGuid>41929fea-97fc-49d1-92c7-a9b697566ccc</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 1)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' block ') and (name() = 'a') and (position() = 2)]</value>
<webElementGuid>8fe2e9de-0a88-4c5b-967f-3842a23b8bed</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 1)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' block ') and (name() = 'a') and (position() = 2)]</value>
<webElementGuid>a6a49676-d23a-463c-9dad-1d1c037e5a43</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//a[@href = 'https://medory.my.id/obat-masuk/14/edit' and (text() = 'Edit' or . = 'Edit')]</value>
<webElementGuid>3f6718fa-3ca2-42bd-a661-0c565152e34f</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//a[@href = 'https://medory.my.id/obat-masuk/11/edit' and (text() = 'Edit' or . = 'Edit')]</value>
<webElementGuid>92287c89-0f58-4631-9b1f-c553405c484d</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,90 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>a_Edit_1</name>
<tag></tag>
<elementGuidId>639a7939-706e-4c08-b206-0871504d9b69</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>tr:nth-child(4) a.block:nth-child(2)</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[(name() = 'tr') and (position() = 4)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' block ') and (name() = 'a') and (position() = 2)]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>a</value>
<webElementGuid>be0e3d2c-293f-46da-bcf6-36f09d551d73</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>href</name>
<type>Main</type>
<value>https://medory.my.id/obat-masuk/4/edit</value>
<webElementGuid>e1911a2c-7a97-474f-be29-9a2e57f3914d</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>block px-4 py-2 text-sm text-[#2F347A] hover:bg-[#F4F6FF]</value>
<webElementGuid>0eddebb6-3eb0-4a02-b64e-869c552e9b78</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>Edit</value>
<webElementGuid>51728931-7adb-44ac-982c-a5313d715605</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-ca1657a1eb5a838d445317531fedf41b</value>
<webElementGuid>9a229adf-1730-43a3-b11c-6ac42e93ba3e</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 4)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' block ') and (name() = 'a') and (position() = 2)]</value>
<webElementGuid>daa81fa7-961f-45ef-8d9d-f6a4d5db9b28</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 4)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' block ') and (name() = 'a') and (position() = 2)]</value>
<webElementGuid>18ba81dc-214e-49dd-b6fa-82014fceb178</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//a[@href = 'https://medory.my.id/obat-masuk/4/edit' and (text() = 'Edit' or . = 'Edit')]</value>
<webElementGuid>43c65efe-dc97-468b-a8b4-56df58c9200a</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,105 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>a_Obat Keluar</name>
<tag></tag>
<elementGuidId>d4574b95-78e7-4978-9480-ee801f455226</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>[href=&quot;https\:\/\/medory\.my\.id\/obat-keluar&quot;]</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[@href = 'https://medory.my.id/obat-keluar']</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>a</value>
<webElementGuid>3cf44d73-1c9a-4584-82da-cf7fde037e94</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>href</name>
<type>Main</type>
<value>https://medory.my.id/obat-keluar</value>
<webElementGuid>a75731ab-fe65-4e24-bdba-19b95e898ade</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>sidebar-link flex items-center gap-3 px-4 py-3 rounded-lg text-sm font-medium </value>
<webElementGuid>adc5ba83-41fe-481d-a9f7-7fbec0b3a83f</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>
Obat Keluar
</value>
<webElementGuid>757cf858-4c77-4105-a5bb-4c104850cbe9</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-4de93b3b05143ae31ce09b6f80f10528</value>
<webElementGuid>05fdb48a-0211-445f-8b28-76efdd2023d7</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[@href = 'https://medory.my.id/obat-keluar']</value>
<webElementGuid>45e0822a-3ba1-4abd-afa4-eb9c2b8242ee</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[@href = 'https://medory.my.id/obat-keluar']</value>
<webElementGuid>3526d1ee-d787-479d-a2c3-7da4a470f3d2</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//a[@href = 'https://medory.my.id/obat-keluar' and (text() = '
Obat Keluar
' or . = '
Obat Keluar
')]</value>
<webElementGuid>dad5e879-d377-45b8-955a-798881e0c498</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,96 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>a_Reset</name>
<tag></tag>
<elementGuidId>98569e1e-aa04-4fc8-a514-e2627c78c40b</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>a.rounded-lg.transition-colors[href=&quot;https\:\/\/medory\.my\.id\/obat-masuk&quot;]</value>
</entry>
<entry>
<key>XPATH</key>
<value>//a[@class and contains(concat(' ', normalize-space(@class), ' '), ' rounded-lg ') and contains(concat(' ', normalize-space(@class), ' '), ' transition-colors ') and (@href = 'https://medory.my.id/obat-masuk')]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>a</value>
<webElementGuid>ad0b6bf6-a562-4dd9-ad83-e704abb3fbd5</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>href</name>
<type>Main</type>
<value>https://medory.my.id/obat-masuk</value>
<webElementGuid>e1d5a090-1674-4c85-a53e-bd2cd74f1eb5</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>px-4 py-2.5 bg-[#E9EBF5] text-[#4A538F] rounded-lg hover:bg-[#d8dce8] transition-colors</value>
<webElementGuid>0dfc72ca-2800-4447-8d2c-f8187b02c5db</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>
Reset
</value>
<webElementGuid>e04852f6-3791-4c71-93a1-213d5afa8c38</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-97256000670ff85ae2c66d4fc09fdec7</value>
<webElementGuid>4d53dad5-3c8a-408d-8ca4-d074d31df38d</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//a[@class and contains(concat(' ', normalize-space(@class), ' '), ' rounded-lg ') and contains(concat(' ', normalize-space(@class), ' '), ' transition-colors ') and (@href = 'https://medory.my.id/obat-masuk')]</value>
<webElementGuid>7f09928a-db68-4372-8236-822354f835f2</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//a[@class and contains(concat(' ', normalize-space(@class), ' '), ' rounded-lg ') and contains(concat(' ', normalize-space(@class), ' '), ' transition-colors ') and (@href = 'https://medory.my.id/obat-masuk')]</value>
<webElementGuid>e9d2ac9b-80cc-4d32-b137-de441d4d101e</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//a[@href = 'https://medory.my.id/obat-masuk' and (text() = '
Reset
' or . = '
Reset
')]</value>
<webElementGuid>cca3cb04-104f-4693-91b4-e2b0bd2a749d</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,104 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>a_Tambah Obat</name>
<tag></tag>
<elementGuidId>16d75aa0-e081-485b-9032-e800e1b7b87a</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>[href=&quot;https\:\/\/medory\.my\.id\/obat-masuk\/create&quot;]</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[@href = 'https://medory.my.id/obat-masuk/create']</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>a</value>
<webElementGuid>546753a2-c998-4c40-bf36-8e7e96f66355</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>href</name>
<type>Main</type>
<value>https://medory.my.id/obat-masuk/create</value>
<webElementGuid>acac51e3-f883-43f2-953b-e6baae75592b</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>inline-flex items-center gap-2 px-5 py-2.5 rounded-lg font-medium transition-colors focus:ring-2 focus:ring-offset-2 text-sm bg-[#4A538F] text-white hover:bg-[#424B84] focus:ring-[#4A538F]</value>
<webElementGuid>332ee2ef-f79f-4c81-a3e2-6e9c5b825575</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>
Tambah Obat
</value>
<webElementGuid>c802ea04-899b-4487-bf5b-5d1c12f808a4</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-c083fd7ab21401cb8f5e4d6c62a48dc4</value>
<webElementGuid>b41a91d4-8d93-4e6e-9ad9-af9a0cf2135c</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[@href = 'https://medory.my.id/obat-masuk/create']</value>
<webElementGuid>de874db7-87a9-411c-b573-f3675d61d6c3</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[@href = 'https://medory.my.id/obat-masuk/create']</value>
<webElementGuid>0ddff0b9-abcb-48e0-9f69-6c07a22863b1</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//a[@href = 'https://medory.my.id/obat-masuk/create' and (text() = '
Tambah Obat
' or . = '
Tambah Obat
')]</value>
<webElementGuid>1814799d-4ce6-4850-b283-9574cbcbd480</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,96 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>button_Filter</name>
<tag></tag>
<elementGuidId>04ece048-4ac3-4b68-aa78-990d5c56f7e3</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>.text-white.transition-colors[type=&quot;submit&quot;]</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' text-white ') and contains(concat(' ', normalize-space(@class), ' '), ' transition-colors ') and (@type = 'submit')]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>button</value>
<webElementGuid>f384f11f-d823-4411-81cd-5445dd6911ee</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>type</name>
<type>Main</type>
<value>submit</value>
<webElementGuid>3f5b9c65-9a5e-48ee-8bdb-0f3d1956bf43</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>flex-1 px-4 py-2.5 bg-[#4A538F] text-white rounded-lg hover:bg-[#424B84] transition-colors</value>
<webElementGuid>f7e46772-addc-407b-8a94-9b87e264f2cf</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>
Filter
</value>
<webElementGuid>291febfd-6120-4974-942f-6b1937149f80</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-a0dcee2ab45b51a0c462154d38d360e0</value>
<webElementGuid>34083f67-12b7-4bf4-bbb4-cb8eef8ba7b0</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' text-white ') and contains(concat(' ', normalize-space(@class), ' '), ' transition-colors ') and (@type = 'submit')]</value>
<webElementGuid>e34ca10b-f19c-47c1-81b7-2441f4cdb570</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' text-white ') and contains(concat(' ', normalize-space(@class), ' '), ' transition-colors ') and (@type = 'submit')]</value>
<webElementGuid>aeeded30-1282-4f71-a150-40aed873b362</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//button[@type = 'submit' and (text() = '
Filter
' or . = '
Filter
')]</value>
<webElementGuid>f8494974-fb6a-4cfb-8edc-029169aebea2</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,96 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>button_Filter_1</name>
<tag></tag>
<elementGuidId>27a1caa6-046a-4f3b-8bcc-bb57b40c7d3d</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>button.rounded-lg.text-white[type=&quot;submit&quot;]</value>
</entry>
<entry>
<key>XPATH</key>
<value>//button[@class and contains(concat(' ', normalize-space(@class), ' '), ' rounded-lg ') and contains(concat(' ', normalize-space(@class), ' '), ' text-white ') and (@type = 'submit')]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>button</value>
<webElementGuid>6e3f29aa-8d6b-4336-a5fa-7116c7b5a341</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>type</name>
<type>Main</type>
<value>submit</value>
<webElementGuid>d20ccf0b-10bc-49aa-8fd3-a96e3778da2c</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>flex-1 px-4 py-2.5 bg-[#4A538F] text-white rounded-lg hover:bg-[#424B84] transition-colors</value>
<webElementGuid>1cfaf6a9-d835-467f-b948-6ac2fbbffaa6</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>
Filter
</value>
<webElementGuid>47990e1a-6910-43d3-800e-1e2779672d20</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-2f03802ecd781fb9f06d87cb270d2a08</value>
<webElementGuid>5f92caf9-db67-45d9-85d9-856755a6af6c</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//button[@class and contains(concat(' ', normalize-space(@class), ' '), ' rounded-lg ') and contains(concat(' ', normalize-space(@class), ' '), ' text-white ') and (@type = 'submit')]</value>
<webElementGuid>af817200-8d1c-4261-b491-02187a45d97f</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//button[@class and contains(concat(' ', normalize-space(@class), ' '), ' rounded-lg ') and contains(concat(' ', normalize-space(@class), ' '), ' text-white ') and (@type = 'submit')]</value>
<webElementGuid>92aac310-7797-455d-a8ca-21de0d4517e9</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//button[@type = 'submit' and (text() = '
Filter
' or . = '
Filter
')]</value>
<webElementGuid>e7fcf21d-22d7-488a-b583-fd29e18f8d3a</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,101 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>button_Hapus</name>
<tag></tag>
<elementGuidId>5bd86d2f-fbb3-44bd-9ce4-4cbb51022315</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>tr:nth-child(6) .w-full[type=&quot;submit&quot;]</value>
</entry>
<entry>
<key>XPATH</key>
<value>/html/body/div[1]/main/div/div[4]/div[2]/table/tbody/tr[1]/td[8]/div/div/form/button</value>
</entry>
<entry>
<key>BASIC</key>
<value>//*[@type = 'submit' and (text() = 'Hapus' or . = 'Hapus')]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>button</value>
<webElementGuid>1eaf420f-1022-44d6-9b2c-fc34940486bd</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>type</name>
<type>Main</type>
<value>submit</value>
<webElementGuid>22611ecf-415e-4d05-9131-d6acf0bfbf4d</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>block w-full text-left px-4 py-2 text-sm text-[#C0392B] hover:bg-[#FFD6D6]</value>
<webElementGuid>553a03ab-0a45-4346-9c07-06637dc92b4b</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>Hapus</value>
<webElementGuid>e12d45ed-e56d-4de9-a0ad-2c3ad5d68aa6</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-da6c66c05ca173b2f5b774689afd771a</value>
<webElementGuid>b481990f-aea1-4544-922d-acfaf4c59b18</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 6)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' w-full ') and (@type = 'submit')]</value>
<webElementGuid>dcaf6ec9-484d-41e6-a813-318268937356</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 6)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' w-full ') and (@type = 'submit')]</value>
<webElementGuid>9dc0412f-9b47-4d5d-adb2-d5a9518f9e36</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//button[@type = 'submit' and (text() = 'Hapus' or . = 'Hapus')]</value>
<webElementGuid>1ec98873-711b-4d02-8864-33eeca03ed89</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 1)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' w-full ') and (@type = 'submit')]</value>
<webElementGuid>93f43717-eb29-42da-89d1-da8b884c13ad</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,74 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>button_p-2 hover_bg-E9EBF5 rounded-lg</name>
<tag></tag>
<elementGuidId>2d1129da-8355-4f24-98dd-30c5e86e1225</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>tr:nth-child(5) button.rounded-lg</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[(name() = 'tr') and (position() = 5)]//button[@class and contains(concat(' ', normalize-space(@class), ' '), ' rounded-lg ')]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>button</value>
<webElementGuid>985618b5-f392-40db-b1b8-21accbe3e374</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>@click</name>
<type>Main</type>
<value>open = !open</value>
<webElementGuid>578a384f-8bf0-478c-9b94-d94d4176c3e4</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>p-2 hover:bg-[#E9EBF5] rounded-lg</value>
<webElementGuid>6d106e40-955f-4d95-94e6-c40256dcadc6</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-486da9a6aedce3edb6e809fec44e9b79</value>
<webElementGuid>70200323-8a32-4a33-8371-cbc6adb799e0</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 5)]//button[@class and contains(concat(' ', normalize-space(@class), ' '), ' rounded-lg ')]</value>
<webElementGuid>ce318c00-3763-4512-b33a-7e33a05cef12</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 5)]//button[@class and contains(concat(' ', normalize-space(@class), ' '), ' rounded-lg ')]</value>
<webElementGuid>7bb87730-5699-4253-b857-74024f34865c</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,82 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>div_Alcohol Onemed edited</name>
<tag></tag>
<elementGuidId>02f50a92-8c37-4c60-ae67-97f1a1814828</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>tr:nth-child(1) div.font-medium</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[(name() = 'tr') and (position() = 1)]//div[@class and contains(concat(' ', normalize-space(@class), ' '), ' font-medium ')]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>div</value>
<webElementGuid>779cb463-1e3e-41a6-952d-e1625ff8fee5</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>font-medium text-[#2F347A]</value>
<webElementGuid>6b12d819-c53c-4de0-be5f-56e95544ed71</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>Alcohol Onemed edited</value>
<webElementGuid>4a9ff979-9646-4dff-b20b-7557b2c49657</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-ac27577ce360d9a360a4a4010a383468</value>
<webElementGuid>4be0ec9a-9116-4988-8038-bb5b885ccbca</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 1)]//div[@class and contains(concat(' ', normalize-space(@class), ' '), ' font-medium ')]</value>
<webElementGuid>eb01d375-1f97-4702-83e5-b3eb2c55821b</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 1)]//div[@class and contains(concat(' ', normalize-space(@class), ' '), ' font-medium ')]</value>
<webElementGuid>5f65440c-7fab-471d-9412-5dbf097fba04</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//div[(text() = 'Alcohol Onemed edited' or . = 'Alcohol Onemed edited')]</value>
<webElementGuid>4a4eb259-bbae-44fb-a0ad-b72b33cf635b</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,86 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>div_Alcohol Onemed</name>
<tag></tag>
<elementGuidId>0ee90074-680f-437d-a138-df38737b8fc4</elementGuidId>
<selectorCollection>
<entry>
<key>BASIC</key>
<value>//*[(text() = 'Alcohol Onemed' or . = 'Alcohol Onemed')]</value>
</entry>
<entry>
<key>CSS</key>
<value>tr:nth-child(1) div.font-medium</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[(name() = 'tr') and (position() = 1)]//div[@class and contains(concat(' ', normalize-space(@class), ' '), ' font-medium ')]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>div</value>
<webElementGuid>d2d0fafd-ebe0-41e3-9222-efe0badcdb11</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>font-medium text-[#2F347A]</value>
<webElementGuid>9bf1077b-9c93-45d8-bd54-8fb38f64f6e3</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>Alcohol Onemed</value>
<webElementGuid>1d730205-1d72-4ee5-aa1c-be8f04edc9b9</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-ac27577ce360d9a360a4a4010a383468</value>
<webElementGuid>cb7a9350-e0ae-4501-9942-0d713f7eebb8</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 1)]//div[@class and contains(concat(' ', normalize-space(@class), ' '), ' font-medium ')]</value>
<webElementGuid>446674e5-53b6-461f-9a05-d99d55c63f2d</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 1)]//div[@class and contains(concat(' ', normalize-space(@class), ' '), ' font-medium ')]</value>
<webElementGuid>9b42b128-5b01-45d6-bea3-73783a4307f9</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//div[(text() = 'Alcohol Onemed' or . = 'Alcohol Onemed')]</value>
<webElementGuid>013838a7-87c7-4db1-86da-6d28a26d1b36</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,96 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>div_Data obat masuk berhasil dihapus</name>
<tag></tag>
<elementGuidId>9626d075-62d8-4b30-9166-f5ccf52d3732</elementGuidId>
<selectorCollection>
<entry>
<key>BASIC</key>
<value>//*[(text() = '
Data obat masuk berhasil dihapus
' or . = '
Data obat masuk berhasil dihapus
')]</value>
</entry>
<entry>
<key>CSS</key>
<value>main > div > div.rounded-lg.border</value>
</entry>
<entry>
<key>XPATH</key>
<value>//main/div/div[@class and contains(concat(' ', normalize-space(@class), ' '), ' rounded-lg ') and contains(concat(' ', normalize-space(@class), ' '), ' border ')]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>div</value>
<webElementGuid>9fb43d1a-258b-4bfe-ad88-580c6121a341</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>bg-[#C9F7E3] border border-[#1F9254] text-[#1F9254] px-4 py-3 rounded-lg</value>
<webElementGuid>faa2530a-0ae2-4839-a198-a77b487539d7</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>
Data obat masuk berhasil dihapus
</value>
<webElementGuid>c079c0a2-ff13-412c-9005-c1ad40977807</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-eedebcf07dc3c60d2663b281dc9f4512</value>
<webElementGuid>2191004f-7192-48c9-94f8-97a76b425ca5</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//main/div/div[@class and contains(concat(' ', normalize-space(@class), ' '), ' rounded-lg ') and contains(concat(' ', normalize-space(@class), ' '), ' border ')]</value>
<webElementGuid>18903768-b7ce-4d0e-8efe-f3cb9ea84fb6</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//main/div/div[@class and contains(concat(' ', normalize-space(@class), ' '), ' rounded-lg ') and contains(concat(' ', normalize-space(@class), ' '), ' border ')]</value>
<webElementGuid>434c7eea-2f18-4332-9fa8-459d7792a344</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//div[(text() = '
Data obat masuk berhasil dihapus
' or . = '
Data obat masuk berhasil dihapus
')]</value>
<webElementGuid>771c0194-e979-4120-aa8e-72362e47b0c8</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,88 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>div_Data obat masuk berhasil ditambahkan</name>
<tag></tag>
<elementGuidId>4003fc55-ea5e-4153-99c2-a6830afd2b5f</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>main > div > div.rounded-lg.border</value>
</entry>
<entry>
<key>XPATH</key>
<value>//main/div/div[@class and contains(concat(' ', normalize-space(@class), ' '), ' rounded-lg ') and contains(concat(' ', normalize-space(@class), ' '), ' border ')]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>div</value>
<webElementGuid>0194df0e-676d-4ba2-9b7a-6e0e39704967</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>bg-[#C9F7E3] border border-[#1F9254] text-[#1F9254] px-4 py-3 rounded-lg</value>
<webElementGuid>a62d88a6-877f-444e-b77d-d4ec7d5fb732</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>
Data obat masuk berhasil ditambahkan
</value>
<webElementGuid>e3ebab7e-bbdf-474e-9ddb-a569bd356ea2</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-eedebcf07dc3c60d2663b281dc9f4512</value>
<webElementGuid>ce41ae23-176e-45c5-a528-302dc9e97ad7</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//main/div/div[@class and contains(concat(' ', normalize-space(@class), ' '), ' rounded-lg ') and contains(concat(' ', normalize-space(@class), ' '), ' border ')]</value>
<webElementGuid>08346608-b2f8-4661-812a-17245856034c</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//main/div/div[@class and contains(concat(' ', normalize-space(@class), ' '), ' rounded-lg ') and contains(concat(' ', normalize-space(@class), ' '), ' border ')]</value>
<webElementGuid>68dd89cf-b478-48b2-9b11-efce4f56a232</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//div[(text() = '
Data obat masuk berhasil ditambahkan
' or . = '
Data obat masuk berhasil ditambahkan
')]</value>
<webElementGuid>e34cda36-d28b-43fc-a756-5a7ed68d72e4</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,799 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>div_Tanggal</name>
<tag></tag>
<elementGuidId>fb43c6cc-20bb-4d17-995d-466097a5fd6f</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>.overflow-x-auto</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' overflow-x-auto ')]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>div</value>
<webElementGuid>03bbd7b3-535f-42d5-8e17-d2ca22f109b9</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>overflow-x-auto</value>
<webElementGuid>cd125b02-790f-46c7-8b32-e25637d178bb</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>
Tanggal
Nama Obat
Kode Batch
Kategori
Satuan
Stok
Status
Aksi
14 Mar 2026
Alcohol Onemed
BTH-001-2024
Antibiotik
Botol
9
Tersedia
Detail
Edit
Hapus
14 Dec 2025
Aspirin 100mg
BCH-2024-005
Antipiretik
Tablet
199
Tersedia
Detail
Edit
Hapus
09 Dec 2025
Ciprofloxacin 500mg
BCH-2024-004
Antibiotik
Tablet
60
Tersedia
Detail
Edit
Hapus
04 Dec 2025
Amoxicillin 500mg
BCH-2024-003
Antibiotik
Kapsul
149
Tersedia
Detail
Edit
Hapus
29 Nov 2025
Ibuprofen 400mg
BCH-2024-002
Analgesik
Tablet
79
Tersedia
Detail
Edit
Hapus
24 Nov 2025
Paracetamol 500mg
BCH-2024-001
Analgesik
Tablet
100
Tersedia
Detail
Edit
Hapus
</value>
<webElementGuid>18356cc0-703a-467e-b05f-50324e5b4f5c</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-6cdd888f18e42a93f181d3f84f9bfbb6</value>
<webElementGuid>39ecd0b8-134e-4bb7-aee4-671d63a999b8</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' overflow-x-auto ')]</value>
<webElementGuid>2db0c070-d63f-4e55-9db0-fb4a162c703d</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' overflow-x-auto ')]</value>
<webElementGuid>b071478c-0f74-4c1a-932a-260866dfcb02</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//div[(text() = '
Tanggal
Nama Obat
Kode Batch
Kategori
Satuan
Stok
Status
Aksi
14 Mar 2026
Alcohol Onemed
BTH-001-2024
Antibiotik
Botol
9
Tersedia
Detail
Edit
Hapus
14 Dec 2025
Aspirin 100mg
BCH-2024-005
Antipiretik
Tablet
199
Tersedia
Detail
Edit
Hapus
09 Dec 2025
Ciprofloxacin 500mg
BCH-2024-004
Antibiotik
Tablet
60
Tersedia
Detail
Edit
Hapus
04 Dec 2025
Amoxicillin 500mg
BCH-2024-003
Antibiotik
Kapsul
149
Tersedia
Detail
Edit
Hapus
29 Nov 2025
Ibuprofen 400mg
BCH-2024-002
Analgesik
Tablet
79
Tersedia
Detail
Edit
Hapus
24 Nov 2025
Paracetamol 500mg
BCH-2024-001
Analgesik
Tablet
100
Tersedia
Detail
Edit
Hapus
' or . = '
Tanggal
Nama Obat
Kode Batch
Kategori
Satuan
Stok
Status
Aksi
14 Mar 2026
Alcohol Onemed
BTH-001-2024
Antibiotik
Botol
9
Tersedia
Detail
Edit
Hapus
14 Dec 2025
Aspirin 100mg
BCH-2024-005
Antipiretik
Tablet
199
Tersedia
Detail
Edit
Hapus
09 Dec 2025
Ciprofloxacin 500mg
BCH-2024-004
Antibiotik
Tablet
60
Tersedia
Detail
Edit
Hapus
04 Dec 2025
Amoxicillin 500mg
BCH-2024-003
Antibiotik
Kapsul
149
Tersedia
Detail
Edit
Hapus
29 Nov 2025
Ibuprofen 400mg
BCH-2024-002
Analgesik
Tablet
79
Tersedia
Detail
Edit
Hapus
24 Nov 2025
Paracetamol 500mg
BCH-2024-001
Analgesik
Tablet
100
Tersedia
Detail
Edit
Hapus
')]</value>
<webElementGuid>6db761fb-756b-4c9e-befe-2584a6f309b5</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,98 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>input_Cari obat</name>
<tag></tag>
<elementGuidId>573c6c1f-a195-43ae-a02d-a794968a8b3c</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>[placeholder=&quot;Cari\ obat\.\.\.&quot;]</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[@placeholder = 'Cari obat...']</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>input</value>
<webElementGuid>e19884d4-2ca7-4e80-a377-86d9ed45f77f</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>type</name>
<type>Main</type>
<value>text</value>
<webElementGuid>cac75e5d-0df2-48e8-9c18-a2a1ebe6b874</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>name</name>
<type>Main</type>
<value>search</value>
<webElementGuid>a1c6c264-8572-4558-9e57-50c5d06255e1</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>placeholder</name>
<type>Main</type>
<value>Cari obat...</value>
<webElementGuid>29d4d501-5ce4-47f6-890c-1402c10f8d43</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>w-full px-4 py-2.5 border border-[#E5E7F2] rounded-lg focus:ring-2 focus:ring-[#4A538F] focus:border-[#4A538F] text-[#2F347A] placeholder-[#7A7FAE]</value>
<webElementGuid>5b2b7eea-344c-4393-84c1-397352033435</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-683e9c9dd544d78eef9f8ea64617db96</value>
<webElementGuid>8d2ae110-2d71-49c7-9796-0877a7b6d32a</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[@placeholder = 'Cari obat...']</value>
<webElementGuid>508638da-1748-425b-ad51-6e460adfa367</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[@placeholder = 'Cari obat...']</value>
<webElementGuid>6d1c3b70-cb1d-4db2-b7e0-bce4a92bfe78</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//input[@type = 'text' and @name = 'search' and @placeholder = 'Cari obat...']</value>
<webElementGuid>3d77b89b-be90-41e6-b02b-1a39c1049c1c</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,90 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>path_path</name>
<tag></tag>
<elementGuidId>e9038d6b-c505-44cb-be98-3a38784684e0</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>tr:nth-child(1) [stroke-linejoin=&quot;round&quot;]</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[(name() = 'tr') and (position() = 1)]//*[@stroke-linejoin = 'round']</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>path</value>
<webElementGuid>e77be0a2-683b-4e1f-84ff-5eb0b8da3a95</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>stroke-linecap</name>
<type>Main</type>
<value>round</value>
<webElementGuid>9a2460d7-c4ff-4ff7-b4dd-fd90b93fdbdb</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>stroke-linejoin</name>
<type>Main</type>
<value>round</value>
<webElementGuid>638855bc-5a38-4cda-9dbd-78878ed80fc7</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>stroke-width</name>
<type>Main</type>
<value>2</value>
<webElementGuid>ae9d5f0c-8013-4b0e-b602-fc91bfb78d87</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>d</name>
<type>Main</type>
<value>M12 5v.01M12 12v.01M12 19v.01M12 6a1 1 0 110-2 1 1 0 010 2zm0 7a1 1 0 110-2 1 1 0 010 2zm0 7a1 1 0 110-2 1 1 0 010 2z</value>
<webElementGuid>58bd881a-c1ea-4a97-b146-43cf1b0c3145</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-a4487a58e6fb964ba25f0821456bb0e9</value>
<webElementGuid>119706e7-937e-473a-9662-d9179641d297</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 1)]//*[@stroke-linejoin = 'round']</value>
<webElementGuid>4dd91537-38f4-4b2b-ab70-a67b123f53e1</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 1)]//*[@stroke-linejoin = 'round']</value>
<webElementGuid>f0d2b8e9-2f55-4d7d-9a52-07ecd729b0ff</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,209 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>select_chart_month</name>
<tag></tag>
<elementGuidId>59ca4693-5e8d-4cea-97aa-e5eef1ec557c</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>[name=&quot;chart_month&quot;]</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[@name = 'chart_month']</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>select</value>
<webElementGuid>d9ab2ed7-0cd0-4d9c-ad6e-f2836132d76e</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>name</name>
<type>Main</type>
<value>chart_month</value>
<webElementGuid>64009bcf-6f17-48d2-80be-391e75be90ad</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>onchange</name>
<type>Main</type>
<value>updateChartYear(this); this.form.submit();</value>
<webElementGuid>e302d2b2-371a-4ef3-82ba-70b8bb62c598</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>px-3 py-1.5 border border-[#E5E7F2] rounded-lg focus:ring-2 focus:ring-[#4A538F] focus:border-[#4A538F] bg-white text-[#2F347A] text-sm</value>
<webElementGuid>f4669e1f-477e-4c0b-9b84-9ab6abba0990</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>
March 2026
February 2026
January 2026
December 2025
November 2025
October 2025
September 2025
August 2025
July 2025
June 2025
May 2025
April 2025
</value>
<webElementGuid>fae0aadb-9320-4a95-85a8-da0306abd09f</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-14b6b8530f352cc2debf413bcb9a4539</value>
<webElementGuid>6842289f-b1d7-405f-b4b3-0f0a65863d86</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[@name = 'chart_month']</value>
<webElementGuid>2453f541-9eed-4dd7-b110-7c80d66b2c1e</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[@name = 'chart_month']</value>
<webElementGuid>de90df82-09f1-41ea-acff-8c193814d337</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//select[@name = 'chart_month' and (text() = '
March 2026
February 2026
January 2026
December 2025
November 2025
October 2025
September 2025
August 2025
July 2025
June 2025
May 2025
April 2025
' or . = '
March 2026
February 2026
January 2026
December 2025
November 2025
October 2025
September 2025
August 2025
July 2025
June 2025
May 2025
April 2025
')]</value>
<webElementGuid>dd5d8b4b-1337-4585-ad8e-ae405e5554d0</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,150 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>select_kategori</name>
<tag></tag>
<elementGuidId>df4b9411-40d7-4d23-82f5-9744cf9263ca</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>select[name=&quot;kategori&quot;]</value>
</entry>
<entry>
<key>XPATH</key>
<value>//select[@name = 'kategori']</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>select</value>
<webElementGuid>cda1851e-0aea-41a9-86df-5573be9f6319</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>name</name>
<type>Main</type>
<value>kategori</value>
<webElementGuid>e0e39df6-99ed-413f-bebc-6273e1721b93</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>w-full px-4 py-2.5 border border-[#E5E7F2] rounded-lg focus:ring-2 focus:ring-[#4A538F] focus:border-[#4A538F] bg-white text-[#2F347A]</value>
<webElementGuid>870a1d64-fb32-4499-be21-0b89b9320503</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>
Semua Kategori
Analgesik
Antibiotik
Antipiretik
Antihipertensi
Antidiabetik
Vitamin dan Suplemen
</value>
<webElementGuid>540dcc9f-4653-4891-9c23-e1f8ccd6a9b6</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-0f5cdda3bbb7bda6faeb5241617737e4</value>
<webElementGuid>2e13deb6-8d07-4086-beff-c9ee60184308</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//select[@name = 'kategori']</value>
<webElementGuid>925ea754-fe66-439b-9697-fa2e2680270b</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//select[@name = 'kategori']</value>
<webElementGuid>6b0c69f5-3419-485f-b4b2-75d28cdeddd7</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//select[@name = 'kategori' and (text() = '
Semua Kategori
Analgesik
Antibiotik
Antipiretik
Antihipertensi
Antidiabetik
Vitamin dan Suplemen
' or . = '
Semua Kategori
Analgesik
Antibiotik
Antipiretik
Antihipertensi
Antidiabetik
Vitamin dan Suplemen
')]</value>
<webElementGuid>e6107fe7-3432-41ad-a1fd-4b57ec0a361e</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,102 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>select_status</name>
<tag></tag>
<elementGuidId>4a7f4871-8319-4454-93f9-f332470ecea2</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>select[name=&quot;status&quot;]</value>
</entry>
<entry>
<key>XPATH</key>
<value>//select[@name = 'status']</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>select</value>
<webElementGuid>325eb569-a9a5-40fd-9ced-cd026d47e2c9</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>name</name>
<type>Main</type>
<value>status</value>
<webElementGuid>2307b323-b036-42ef-8b17-311742bd0ebf</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>w-full px-4 py-2.5 border border-[#E5E7F2] rounded-lg focus:ring-2 focus:ring-[#4A538F] focus:border-[#4A538F] bg-white text-[#2F347A]</value>
<webElementGuid>69ca9ce0-797f-4e40-84b2-382992148745</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>
Semua Status
Tersedia
Habis
</value>
<webElementGuid>a6f08c33-5d02-44de-8f9f-a43760057217</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-84a8ee5eb141bdb1e6e91fe04d20115e</value>
<webElementGuid>53ca99db-da1f-4062-ac97-b3af690bf475</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//select[@name = 'status']</value>
<webElementGuid>483e7a40-cb55-48f3-863b-d32f3c865acd</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//select[@name = 'status']</value>
<webElementGuid>7767d5df-f6f0-4646-870d-6be019acf12f</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//select[@name = 'status' and (text() = '
Semua Status
Tersedia
Habis
' or . = '
Semua Status
Tersedia
Habis
')]</value>
<webElementGuid>d4243218-565f-49be-b6cd-5f7f3f32cf71</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,94 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>svg_w-5 h-5 text-7A7FAE</name>
<tag></tag>
<elementGuidId>1ce3e829-6b3a-4984-a3bc-29e007837a77</elementGuidId>
<selectorCollection>
<entry>
<key>BASIC</key>
<value>//*[(name() = 'tr') and (position() = 1)]//*[@stroke = 'currentColor']</value>
</entry>
<entry>
<key>CSS</key>
<value>tr:nth-child(1) [stroke=&quot;currentColor&quot;]</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[(name() = 'tr') and (position() = 1)]//*[@stroke = 'currentColor']</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>svg</value>
<webElementGuid>67bc34ea-c21a-499e-ad7b-2f23a865a842</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>w-5 h-5 text-[#7A7FAE]</value>
<webElementGuid>1ce5b660-9a50-4394-9fa1-806935c05d7d</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>fill</name>
<type>Main</type>
<value>none</value>
<webElementGuid>66f26317-45bb-4e3e-8c41-e48c102a27af</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>stroke</name>
<type>Main</type>
<value>currentColor</value>
<webElementGuid>8d9818c6-3b1b-42e3-99de-0b6208aaac39</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>viewBox</name>
<type>Main</type>
<value>0 0 24 24</value>
<webElementGuid>b4bfe25c-07c3-48f4-8878-b48e620aac14</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-e2b252697a59b84ca8f1c50c4ee8a881</value>
<webElementGuid>4209905e-1bac-44e2-a6cd-2428460e83b6</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 1)]//*[@stroke = 'currentColor']</value>
<webElementGuid>a4c4a6a0-47ae-4931-aa0f-579b3d0d160b</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 1)]//*[@stroke = 'currentColor']</value>
<webElementGuid>ca34dfce-14ab-4ef2-b81e-4b999e5bcd1b</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,90 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>svg_w-5 h-5 text-7A7FAE_1</name>
<tag></tag>
<elementGuidId>7bfbf160-2d31-46b1-a1b0-9b17d5cce6bb</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>tr:nth-child(4) [stroke=&quot;currentColor&quot;]</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[(name() = 'tr') and (position() = 4)]//*[@stroke = 'currentColor']</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>svg</value>
<webElementGuid>0bc58b5c-3934-4b6c-9c26-93f39b7ed253</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>w-5 h-5 text-[#7A7FAE]</value>
<webElementGuid>377058af-3cae-4ddf-b456-1e79471c4933</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>fill</name>
<type>Main</type>
<value>none</value>
<webElementGuid>1e3d5719-c5f4-4c20-987f-6291a27822d8</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>stroke</name>
<type>Main</type>
<value>currentColor</value>
<webElementGuid>035179d8-ebe8-4877-8caa-24532f4793be</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>viewBox</name>
<type>Main</type>
<value>0 0 24 24</value>
<webElementGuid>fdbc82f5-f6bf-4680-9c9d-a3f97a3ed5a2</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-a4540a6390a87cb83476cbee43421cf7</value>
<webElementGuid>b03274be-09e6-4a09-9d86-5a54b22ba281</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 4)]//*[@stroke = 'currentColor']</value>
<webElementGuid>d320847b-e6d5-4c18-96f3-1d91d98078c7</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 4)]//*[@stroke = 'currentColor']</value>
<webElementGuid>a99dd399-f031-4fb3-b121-28534b9c3c7a</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,90 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>svg_w-5 h-5 text-7A7FAE_2</name>
<tag></tag>
<elementGuidId>2abd7dd5-e15e-4091-9791-e955510b9350</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>tr:nth-child(5) [stroke=&quot;currentColor&quot;]</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[(name() = 'tr') and (position() = 5)]//*[@stroke = 'currentColor']</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>svg</value>
<webElementGuid>b6297991-9c26-4d0e-91ac-8c678b6ff553</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>w-5 h-5 text-[#7A7FAE]</value>
<webElementGuid>8a2f4032-2982-435b-b8ce-8a91113e892a</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>fill</name>
<type>Main</type>
<value>none</value>
<webElementGuid>d10b8674-c913-40d9-88b4-ca6af6e34cce</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>stroke</name>
<type>Main</type>
<value>currentColor</value>
<webElementGuid>69aa6030-19b7-453b-9e46-97c9aafd4c5c</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>viewBox</name>
<type>Main</type>
<value>0 0 24 24</value>
<webElementGuid>f520859a-9d07-4529-a329-b3af8a56ae0f</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-cdd737b592973cd55e38b235545c2152</value>
<webElementGuid>77600630-d73d-46ce-b5c1-badbcf444f43</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 5)]//*[@stroke = 'currentColor']</value>
<webElementGuid>a5b6a8c2-e791-42e2-898f-aa21bf13f9fe</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 5)]//*[@stroke = 'currentColor']</value>
<webElementGuid>4b9d5432-d629-4726-bc66-28b7f2b9b301</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,90 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>svg_w-5 h-5 text-7A7FAE_3</name>
<tag></tag>
<elementGuidId>7f5bb389-1584-43f3-a679-57ee42e0b4e6</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>tr:nth-child(6) [stroke=&quot;currentColor&quot;]</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[(name() = 'tr') and (position() = 6)]//*[@stroke = 'currentColor']</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>svg</value>
<webElementGuid>b9231f09-68e1-4e93-8227-9aab9e5b9757</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>w-5 h-5 text-[#7A7FAE]</value>
<webElementGuid>84986e12-189f-48dc-937a-f1192ae3dae8</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>fill</name>
<type>Main</type>
<value>none</value>
<webElementGuid>cbce92e5-f5bb-41b5-bea8-4b36a75d7493</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>stroke</name>
<type>Main</type>
<value>currentColor</value>
<webElementGuid>b4d14b68-b1b4-4b82-be19-dbd17fdfafea</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>viewBox</name>
<type>Main</type>
<value>0 0 24 24</value>
<webElementGuid>4d789efb-e3fa-429a-9fe6-ad9dbaecd834</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-a365bb623e74455383d27efc6381c612</value>
<webElementGuid>c0079dac-bf9c-49c7-b48c-66191d7d7f95</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 6)]//*[@stroke = 'currentColor']</value>
<webElementGuid>302640c4-faa6-4505-ad6f-ae7ae4bb4b1c</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 6)]//*[@stroke = 'currentColor']</value>
<webElementGuid>dc791d0e-b1f9-46fd-85d0-33994fdcc02a</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,90 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>svg_w-5 h-5</name>
<tag></tag>
<elementGuidId>94f2da6b-acfb-4346-88a2-8e7ebc209f85</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>[href=&quot;https\:\/\/medory\.my\.id\/obat-masuk\/create&quot;] [stroke=&quot;currentColor&quot;]</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[@href = 'https://medory.my.id/obat-masuk/create']//*[@stroke = 'currentColor']</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>svg</value>
<webElementGuid>fab2c0ec-24dd-4496-a075-d6d45899a98c</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>w-5 h-5</value>
<webElementGuid>3a423e00-e7d7-471d-80d0-402017582e8d</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>fill</name>
<type>Main</type>
<value>none</value>
<webElementGuid>0310b720-898c-4929-b716-b7fd9810af4e</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>stroke</name>
<type>Main</type>
<value>currentColor</value>
<webElementGuid>83d0a37a-c1f8-4f5f-8f1e-434655956c00</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>viewBox</name>
<type>Main</type>
<value>0 0 24 24</value>
<webElementGuid>91924a81-136b-4f36-b633-1047c461b743</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-0dda4a5f3b569b4fc0617c08bcb22d43</value>
<webElementGuid>036366b5-b3e6-4367-99ed-f233912e1ca4</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[@href = 'https://medory.my.id/obat-masuk/create']//*[@stroke = 'currentColor']</value>
<webElementGuid>9115c684-c375-4188-b9d8-223f4f5fe452</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[@href = 'https://medory.my.id/obat-masuk/create']//*[@stroke = 'currentColor']</value>
<webElementGuid>df4edab0-2a9a-4c46-a054-b154d7ead682</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,88 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>td_14 Mar 2026</name>
<tag></tag>
<elementGuidId>716af7fb-58c4-42ba-a779-830a3253f89a</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>tr:nth-child(1) td.whitespace-nowrap.text-sm:nth-child(1)</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[(name() = 'tr') and (position() = 1)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' whitespace-nowrap ') and contains(concat(' ', normalize-space(@class), ' '), ' text-sm ') and (name() = 'td') and (position() = 1)]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>td</value>
<webElementGuid>69b44229-811d-4242-9838-04a1a265cb8f</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>px-6 py-4 whitespace-nowrap text-sm text-[#7A7FAE]</value>
<webElementGuid>49a241f8-9a44-483c-a5aa-c308d8830e11</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>
14 Mar 2026
</value>
<webElementGuid>4ed500c0-647e-4551-93f8-ae60962db25c</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-d1ca71a7ca7aa998a7a1afe653306f30</value>
<webElementGuid>c7870515-fc51-4292-b938-9647887241c6</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 1)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' whitespace-nowrap ') and contains(concat(' ', normalize-space(@class), ' '), ' text-sm ') and (name() = 'td') and (position() = 1)]</value>
<webElementGuid>015eddbe-f7fa-4a94-9a62-d1ded3fb2612</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 1)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' whitespace-nowrap ') and contains(concat(' ', normalize-space(@class), ' '), ' text-sm ') and (name() = 'td') and (position() = 1)]</value>
<webElementGuid>c19a87e0-27c2-4e86-af62-96206524371a</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//td[(text() = '
14 Mar 2026
' or . = '
14 Mar 2026
')]</value>
<webElementGuid>b3820c09-f18a-4728-abf6-aa0343cb59cc</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,82 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>td_9</name>
<tag></tag>
<elementGuidId>c220c194-db5d-4323-9ad8-455b43507bb5</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>tr:nth-child(1) td.whitespace-nowrap.text-sm:nth-child(6)</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[(name() = 'tr') and (position() = 1)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' whitespace-nowrap ') and contains(concat(' ', normalize-space(@class), ' '), ' text-sm ') and (name() = 'td') and (position() = 6)]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>td</value>
<webElementGuid>223c7107-246f-475c-81f7-ee1cb8a7c326</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>px-6 py-4 whitespace-nowrap text-sm text-[#7A7FAE]</value>
<webElementGuid>8bd9690b-ca73-4c29-8995-a743aadc5d7d</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>9</value>
<webElementGuid>e31d5def-e54b-496a-adbc-e65ddd73c14c</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-80911ae936d8f4bd66913be0ffb0e5ec</value>
<webElementGuid>be5d7126-95db-4bf1-9388-e9176af1d66b</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 1)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' whitespace-nowrap ') and contains(concat(' ', normalize-space(@class), ' '), ' text-sm ') and (name() = 'td') and (position() = 6)]</value>
<webElementGuid>db64665a-7043-4ff2-b5d1-baf679d97c0b</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 1)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' whitespace-nowrap ') and contains(concat(' ', normalize-space(@class), ' '), ' text-sm ') and (name() = 'td') and (position() = 6)]</value>
<webElementGuid>31c65599-b895-4b1b-83c3-b0dce7c58e45</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//td[(text() = '9' or . = '9')]</value>
<webElementGuid>fe824647-6fd0-4e11-a593-4412b8fedf1e</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,88 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>td_Alcohol Onemed edited</name>
<tag></tag>
<elementGuidId>a9d3c348-c545-4a7b-bc9f-7a34e67de7dc</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>tr:nth-child(1) .whitespace-nowrap:nth-child(2)</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[(name() = 'tr') and (position() = 1)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' whitespace-nowrap ') and (position() = 2)]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>td</value>
<webElementGuid>5439a7da-a843-49a7-9666-01c0c9080277</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>px-6 py-4 whitespace-nowrap</value>
<webElementGuid>5e675a60-07bf-42bd-9630-78653a5107f0</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>
Alcohol Onemed edited
</value>
<webElementGuid>00f65ef6-50dd-4313-a722-ae52533dc664</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-d44b52b9810971f831fe17abf4cb922d</value>
<webElementGuid>d2b834b9-3e98-4817-8bc0-4624e0b0aeb4</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 1)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' whitespace-nowrap ') and (position() = 2)]</value>
<webElementGuid>872e9e6e-8b17-4f42-9016-2b812f749a31</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 1)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' whitespace-nowrap ') and (position() = 2)]</value>
<webElementGuid>3f406617-9129-4e73-9c08-cba1e84d1788</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//td[(text() = '
Alcohol Onemed edited
' or . = '
Alcohol Onemed edited
')]</value>
<webElementGuid>e671781f-56ea-4d2a-953d-8276a20a9b1f</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,88 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>td_Antibiotik</name>
<tag></tag>
<elementGuidId>dbc597d6-53b0-42bb-8e0d-28aaffed7320</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>tr:nth-child(1) td.whitespace-nowrap.text-sm:nth-child(4)</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[(name() = 'tr') and (position() = 1)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' whitespace-nowrap ') and contains(concat(' ', normalize-space(@class), ' '), ' text-sm ') and (name() = 'td') and (position() = 4)]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>td</value>
<webElementGuid>11e7fa5a-4a16-4478-8216-9bd00ba8c0b3</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>px-6 py-4 whitespace-nowrap text-sm text-[#7A7FAE]</value>
<webElementGuid>4e6228be-f5a0-419c-bf72-a12fc0da581c</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>
Antibiotik
</value>
<webElementGuid>738a81be-445e-4908-8523-95115af426e9</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-bf1924c1117986c06ce03ae71c82a874</value>
<webElementGuid>c55ae54b-c4f8-4e6f-b0bd-ff42f0e4d5ea</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 1)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' whitespace-nowrap ') and contains(concat(' ', normalize-space(@class), ' '), ' text-sm ') and (name() = 'td') and (position() = 4)]</value>
<webElementGuid>a00924e8-8d31-441e-b1e5-56bd3ca32d3e</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 1)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' whitespace-nowrap ') and contains(concat(' ', normalize-space(@class), ' '), ' text-sm ') and (name() = 'td') and (position() = 4)]</value>
<webElementGuid>62535810-f814-4c85-aa42-2ffefc7a53cc</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//td[(text() = '
Antibiotik
' or . = '
Antibiotik
')]</value>
<webElementGuid>6a5a2ecb-815d-4528-8697-586ac6e9f428</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,82 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>td_BTH-001-2024</name>
<tag></tag>
<elementGuidId>10e05ddd-c463-4c7c-b89f-6480c5eee87a</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>tr:nth-child(1) td.whitespace-nowrap.text-sm:nth-child(3)</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[(name() = 'tr') and (position() = 1)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' whitespace-nowrap ') and contains(concat(' ', normalize-space(@class), ' '), ' text-sm ') and (name() = 'td') and (position() = 3)]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>td</value>
<webElementGuid>272cd66d-fc44-4cca-8f8a-805acee91d3f</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>px-6 py-4 whitespace-nowrap text-sm text-[#7A7FAE]</value>
<webElementGuid>f6db3ab0-9d90-40b4-9212-0712b0c2e7a8</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>BTH-001-2024</value>
<webElementGuid>cb4c308e-04a0-410c-b6bf-57e1de4fd932</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-e71af0f211ae59d352f3a140d9736475</value>
<webElementGuid>f4930e97-3b25-4b6e-8c35-b837397ebe38</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 1)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' whitespace-nowrap ') and contains(concat(' ', normalize-space(@class), ' '), ' text-sm ') and (name() = 'td') and (position() = 3)]</value>
<webElementGuid>5f78037c-a075-4191-ad6d-c6d9eacb9d30</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 1)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' whitespace-nowrap ') and contains(concat(' ', normalize-space(@class), ' '), ' text-sm ') and (name() = 'td') and (position() = 3)]</value>
<webElementGuid>54d47d2d-f50c-4b6a-a6d0-d4d59cb5c141</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//td[(text() = 'BTH-001-2024' or . = 'BTH-001-2024')]</value>
<webElementGuid>dcc53219-997f-4d18-9a32-1b07c2f0612e</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,96 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>td_Botol</name>
<tag></tag>
<elementGuidId>d88096bb-d094-49a2-920d-e8a8779e0660</elementGuidId>
<selectorCollection>
<entry>
<key>BASIC</key>
<value>//*[(text() = '
Botol
' or . = '
Botol
')]</value>
</entry>
<entry>
<key>CSS</key>
<value>tr:nth-child(1) td.whitespace-nowrap.text-sm:nth-child(5)</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[(name() = 'tr') and (position() = 1)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' whitespace-nowrap ') and contains(concat(' ', normalize-space(@class), ' '), ' text-sm ') and (name() = 'td') and (position() = 5)]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>td</value>
<webElementGuid>6e57886c-9dda-4a7d-868e-193d89725f32</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>px-6 py-4 whitespace-nowrap text-sm text-[#7A7FAE]</value>
<webElementGuid>8b8aebd5-c876-4913-b609-1b3f90b5bc6a</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>
Botol
</value>
<webElementGuid>11e86ab5-34d6-409d-a25a-b9d1544497fe</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-afeeef9d0228bb434c15c010fbee47e0</value>
<webElementGuid>fa8ae669-758f-4522-8c56-18bbf0dbba07</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 1)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' whitespace-nowrap ') and contains(concat(' ', normalize-space(@class), ' '), ' text-sm ') and (name() = 'td') and (position() = 5)]</value>
<webElementGuid>f1b03b8d-09ef-45b1-bab7-5da31efa8593</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 1)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' whitespace-nowrap ') and contains(concat(' ', normalize-space(@class), ' '), ' text-sm ') and (name() = 'td') and (position() = 5)]</value>
<webElementGuid>8038b1b5-c622-45c3-8248-7affc9a949c8</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//td[(text() = '
Botol
' or . = '
Botol
')]</value>
<webElementGuid>618dc0a6-6378-448d-9edd-e5415810e4ef</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,110 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>a_Detail</name>
<tag></tag>
<elementGuidId>67ef5917-af2f-4e71-8fd2-e727a21bf258</elementGuidId>
<selectorCollection>
<entry>
<key>BASIC</key>
<value>//*[@href = 'https://medory.my.id/resep/8' and (text() = 'Detail' or . = 'Detail')]</value>
</entry>
<entry>
<key>CSS</key>
<value>tr:nth-child(3) a.block:nth-child(1)</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[(name() = 'tr') and (position() = 3)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' block ') and (name() = 'a') and (position() = 1)]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>a</value>
<webElementGuid>4898b4da-7777-4532-a220-5136ccaaf284</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>href</name>
<type>Main</type>
<value>https://medory.my.id/resep/8</value>
<webElementGuid>30b34224-dd2b-45dd-813b-e098cbe7e24f</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>block px-4 py-2 text-sm text-[#2F347A] hover:bg-[#F4F6FF]</value>
<webElementGuid>d3809310-5dcd-428f-a851-dd6644b986ff</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>Detail</value>
<webElementGuid>bc3872c8-3761-4a90-82c2-c50db6d09f4c</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-38bd862c35fc8c76f72a072ca3f82d56</value>
<webElementGuid>0d2a60d8-008e-4341-896b-9c59d84e535a</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 3)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' block ') and (name() = 'a') and (position() = 1)]</value>
<webElementGuid>731f2822-b07f-40c6-9fab-38da478afbed</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 3)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' block ') and (name() = 'a') and (position() = 1)]</value>
<webElementGuid>7ad5dfc9-3f91-4b45-835d-ef5616049f8d</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//a[@href = 'https://medory.my.id/resep/8' and (text() = 'Detail' or . = 'Detail')]</value>
<webElementGuid>b47af7d0-180a-4c12-8f61-80bb183539f1</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 4)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' block ') and (name() = 'a') and (position() = 1)]</value>
<webElementGuid>7f809691-6a25-4628-a941-6a5b7e94c655</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//a[@href = 'https://medory.my.id/resep/5' and (text() = 'Detail' or . = 'Detail')]</value>
<webElementGuid>6dfec778-8676-4347-817b-6ddc1f447e05</webElementGuid>
</webElementXpaths>
</WebElementEntity>

View File

@ -0,0 +1,90 @@
<?xml version="1.0" encoding="UTF-8"?>
<WebElementEntity>
<description></description>
<name>a_Edit</name>
<tag></tag>
<elementGuidId>82309ea4-b7df-4098-91eb-909e8e85ea12</elementGuidId>
<selectorCollection>
<entry>
<key>CSS</key>
<value>tr:nth-child(1) a.block:nth-child(3)</value>
</entry>
<entry>
<key>XPATH</key>
<value>//*[(name() = 'tr') and (position() = 1)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' block ') and (name() = 'a') and (position() = 3)]</value>
</entry>
</selectorCollection>
<selectorMethod>XPATH</selectorMethod>
<smartLocatorCollection>
<entry>
<key>SMART_LOCATOR</key>
<value></value>
</entry>
</smartLocatorCollection>
<smartLocatorEnabled>false</smartLocatorEnabled>
<useRalativeImagePath>true</useRalativeImagePath>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>tag</name>
<type>Main</type>
<value>a</value>
<webElementGuid>76689239-9e42-40eb-88f3-bef8a487b5b7</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>href</name>
<type>Main</type>
<value>https://medory.my.id/resep/9/edit</value>
<webElementGuid>7e8314ba-0b3d-4877-8949-75a6b580674e</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>class</name>
<type>Main</type>
<value>block px-4 py-2 text-sm text-[#2F347A] hover:bg-[#F4F6FF]</value>
<webElementGuid>71f9cf09-1e31-4c6c-b000-a4398101a3c8</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>true</isSelected>
<matchCondition>equals</matchCondition>
<name>text</name>
<type>Main</type>
<value>Edit</value>
<webElementGuid>5f90ae63-b950-4b82-bdcb-dca0f2f35168</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>parent</name>
<type>Main</type>
<value>md5.v1-f1a07c145f2480e89112d4409464b607</value>
<webElementGuid>4430cf90-4eae-476f-8209-520b96e5b7e5</webElementGuid>
</webElementProperties>
<webElementProperties>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 1)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' block ') and (name() = 'a') and (position() = 3)]</value>
<webElementGuid>bf5bd3be-3878-441c-835d-b0378a340e93</webElementGuid>
</webElementProperties>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:attributes</name>
<type>Main</type>
<value>//*[(name() = 'tr') and (position() = 1)]//*[@class and contains(concat(' ', normalize-space(@class), ' '), ' block ') and (name() = 'a') and (position() = 3)]</value>
<webElementGuid>14041691-fb7f-4561-8896-052f3665e8d4</webElementGuid>
</webElementXpaths>
<webElementXpaths>
<isSelected>false</isSelected>
<matchCondition>equals</matchCondition>
<name>xpath:customAttributes</name>
<type>Main</type>
<value>//a[@href = 'https://medory.my.id/resep/9/edit' and (text() = 'Edit' or . = 'Edit')]</value>
<webElementGuid>dceb79c0-02ed-49c5-a2e9-c1632a3e8d91</webElementGuid>
</webElementXpaths>
</WebElementEntity>

Some files were not shown because too many files have changed in this diff Show More